mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-14 11:25:49 +00:00
# Which Problems Are Solved Send Email messages as a HTTP call to a relay, for own logic on handling different Email providers # How the Problems Are Solved Create endpoints under Email provider to manage SMTP and HTTP in the notification handlers. # Additional Changes Clean up old logic in command and query side to handle the general Email providers with deactivate, activate and remove. # Additional Context Partially closes #8270 --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
56 lines
1.9 KiB
Go
56 lines
1.9 KiB
Go
package admin
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/api/grpc/object"
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
admin_pb "github.com/zitadel/zitadel/pkg/grpc/admin"
|
|
settings_pb "github.com/zitadel/zitadel/pkg/grpc/settings"
|
|
)
|
|
|
|
func listSMTPConfigsToModel(req *admin_pb.ListSMTPConfigsRequest) (*query.SMTPConfigsSearchQueries, error) {
|
|
offset, limit, asc := object.ListQueryToModel(req.Query)
|
|
return &query.SMTPConfigsSearchQueries{
|
|
SearchRequest: query.SearchRequest{
|
|
Offset: offset,
|
|
Limit: limit,
|
|
Asc: asc,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func SMTPConfigToProviderPb(config *query.SMTPConfig) *settings_pb.SMTPConfig {
|
|
return &settings_pb.SMTPConfig{
|
|
Details: object.ToViewDetailsPb(config.Sequence, config.CreationDate, config.ChangeDate, config.ResourceOwner),
|
|
Id: config.ID,
|
|
Description: config.Description,
|
|
Tls: config.SMTPConfig.TLS,
|
|
Host: config.SMTPConfig.Host,
|
|
User: config.SMTPConfig.User,
|
|
State: SMTPConfigStateToPb(config.State),
|
|
SenderAddress: config.SMTPConfig.SenderAddress,
|
|
SenderName: config.SMTPConfig.SenderName,
|
|
}
|
|
}
|
|
|
|
func SMTPConfigsToPb(configs []*query.SMTPConfig) []*settings_pb.SMTPConfig {
|
|
c := make([]*settings_pb.SMTPConfig, len(configs))
|
|
for i, config := range configs {
|
|
c[i] = SMTPConfigToProviderPb(config)
|
|
}
|
|
return c
|
|
}
|
|
|
|
func SMTPConfigStateToPb(state domain.SMTPConfigState) settings_pb.SMTPConfigState {
|
|
switch state {
|
|
case domain.SMTPConfigStateUnspecified, domain.SMTPConfigStateRemoved:
|
|
return settings_pb.SMTPConfigState_SMTP_CONFIG_STATE_UNSPECIFIED
|
|
case domain.SMTPConfigStateActive:
|
|
return settings_pb.SMTPConfigState_SMTP_CONFIG_ACTIVE
|
|
case domain.SMTPConfigStateInactive:
|
|
return settings_pb.SMTPConfigState_SMTP_CONFIG_INACTIVE
|
|
default:
|
|
return settings_pb.SMTPConfigState_SMTP_CONFIG_STATE_UNSPECIFIED
|
|
}
|
|
}
|