mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
6556d053b2
* feat: translate error messages in error interceptor * fix: add statik import * feat: user error msgs * feat: add translations * feat: add translations * feat: add translations * feat: add translations * feat: add translations * feat: add translations * some fixes and improved error messages Co-authored-by: Livio Amstutz <livio.a@gmail.com>
52 lines
1.5 KiB
Go
52 lines
1.5 KiB
Go
package grpc
|
|
|
|
import (
|
|
admin_auth "github.com/caos/zitadel/internal/admin/auth"
|
|
"github.com/caos/zitadel/internal/admin/repository"
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
grpc_util "github.com/caos/zitadel/internal/api/grpc"
|
|
"github.com/caos/zitadel/internal/api/grpc/server/middleware"
|
|
authz_repo "github.com/caos/zitadel/internal/authz/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/config/systemdefaults"
|
|
grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
var _ AdminServiceServer = (*Server)(nil)
|
|
|
|
type Server struct {
|
|
port string
|
|
org repository.OrgRepository
|
|
verifier auth.TokenVerifier
|
|
authZ auth.Config
|
|
repo repository.Repository
|
|
}
|
|
|
|
func StartServer(conf grpc_util.ServerConfig, authZRepo *authz_repo.EsRepository, authZ auth.Config, repo repository.Repository) *Server {
|
|
return &Server{
|
|
port: conf.Port,
|
|
org: repo,
|
|
repo: repo,
|
|
authZ: authZ,
|
|
verifier: admin_auth.Start(authZRepo),
|
|
}
|
|
}
|
|
|
|
func (s *Server) GRPCPort() string {
|
|
return s.port
|
|
}
|
|
|
|
func (s *Server) GRPCServer(defaults systemdefaults.SystemDefaults) (*grpc.Server, error) {
|
|
gs := grpc.NewServer(
|
|
middleware.TracingStatsServer("/Healthz", "/Ready", "/Validate"),
|
|
grpc.UnaryInterceptor(
|
|
grpc_middleware.ChainUnaryServer(
|
|
middleware.ErrorHandler(defaults.DefaultLanguage),
|
|
AdminService_Authorization_Interceptor(s.verifier, &s.authZ),
|
|
),
|
|
),
|
|
)
|
|
RegisterAdminServiceServer(gs, s)
|
|
return gs, nil
|
|
}
|