mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 05:47:32 +00:00
095ec21678
* chore(proto): update versions * change protoc plugin * some cleanups * define api for setting emails in new api * implement user.SetEmail * move SetEmail buisiness logic into command * resuse newCryptoCode * command: add ChangeEmail unit tests Not complete, was not able to mock the generator. * Revert "resuse newCryptoCode" This reverts commit c89e90ae35ae924a3f706a0a7394f933910c2e65. * undo change to crypto code generators * command: use a generator so we can test properly * command: reorganise ChangeEmail improve test coverage * implement VerifyEmail including unit tests * add URL template tests * proto: change context to object * remove old auth option * remove old auth option * fix linting errors run gci on modified files * add permission checks and fix some errors * comments * comments --------- Co-authored-by: Livio Spring <livio.a@gmail.com> Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
76 lines
1.7 KiB
Go
76 lines
1.7 KiB
Go
package system
|
|
|
|
import (
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/zitadel/zitadel/internal/admin/repository"
|
|
"github.com/zitadel/zitadel/internal/admin/repository/eventsourcing"
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
"github.com/zitadel/zitadel/internal/api/grpc/server"
|
|
"github.com/zitadel/zitadel/internal/command"
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
"github.com/zitadel/zitadel/pkg/grpc/system"
|
|
)
|
|
|
|
const (
|
|
systemAPI = "System-API"
|
|
)
|
|
|
|
var _ system.SystemServiceServer = (*Server)(nil)
|
|
|
|
type Server struct {
|
|
system.UnimplementedSystemServiceServer
|
|
database string
|
|
command *command.Commands
|
|
query *query.Queries
|
|
administrator repository.AdministratorRepository
|
|
defaultInstance command.InstanceSetup
|
|
externalDomain string
|
|
}
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
}
|
|
|
|
func CreateServer(
|
|
command *command.Commands,
|
|
query *query.Queries,
|
|
repo repository.Repository,
|
|
database string,
|
|
defaultInstance command.InstanceSetup,
|
|
externalDomain string,
|
|
) *Server {
|
|
return &Server{
|
|
command: command,
|
|
query: query,
|
|
administrator: repo,
|
|
database: database,
|
|
defaultInstance: defaultInstance,
|
|
externalDomain: externalDomain,
|
|
}
|
|
}
|
|
|
|
func (s *Server) RegisterServer(grpcServer *grpc.Server) {
|
|
system.RegisterSystemServiceServer(grpcServer, s)
|
|
}
|
|
|
|
func (s *Server) AppName() string {
|
|
return systemAPI
|
|
}
|
|
|
|
func (s *Server) MethodPrefix() string {
|
|
return system.SystemService_ServiceDesc.ServiceName
|
|
}
|
|
|
|
func (s *Server) AuthMethods() authz.MethodMapping {
|
|
return system.SystemService_AuthMethods
|
|
}
|
|
|
|
func (s *Server) RegisterGateway() server.RegisterGatewayFunc {
|
|
return system.RegisterSystemServiceHandler
|
|
}
|
|
|
|
func (s *Server) GatewayPathPrefix() string {
|
|
return "/system/v1"
|
|
}
|