Enforce only one domain per organization
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
@@ -31,7 +31,6 @@ import (
|
|||||||
type (
|
type (
|
||||||
CustomDomain struct {
|
CustomDomain struct {
|
||||||
ID gid.GID `db:"id"`
|
ID gid.GID `db:"id"`
|
||||||
OrganizationID gid.GID `db:"organization_id"`
|
|
||||||
Domain string `db:"domain"`
|
Domain string `db:"domain"`
|
||||||
HTTPChallengeToken *string `db:"http_challenge_token"`
|
HTTPChallengeToken *string `db:"http_challenge_token"`
|
||||||
HTTPChallengeKeyAuth *string `db:"http_challenge_key_auth"`
|
HTTPChallengeKeyAuth *string `db:"http_challenge_key_auth"`
|
||||||
@@ -44,7 +43,6 @@ type (
|
|||||||
SSLCertificateChain *string `db:"ssl_certificate_chain"`
|
SSLCertificateChain *string `db:"ssl_certificate_chain"`
|
||||||
SSLStatus CustomDomainSSLStatus `db:"ssl_status"`
|
SSLStatus CustomDomainSSLStatus `db:"ssl_status"`
|
||||||
SSLExpiresAt *time.Time `db:"ssl_expires_at"`
|
SSLExpiresAt *time.Time `db:"ssl_expires_at"`
|
||||||
IsActive bool `db:"is_active"`
|
|
||||||
CreatedAt time.Time `db:"created_at"`
|
CreatedAt time.Time `db:"created_at"`
|
||||||
UpdatedAt time.Time `db:"updated_at"`
|
UpdatedAt time.Time `db:"updated_at"`
|
||||||
}
|
}
|
||||||
@@ -52,16 +50,14 @@ type (
|
|||||||
CustomDomains []*CustomDomain
|
CustomDomains []*CustomDomain
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewCustomDomain(orgID gid.GID, domain string) *CustomDomain {
|
func NewCustomDomain(tenantID gid.TenantID, domain string) *CustomDomain {
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
return &CustomDomain{
|
return &CustomDomain{
|
||||||
ID: gid.New(orgID.TenantID(), CustomDomainEntityType),
|
ID: gid.New(tenantID, CustomDomainEntityType),
|
||||||
OrganizationID: orgID,
|
SSLStatus: CustomDomainSSLStatusPending,
|
||||||
SSLStatus: CustomDomainSSLStatusPending,
|
Domain: domain,
|
||||||
Domain: domain,
|
CreatedAt: now,
|
||||||
IsActive: false,
|
UpdatedAt: now,
|
||||||
CreatedAt: now,
|
|
||||||
UpdatedAt: now,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,7 +84,6 @@ func (cd *CustomDomain) LoadByID(
|
|||||||
q := `
|
q := `
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
id,
|
||||||
organization_id,
|
|
||||||
domain,
|
domain,
|
||||||
http_challenge_token,
|
http_challenge_token,
|
||||||
http_challenge_key_auth,
|
http_challenge_key_auth,
|
||||||
@@ -99,20 +94,19 @@ SELECT
|
|||||||
ssl_certificate_chain,
|
ssl_certificate_chain,
|
||||||
ssl_status,
|
ssl_status,
|
||||||
ssl_expires_at,
|
ssl_expires_at,
|
||||||
is_active,
|
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
custom_domains
|
custom_domains
|
||||||
WHERE
|
WHERE
|
||||||
%s
|
%s
|
||||||
AND id = @domain_id
|
id = @id
|
||||||
LIMIT 1
|
LIMIT 1
|
||||||
`
|
`
|
||||||
|
|
||||||
q = fmt.Sprintf(q, scope.SQLFragment())
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
||||||
|
|
||||||
args := pgx.NamedArgs{"domain_id": domainID}
|
args := pgx.NamedArgs{"id": domainID}
|
||||||
maps.Copy(args, scope.SQLArguments())
|
maps.Copy(args, scope.SQLArguments())
|
||||||
|
|
||||||
rows, err := conn.Query(ctx, q, args)
|
rows, err := conn.Query(ctx, q, args)
|
||||||
@@ -163,7 +157,6 @@ func (cd *CustomDomain) LoadByIDForUpdate(
|
|||||||
q := `
|
q := `
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
id,
|
||||||
organization_id,
|
|
||||||
domain,
|
domain,
|
||||||
http_challenge_token,
|
http_challenge_token,
|
||||||
http_challenge_key_auth,
|
http_challenge_key_auth,
|
||||||
@@ -174,21 +167,19 @@ SELECT
|
|||||||
ssl_certificate_chain,
|
ssl_certificate_chain,
|
||||||
ssl_status,
|
ssl_status,
|
||||||
ssl_expires_at,
|
ssl_expires_at,
|
||||||
is_active,
|
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
custom_domains
|
custom_domains
|
||||||
WHERE
|
WHERE
|
||||||
%s
|
%s
|
||||||
AND id = @domain_id
|
id = @id
|
||||||
LIMIT 1
|
LIMIT 1
|
||||||
FOR UPDATE
|
FOR UPDATE
|
||||||
`
|
`
|
||||||
|
|
||||||
q = fmt.Sprintf(q, scope.SQLFragment())
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
||||||
|
|
||||||
args := pgx.NamedArgs{"domain_id": domainID}
|
args := pgx.NamedArgs{"id": domainID}
|
||||||
maps.Copy(args, scope.SQLArguments())
|
maps.Copy(args, scope.SQLArguments())
|
||||||
|
|
||||||
rows, err := conn.Query(ctx, q, args)
|
rows, err := conn.Query(ctx, q, args)
|
||||||
@@ -239,7 +230,6 @@ func (cd *CustomDomain) LoadByDomain(
|
|||||||
q := `
|
q := `
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
id,
|
||||||
organization_id,
|
|
||||||
domain,
|
domain,
|
||||||
http_challenge_token,
|
http_challenge_token,
|
||||||
http_challenge_key_auth,
|
http_challenge_key_auth,
|
||||||
@@ -250,14 +240,13 @@ SELECT
|
|||||||
ssl_certificate_chain,
|
ssl_certificate_chain,
|
||||||
ssl_status,
|
ssl_status,
|
||||||
ssl_expires_at,
|
ssl_expires_at,
|
||||||
is_active,
|
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
custom_domains
|
custom_domains
|
||||||
WHERE
|
WHERE
|
||||||
%s
|
%s
|
||||||
AND domain = @domain
|
domain = @domain
|
||||||
LIMIT 1
|
LIMIT 1
|
||||||
`
|
`
|
||||||
|
|
||||||
@@ -323,7 +312,6 @@ func (cd *CustomDomain) Insert(
|
|||||||
INSERT INTO custom_domains (
|
INSERT INTO custom_domains (
|
||||||
id,
|
id,
|
||||||
tenant_id,
|
tenant_id,
|
||||||
organization_id,
|
|
||||||
domain,
|
domain,
|
||||||
http_challenge_token,
|
http_challenge_token,
|
||||||
http_challenge_key_auth,
|
http_challenge_key_auth,
|
||||||
@@ -334,13 +322,11 @@ INSERT INTO custom_domains (
|
|||||||
ssl_certificate_chain,
|
ssl_certificate_chain,
|
||||||
ssl_status,
|
ssl_status,
|
||||||
ssl_expires_at,
|
ssl_expires_at,
|
||||||
is_active,
|
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
) VALUES (
|
) VALUES (
|
||||||
@id,
|
@id,
|
||||||
@tenant_id,
|
@tenant_id,
|
||||||
@organization_id,
|
|
||||||
@domain,
|
@domain,
|
||||||
@http_challenge_token,
|
@http_challenge_token,
|
||||||
@http_challenge_key_auth,
|
@http_challenge_key_auth,
|
||||||
@@ -351,7 +337,6 @@ INSERT INTO custom_domains (
|
|||||||
@ssl_certificate_chain,
|
@ssl_certificate_chain,
|
||||||
@ssl_status,
|
@ssl_status,
|
||||||
@ssl_expires_at,
|
@ssl_expires_at,
|
||||||
@is_active,
|
|
||||||
@created_at,
|
@created_at,
|
||||||
@updated_at
|
@updated_at
|
||||||
)
|
)
|
||||||
@@ -360,7 +345,6 @@ INSERT INTO custom_domains (
|
|||||||
args := pgx.NamedArgs{
|
args := pgx.NamedArgs{
|
||||||
"id": cd.ID,
|
"id": cd.ID,
|
||||||
"tenant_id": scope.GetTenantID(),
|
"tenant_id": scope.GetTenantID(),
|
||||||
"organization_id": cd.OrganizationID,
|
|
||||||
"domain": cd.Domain,
|
"domain": cd.Domain,
|
||||||
"http_challenge_token": cd.HTTPChallengeToken,
|
"http_challenge_token": cd.HTTPChallengeToken,
|
||||||
"http_challenge_key_auth": cd.HTTPChallengeKeyAuth,
|
"http_challenge_key_auth": cd.HTTPChallengeKeyAuth,
|
||||||
@@ -371,7 +355,6 @@ INSERT INTO custom_domains (
|
|||||||
"ssl_certificate_chain": cd.SSLCertificateChain,
|
"ssl_certificate_chain": cd.SSLCertificateChain,
|
||||||
"ssl_status": cd.SSLStatus,
|
"ssl_status": cd.SSLStatus,
|
||||||
"ssl_expires_at": cd.SSLExpiresAt,
|
"ssl_expires_at": cd.SSLExpiresAt,
|
||||||
"is_active": cd.IsActive,
|
|
||||||
"created_at": cd.CreatedAt,
|
"created_at": cd.CreatedAt,
|
||||||
"updated_at": cd.UpdatedAt,
|
"updated_at": cd.UpdatedAt,
|
||||||
}
|
}
|
||||||
@@ -414,7 +397,6 @@ SET
|
|||||||
ssl_certificate_chain = @ssl_certificate_chain,
|
ssl_certificate_chain = @ssl_certificate_chain,
|
||||||
ssl_status = @ssl_status,
|
ssl_status = @ssl_status,
|
||||||
ssl_expires_at = @ssl_expires_at,
|
ssl_expires_at = @ssl_expires_at,
|
||||||
is_active = @is_active,
|
|
||||||
updated_at = @updated_at
|
updated_at = @updated_at
|
||||||
WHERE
|
WHERE
|
||||||
%s
|
%s
|
||||||
@@ -434,7 +416,6 @@ WHERE
|
|||||||
"ssl_certificate_chain": cd.SSLCertificateChain,
|
"ssl_certificate_chain": cd.SSLCertificateChain,
|
||||||
"ssl_status": cd.SSLStatus,
|
"ssl_status": cd.SSLStatus,
|
||||||
"ssl_expires_at": cd.SSLExpiresAt,
|
"ssl_expires_at": cd.SSLExpiresAt,
|
||||||
"is_active": cd.IsActive,
|
|
||||||
"updated_at": time.Now(),
|
"updated_at": time.Now(),
|
||||||
}
|
}
|
||||||
maps.Copy(args, scope.SQLArguments())
|
maps.Copy(args, scope.SQLArguments())
|
||||||
@@ -461,7 +442,6 @@ WHERE
|
|||||||
%s
|
%s
|
||||||
AND id = @id
|
AND id = @id
|
||||||
`
|
`
|
||||||
|
|
||||||
q = fmt.Sprintf(q, scope.SQLFragment())
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
||||||
|
|
||||||
args := pgx.NamedArgs{"id": cd.ID}
|
args := pgx.NamedArgs{"id": cd.ID}
|
||||||
@@ -475,84 +455,6 @@ WHERE
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (domains *CustomDomains) LoadByOrganizationID(
|
|
||||||
ctx context.Context,
|
|
||||||
conn pg.Conn,
|
|
||||||
scope Scoper,
|
|
||||||
encryptionKey cipher.EncryptionKey,
|
|
||||||
orgID gid.GID,
|
|
||||||
cursor *page.Cursor[CustomDomainOrderField],
|
|
||||||
) error {
|
|
||||||
q := `
|
|
||||||
SELECT
|
|
||||||
id,
|
|
||||||
organization_id,
|
|
||||||
domain,
|
|
||||||
http_challenge_token,
|
|
||||||
http_challenge_key_auth,
|
|
||||||
http_challenge_url,
|
|
||||||
http_order_url,
|
|
||||||
ssl_certificate,
|
|
||||||
encrypted_ssl_private_key,
|
|
||||||
ssl_certificate_chain,
|
|
||||||
ssl_status,
|
|
||||||
ssl_expires_at,
|
|
||||||
is_active,
|
|
||||||
created_at,
|
|
||||||
updated_at
|
|
||||||
FROM
|
|
||||||
custom_domains
|
|
||||||
WHERE
|
|
||||||
%s
|
|
||||||
AND organization_id = @organization_id
|
|
||||||
AND %s
|
|
||||||
`
|
|
||||||
|
|
||||||
q = fmt.Sprintf(q, scope.SQLFragment(), cursor.SQLFragment())
|
|
||||||
|
|
||||||
args := pgx.NamedArgs{"organization_id": orgID}
|
|
||||||
maps.Copy(args, scope.SQLArguments())
|
|
||||||
maps.Copy(args, cursor.SQLArguments())
|
|
||||||
|
|
||||||
rows, err := conn.Query(ctx, q, args)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("cannot query custom domains: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
result, err := pgx.CollectRows(rows, pgx.RowToAddrOfStructByName[CustomDomain])
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("cannot collect custom domains: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, cd := range result {
|
|
||||||
// Decrypt SSL private key
|
|
||||||
if len(cd.EncryptedSSLPrivateKey) > 0 {
|
|
||||||
decrypted, err := cipher.Decrypt(cd.EncryptedSSLPrivateKey, encryptionKey)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("cannot decrypt SSL private key: %w", err)
|
|
||||||
}
|
|
||||||
cd.SSLPrivateKeyPEM = decrypted
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse certificate and key into tls.Certificate if both are present
|
|
||||||
if len(cd.SSLCertificatePEM) > 0 && len(cd.SSLPrivateKeyPEM) > 0 {
|
|
||||||
fullCertPEM := string(cd.SSLCertificatePEM)
|
|
||||||
if cd.SSLCertificateChain != nil && *cd.SSLCertificateChain != "" {
|
|
||||||
fullCertPEM += "\n" + *cd.SSLCertificateChain
|
|
||||||
}
|
|
||||||
|
|
||||||
tlsCert, err := tls.X509KeyPair([]byte(fullCertPEM), cd.SSLPrivateKeyPEM)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("cannot parse certificate and key: %w", err)
|
|
||||||
}
|
|
||||||
cd.SSLCertificate = &tlsCert
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
*domains = result
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cd *CustomDomain) LoadByHTTPChallengeToken(
|
func (cd *CustomDomain) LoadByHTTPChallengeToken(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
conn pg.Conn,
|
conn pg.Conn,
|
||||||
@@ -563,7 +465,6 @@ func (cd *CustomDomain) LoadByHTTPChallengeToken(
|
|||||||
q := `
|
q := `
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
id,
|
||||||
organization_id,
|
|
||||||
domain,
|
domain,
|
||||||
http_challenge_token,
|
http_challenge_token,
|
||||||
http_challenge_key_auth,
|
http_challenge_key_auth,
|
||||||
@@ -574,7 +475,6 @@ SELECT
|
|||||||
ssl_certificate_chain,
|
ssl_certificate_chain,
|
||||||
ssl_status,
|
ssl_status,
|
||||||
ssl_expires_at,
|
ssl_expires_at,
|
||||||
is_active,
|
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
@@ -602,7 +502,6 @@ LIMIT 1
|
|||||||
|
|
||||||
*cd = customDomain
|
*cd = customDomain
|
||||||
|
|
||||||
// No need to decrypt anything for challenge validation
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -614,7 +513,6 @@ func (domains *CustomDomains) ListDomainsForRenewal(
|
|||||||
q := `
|
q := `
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
id,
|
||||||
organization_id,
|
|
||||||
domain,
|
domain,
|
||||||
http_challenge_token,
|
http_challenge_token,
|
||||||
http_challenge_key_auth,
|
http_challenge_key_auth,
|
||||||
@@ -625,14 +523,13 @@ SELECT
|
|||||||
ssl_certificate_chain,
|
ssl_certificate_chain,
|
||||||
ssl_status,
|
ssl_status,
|
||||||
ssl_expires_at,
|
ssl_expires_at,
|
||||||
is_active,
|
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
custom_domains
|
custom_domains
|
||||||
WHERE
|
WHERE
|
||||||
%s
|
%s
|
||||||
AND ssl_status = 'ACTIVE'
|
AND ssl_status = @status
|
||||||
AND ssl_expires_at IS NOT NULL
|
AND ssl_expires_at IS NOT NULL
|
||||||
AND ssl_expires_at <= CURRENT_TIMESTAMP + INTERVAL '30 days'
|
AND ssl_expires_at <= CURRENT_TIMESTAMP + INTERVAL '30 days'
|
||||||
ORDER BY
|
ORDER BY
|
||||||
@@ -641,7 +538,7 @@ ORDER BY
|
|||||||
|
|
||||||
q = fmt.Sprintf(q, scope.SQLFragment())
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
||||||
|
|
||||||
args := pgx.NamedArgs{}
|
args := pgx.NamedArgs{"status": string(CustomDomainSSLStatusActive)}
|
||||||
maps.Copy(args, scope.SQLArguments())
|
maps.Copy(args, scope.SQLArguments())
|
||||||
|
|
||||||
rows, err := conn.Query(ctx, q, args)
|
rows, err := conn.Query(ctx, q, args)
|
||||||
@@ -666,7 +563,6 @@ func (domains *CustomDomains) ListDomainsWithPendingHTTPChallenges(
|
|||||||
q := `
|
q := `
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
id,
|
||||||
organization_id,
|
|
||||||
domain,
|
domain,
|
||||||
http_challenge_token,
|
http_challenge_token,
|
||||||
http_challenge_key_auth,
|
http_challenge_key_auth,
|
||||||
@@ -677,7 +573,6 @@ SELECT
|
|||||||
ssl_certificate_chain,
|
ssl_certificate_chain,
|
||||||
ssl_status,
|
ssl_status,
|
||||||
ssl_expires_at,
|
ssl_expires_at,
|
||||||
is_active,
|
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
@@ -721,7 +616,6 @@ func (domains *CustomDomains) LoadActiveCertificates(
|
|||||||
q := `
|
q := `
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
id,
|
||||||
organization_id,
|
|
||||||
domain,
|
domain,
|
||||||
http_challenge_token,
|
http_challenge_token,
|
||||||
http_challenge_key_auth,
|
http_challenge_key_auth,
|
||||||
@@ -732,20 +626,19 @@ SELECT
|
|||||||
ssl_certificate_chain,
|
ssl_certificate_chain,
|
||||||
ssl_status,
|
ssl_status,
|
||||||
ssl_expires_at,
|
ssl_expires_at,
|
||||||
is_active,
|
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
custom_domains
|
custom_domains
|
||||||
WHERE
|
WHERE
|
||||||
%s
|
%s
|
||||||
AND ssl_status = 'ACTIVE'
|
AND ssl_status = @status
|
||||||
AND ssl_certificate IS NOT NULL
|
AND ssl_certificate IS NOT NULL
|
||||||
`
|
`
|
||||||
|
|
||||||
q = fmt.Sprintf(q, scope.SQLFragment())
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
||||||
|
|
||||||
args := pgx.NamedArgs{}
|
args := pgx.NamedArgs{"status": string(CustomDomainSSLStatusActive)}
|
||||||
maps.Copy(args, scope.SQLArguments())
|
maps.Copy(args, scope.SQLArguments())
|
||||||
|
|
||||||
rows, err := conn.Query(ctx, q, args)
|
rows, err := conn.Query(ctx, q, args)
|
||||||
|
|||||||
10
pkg/coredata/migrations/20251001T000000Z.sql
Normal file
10
pkg/coredata/migrations/20251001T000000Z.sql
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
DROP INDEX IF EXISTS idx_custom_domains_domain;
|
||||||
|
DROP INDEX IF EXISTS idx_custom_domains_ssl_expires;
|
||||||
|
ALTER TABLE custom_domains DROP COLUMN IF EXISTS is_active;
|
||||||
|
ALTER TABLE custom_domains DROP COLUMN IF EXISTS organization_id;
|
||||||
|
ALTER TABLE organizations ADD COLUMN custom_domain_id TEXT REFERENCES custom_domains(id) ON DELETE SET NULL;
|
||||||
|
|
||||||
|
CREATE INDEX idx_custom_domains_domain ON custom_domains(domain);
|
||||||
|
CREATE INDEX idx_custom_domains_ssl_expires ON custom_domains(ssl_expires_at)
|
||||||
|
WHERE ssl_status = 'ACTIVE';
|
||||||
|
CREATE INDEX idx_organizations_custom_domain ON organizations(custom_domain_id) WHERE custom_domain_id IS NOT NULL;
|
||||||
@@ -36,6 +36,7 @@ type (
|
|||||||
WebsiteURL *string `db:"website_url"`
|
WebsiteURL *string `db:"website_url"`
|
||||||
Email *string `db:"email"`
|
Email *string `db:"email"`
|
||||||
HeadquarterAddress *string `db:"headquarter_address"`
|
HeadquarterAddress *string `db:"headquarter_address"`
|
||||||
|
CustomDomainID *gid.GID `db:"custom_domain_id"`
|
||||||
CreatedAt time.Time `db:"created_at"`
|
CreatedAt time.Time `db:"created_at"`
|
||||||
UpdatedAt time.Time `db:"updated_at"`
|
UpdatedAt time.Time `db:"updated_at"`
|
||||||
}
|
}
|
||||||
@@ -72,6 +73,7 @@ SELECT
|
|||||||
website_url,
|
website_url,
|
||||||
email,
|
email,
|
||||||
headquarter_address,
|
headquarter_address,
|
||||||
|
custom_domain_id,
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
@@ -127,6 +129,7 @@ SELECT
|
|||||||
website_url,
|
website_url,
|
||||||
email,
|
email,
|
||||||
headquarter_address,
|
headquarter_address,
|
||||||
|
custom_domain_id,
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
FROM
|
FROM
|
||||||
@@ -171,9 +174,10 @@ INSERT INTO organizations (
|
|||||||
website_url,
|
website_url,
|
||||||
email,
|
email,
|
||||||
headquarter_address,
|
headquarter_address,
|
||||||
|
custom_domain_id,
|
||||||
created_at,
|
created_at,
|
||||||
updated_at
|
updated_at
|
||||||
) VALUES (@tenant_id, @id, @name, @logo_object_key, @description, @website_url, @email, @headquarter_address, @created_at, @updated_at)
|
) VALUES (@tenant_id, @id, @name, @logo_object_key, @description, @website_url, @email, @headquarter_address, @custom_domain_id, @created_at, @updated_at)
|
||||||
`
|
`
|
||||||
|
|
||||||
args := pgx.StrictNamedArgs{
|
args := pgx.StrictNamedArgs{
|
||||||
@@ -185,6 +189,7 @@ INSERT INTO organizations (
|
|||||||
"website_url": o.WebsiteURL,
|
"website_url": o.WebsiteURL,
|
||||||
"email": o.Email,
|
"email": o.Email,
|
||||||
"headquarter_address": o.HeadquarterAddress,
|
"headquarter_address": o.HeadquarterAddress,
|
||||||
|
"custom_domain_id": o.CustomDomainID,
|
||||||
"created_at": o.CreatedAt,
|
"created_at": o.CreatedAt,
|
||||||
"updated_at": o.UpdatedAt,
|
"updated_at": o.UpdatedAt,
|
||||||
}
|
}
|
||||||
@@ -211,6 +216,7 @@ SET
|
|||||||
website_url = @website_url,
|
website_url = @website_url,
|
||||||
email = @email,
|
email = @email,
|
||||||
headquarter_address = @headquarter_address,
|
headquarter_address = @headquarter_address,
|
||||||
|
custom_domain_id = @custom_domain_id,
|
||||||
updated_at = @updated_at
|
updated_at = @updated_at
|
||||||
WHERE
|
WHERE
|
||||||
%s
|
%s
|
||||||
@@ -227,6 +233,7 @@ WHERE
|
|||||||
"website_url": o.WebsiteURL,
|
"website_url": o.WebsiteURL,
|
||||||
"email": o.Email,
|
"email": o.Email,
|
||||||
"headquarter_address": o.HeadquarterAddress,
|
"headquarter_address": o.HeadquarterAddress,
|
||||||
|
"custom_domain_id": o.CustomDomainID,
|
||||||
"updated_at": o.UpdatedAt,
|
"updated_at": o.UpdatedAt,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -264,3 +271,50 @@ WHERE
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (o *Organization) LoadByCustomDomainID(
|
||||||
|
ctx context.Context,
|
||||||
|
conn pg.Conn,
|
||||||
|
scope Scoper,
|
||||||
|
customDomainID gid.GID,
|
||||||
|
) error {
|
||||||
|
q := `
|
||||||
|
SELECT
|
||||||
|
tenant_id,
|
||||||
|
id,
|
||||||
|
name,
|
||||||
|
logo_object_key,
|
||||||
|
description,
|
||||||
|
website_url,
|
||||||
|
email,
|
||||||
|
headquarter_address,
|
||||||
|
custom_domain_id,
|
||||||
|
created_at,
|
||||||
|
updated_at
|
||||||
|
FROM
|
||||||
|
organizations
|
||||||
|
WHERE
|
||||||
|
%s
|
||||||
|
custom_domain_id = @custom_domain_id
|
||||||
|
LIMIT 1
|
||||||
|
`
|
||||||
|
|
||||||
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
||||||
|
|
||||||
|
args := pgx.StrictNamedArgs{"custom_domain_id": customDomainID}
|
||||||
|
maps.Copy(args, scope.SQLArguments())
|
||||||
|
|
||||||
|
rows, err := conn.Query(ctx, q, args)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot query organization by custom domain: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
organization, err := pgx.CollectExactlyOneRow(rows, pgx.RowToStructByName[Organization])
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot collect organization: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
*o = organization
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user