mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 08:01:16 +00:00
176 lines
5.6 KiB
Go
176 lines
5.6 KiB
Go
package email
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/warmbly/warmbly/internal/errx"
|
|
"github.com/warmbly/warmbly/internal/infrastructure/pubsub"
|
|
"github.com/warmbly/warmbly/internal/models"
|
|
"github.com/warmbly/warmbly/internal/utils/paging"
|
|
"github.com/warmbly/warmbly/internal/utils/validate"
|
|
)
|
|
|
|
func (s *emailService) Search(ctx context.Context, orgID, search, cursor, tag, limit string, allowedAccountIDs []uuid.UUID) (*models.EmailsResult, *errx.Error) {
|
|
cursorId, err := paging.DecodeCursor(cursor)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
tagId, err := validate.Uuid(tag)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if limit == "" {
|
|
limit = "50"
|
|
}
|
|
|
|
limitN, err := validate.Limit(limit)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return s.emailRepository.Search(ctx, orgID, search, cursorId, tagId, limitN, allowedAccountIDs)
|
|
}
|
|
|
|
func (s *emailService) Get(ctx context.Context, orgID, emailAccountID string) (*models.Email, *errx.Error) {
|
|
return s.emailRepository.Get(ctx, orgID, emailAccountID)
|
|
}
|
|
|
|
func (s *emailService) Update(ctx context.Context, userID, emailAccountID string, udata *models.UpdateEmail) (*models.Email, *errx.Error) {
|
|
account, err := s.emailRepository.Update(ctx, userID, emailAccountID, udata)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
s.syncWarmupPoolMembership(ctx, account)
|
|
s.publishAccountEvent(ctx, pubsub.EventAccountSynced, account)
|
|
return account, nil
|
|
}
|
|
|
|
// SetWarmupLifecycle applies a warmup start/pause/resume/disable transition,
|
|
// then re-syncs pool membership and fans out the change so dashboards update
|
|
// live. Seeding the actual warmup task chain is the caller's responsibility
|
|
// (the API handler triggers EnsureWarmupScheduled) — this service has no
|
|
// Cloud Tasks client.
|
|
func (s *emailService) SetWarmupLifecycle(ctx context.Context, userID, emailAccountID, action string) (*models.Email, *errx.Error) {
|
|
account, err := s.emailRepository.SetWarmupLifecycle(ctx, userID, emailAccountID, action)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
s.syncWarmupPoolMembership(ctx, account)
|
|
s.publishAccountEvent(ctx, pubsub.EventAccountSynced, account)
|
|
return account, nil
|
|
}
|
|
|
|
// trackingDomainTarget is the shared host customers point their CNAME at.
|
|
// Keep in sync with the TRACKING_DOMAIN default (Makefile / config).
|
|
const trackingDomainTarget = "t.warmbly.com"
|
|
|
|
func (s *emailService) UpdateTrackingDomain(ctx context.Context, userID, emailAccountID, domain string) (*models.TrackingDomainStatus, *errx.Error) {
|
|
domain = strings.TrimSpace(strings.ToLower(domain))
|
|
|
|
status := &models.TrackingDomainStatus{TrackingDomain: domain}
|
|
|
|
// Empty clears the custom domain (back to the shared default).
|
|
if domain != "" {
|
|
// Resolve the CNAME chain for the customer's subdomain and treat
|
|
// it as verified once it points at our tracking host. DNS can lag
|
|
// behind a freshly-added record, so a miss is "pending", not an
|
|
// error — the customer just re-verifies.
|
|
if cname, err := net.DefaultResolver.LookupCNAME(ctx, domain); err == nil {
|
|
resolved := strings.TrimSuffix(strings.ToLower(cname), ".")
|
|
if strings.Contains(resolved, trackingDomainTarget) {
|
|
status.TrackingDomainVerified = true
|
|
now := time.Now().UTC()
|
|
status.TrackingDomainVerifiedAt = &now
|
|
}
|
|
}
|
|
}
|
|
|
|
if err := s.emailRepository.UpdateTrackingDomain(ctx, userID, emailAccountID, domain, status.TrackingDomainVerified, status.TrackingDomainVerifiedAt); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return status, nil
|
|
}
|
|
|
|
func (s *emailService) Delete(ctx context.Context, userID, emailAccountID string) *errx.Error {
|
|
account, xerr := s.emailRepository.Get(ctx, userID, emailAccountID)
|
|
if xerr != nil && xerr != errx.ErrNotFound {
|
|
return xerr
|
|
}
|
|
|
|
if xerr := s.emailRepository.Delete(ctx, userID, emailAccountID); xerr != nil {
|
|
return xerr
|
|
}
|
|
|
|
s.removeFromAllWarmupPools(ctx, account)
|
|
s.publishAccountEvent(ctx, pubsub.EventAccountDisconnected, account)
|
|
|
|
if s.webhookService != nil && account != nil && account.OrganizationID != nil {
|
|
_, _ = s.webhookService.Dispatch(ctx, *account.OrganizationID, models.WebhookEventEmailAccountRemoved, map[string]any{
|
|
"email_account_id": account.ID,
|
|
"email": account.Email,
|
|
"provider": account.Provider,
|
|
})
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *emailService) syncWarmupPoolMembership(ctx context.Context, account *models.Email) {
|
|
if s.warmupService == nil || account == nil {
|
|
return
|
|
}
|
|
|
|
if !s.canUseWarmupPool(ctx, account) {
|
|
s.removeFromAllWarmupPools(ctx, account)
|
|
return
|
|
}
|
|
|
|
role := "recipient_only"
|
|
if account.Warmup != nil {
|
|
role = "sender_receiver"
|
|
}
|
|
_ = s.warmupService.EnsurePoolMembershipWithRole(ctx, account.ID, s.resolveWarmupPoolType(ctx, account), role)
|
|
}
|
|
|
|
func (s *emailService) removeFromAllWarmupPools(ctx context.Context, account *models.Email) {
|
|
if s.warmupService == nil || account == nil {
|
|
return
|
|
}
|
|
|
|
for _, poolType := range []string{"premium", "free"} {
|
|
_ = s.warmupService.RemovePoolMembership(ctx, account.ID, poolType)
|
|
}
|
|
}
|
|
|
|
func (s *emailService) canUseWarmupPool(ctx context.Context, account *models.Email) bool {
|
|
if account == nil || account.Status != "active" || account.OrganizationID == nil || s.featureGate == nil {
|
|
return false
|
|
}
|
|
|
|
canWarmup, err := s.featureGate.CanUseWarmup(ctx, *account.OrganizationID)
|
|
return err == nil && canWarmup
|
|
}
|
|
|
|
func (s *emailService) resolveWarmupPoolType(ctx context.Context, account *models.Email) string {
|
|
if account == nil {
|
|
return "premium"
|
|
}
|
|
if account.WarmupPoolType != "" {
|
|
return account.WarmupPoolType
|
|
}
|
|
if account.OrganizationID != nil && s.featureGate != nil {
|
|
isPaid, err := s.featureGate.IsPaidOrganization(ctx, *account.OrganizationID)
|
|
if err == nil && !isPaid {
|
|
return "free"
|
|
}
|
|
}
|
|
return "premium"
|
|
}
|