mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-07 19:11:30 +00:00
21aeed4f4e
Phase 0 closure (Path B2, post-rewrite):
addlicense sweep — adds the canonical certctl LLC copyright + BUSL-1.1
SPDX header to every production Go file. Template:
// Copyright 2026 certctl LLC. All rights reserved.
// SPDX-License-Identifier: BUSL-1.1
Coverage: 338 / 338 production Go files (cmd/ + internal/, excluding
*_test.go and **/testdata/**). Pre-sweep coverage was 22 / 338 (6.5%);
post-sweep is 338 / 338 (100%).
Normalized 22 pre-existing legacy headers (`// Copyright (c) certctl`
+ `// SPDX-License-Identifier: BSL-1.1`) and 1 file using a
`Certctl Contributors` attribution. The legacy SPDX ID `BSL-1.1`
is non-standard; the official SPDX identifier for Business Source
License 1.1 is `BUSL-1.1` (capital U). All 338 files now share the
canonical form.
Generated via:
addlicense -c "certctl LLC" -y 2026 \
-f cowork/legal/copyright-header.tpl \
-ignore '**/testdata/**' -ignore '**/*_test.go' \
cmd/ internal/
Verification:
find cmd internal -name '*.go' -not -name '*_test.go' \
-not -path '*/testdata/*' \
-exec grep -L '^// Copyright 2026 certctl LLC' {} \; | wc -l
Returns: 0
gofmt clean. Header additions are comments only, no compile impact.
Closes: cowork/certctl-architecture-diligence-audit.html#fix-RED-4
180 lines
5.9 KiB
Go
180 lines
5.9 KiB
Go
// Copyright 2026 certctl LLC. All rights reserved.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package postgres
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/lib/pq"
|
|
|
|
userdomain "github.com/certctl-io/certctl/internal/auth/user/domain"
|
|
"github.com/certctl-io/certctl/internal/repository"
|
|
)
|
|
|
|
// UserRepository is the postgres implementation of
|
|
// repository.UserRepository (Auth Bundle 2 Phase 2).
|
|
type UserRepository struct {
|
|
db *sql.DB
|
|
}
|
|
|
|
// NewUserRepository constructs a UserRepository.
|
|
func NewUserRepository(db *sql.DB) *UserRepository {
|
|
return &UserRepository{db: db}
|
|
}
|
|
|
|
// Audit 2026-05-11 A-2 — deactivated_at column added in migration
|
|
// 000045 (MED-11 foundation) but pre-fix never read here. The
|
|
// federated-user soft-delete flow at
|
|
// internal/api/handler/auth_users.go::Deactivate set the column on
|
|
// Update, but Get / GetByOIDCSubject / ListAll all returned User
|
|
// with zero-value DeactivatedAt regardless. The OIDC login path
|
|
// trusts the returned struct, so a deactivated user's next login
|
|
// re-elevated them. Adding the column to userColumns + scanUser
|
|
// closes the read leg; service.go's upsertUser closes the enforce leg.
|
|
const userColumns = `id, tenant_id, email, display_name, oidc_subject,
|
|
oidc_provider_id, last_login_at, webauthn_credentials,
|
|
created_at, updated_at, deactivated_at`
|
|
|
|
func scanUser(row interface{ Scan(...interface{}) error }) (*userdomain.User, error) {
|
|
var u userdomain.User
|
|
var deactivatedAt sql.NullTime
|
|
if err := row.Scan(
|
|
&u.ID, &u.TenantID, &u.Email, &u.DisplayName, &u.OIDCSubject,
|
|
&u.OIDCProviderID, &u.LastLoginAt, &u.WebAuthnCredentials,
|
|
&u.CreatedAt, &u.UpdatedAt, &deactivatedAt,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
if deactivatedAt.Valid {
|
|
t := deactivatedAt.Time
|
|
u.DeactivatedAt = &t
|
|
}
|
|
return &u, nil
|
|
}
|
|
|
|
// Get returns one user by id.
|
|
func (r *UserRepository) Get(ctx context.Context, id string) (*userdomain.User, error) {
|
|
row := r.db.QueryRowContext(ctx, `SELECT `+userColumns+` FROM users WHERE id = $1`, id)
|
|
u, err := scanUser(row)
|
|
if err != nil {
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
return nil, repository.ErrUserNotFound
|
|
}
|
|
return nil, fmt.Errorf("users get: %w", err)
|
|
}
|
|
return u, nil
|
|
}
|
|
|
|
// GetByOIDCSubject is the Phase 3 hot-path lookup at login time.
|
|
// Returns ErrUserNotFound if no row matches the (provider, subject)
|
|
// tuple — Phase 3's HandleCallback then creates the row via Create.
|
|
func (r *UserRepository) GetByOIDCSubject(ctx context.Context, providerID, subject string) (*userdomain.User, error) {
|
|
row := r.db.QueryRowContext(ctx, `
|
|
SELECT `+userColumns+`
|
|
FROM users
|
|
WHERE oidc_provider_id = $1 AND oidc_subject = $2`,
|
|
providerID, subject)
|
|
u, err := scanUser(row)
|
|
if err != nil {
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
return nil, repository.ErrUserNotFound
|
|
}
|
|
return nil, fmt.Errorf("users get_by_oidc_subject: %w", err)
|
|
}
|
|
return u, nil
|
|
}
|
|
|
|
// Create persists a new user. Translates SQLSTATE 23505 into
|
|
// ErrUserDuplicateOIDCSubject (the unique constraint on
|
|
// (oidc_provider_id, oidc_subject)).
|
|
//
|
|
// Audit 2026-05-11 A-2 — deactivated_at written explicitly. New rows
|
|
// pre-fix had deactivated_at NULL by schema default; the explicit
|
|
// write makes forward-compat with future seed-data paths that
|
|
// pre-populate the column (e.g. migration of an external user roster
|
|
// where some entries land deactivated). nil → NULL via sql.NullTime.
|
|
func (r *UserRepository) Create(ctx context.Context, u *userdomain.User) error {
|
|
var deactivatedAt sql.NullTime
|
|
if u.DeactivatedAt != nil {
|
|
deactivatedAt = sql.NullTime{Time: *u.DeactivatedAt, Valid: true}
|
|
}
|
|
_, err := r.db.ExecContext(ctx, `
|
|
INSERT INTO users (
|
|
id, tenant_id, email, display_name, oidc_subject,
|
|
oidc_provider_id, last_login_at, webauthn_credentials,
|
|
deactivated_at
|
|
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)`,
|
|
u.ID, u.TenantID, u.Email, u.DisplayName, u.OIDCSubject,
|
|
u.OIDCProviderID, u.LastLoginAt, u.WebAuthnCredentials,
|
|
deactivatedAt)
|
|
if err != nil {
|
|
var pqErr *pq.Error
|
|
if errors.As(err, &pqErr) && pqErr.Code == "23505" {
|
|
return repository.ErrUserDuplicateOIDCSubject
|
|
}
|
|
return fmt.Errorf("users create: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Update writes the mutable fields (email, display_name, last_login_at,
|
|
// webauthn_credentials, deactivated_at) back to the row. Immutable:
|
|
// id, tenant_id, oidc_subject, oidc_provider_id, created_at.
|
|
// updated_at = NOW().
|
|
//
|
|
// Audit 2026-05-11 A-2 — deactivated_at is now in the mutable set so
|
|
// the federated-user soft-delete flow at
|
|
// internal/api/handler/auth_users.go::Deactivate persists. Pre-fix the
|
|
// Update SQL omitted it; the handler set u.DeactivatedAt = now on the
|
|
// in-memory struct, called Update, the SQL ignored the field, and the
|
|
// row was unchanged. nil DeactivatedAt → NULL (supports reactivation).
|
|
func (r *UserRepository) Update(ctx context.Context, u *userdomain.User) error {
|
|
var deactivatedAt sql.NullTime
|
|
if u.DeactivatedAt != nil {
|
|
deactivatedAt = sql.NullTime{Time: *u.DeactivatedAt, Valid: true}
|
|
}
|
|
res, err := r.db.ExecContext(ctx, `
|
|
UPDATE users SET
|
|
email = $2,
|
|
display_name = $3,
|
|
last_login_at = $4,
|
|
webauthn_credentials = $5,
|
|
deactivated_at = $6,
|
|
updated_at = NOW()
|
|
WHERE id = $1`,
|
|
u.ID, u.Email, u.DisplayName, u.LastLoginAt, u.WebAuthnCredentials, deactivatedAt)
|
|
if err != nil {
|
|
return fmt.Errorf("users update: %w", err)
|
|
}
|
|
n, _ := res.RowsAffected()
|
|
if n == 0 {
|
|
return repository.ErrUserNotFound
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ListAll returns every user in the tenant, ordered by created_at ASC.
|
|
func (r *UserRepository) ListAll(ctx context.Context, tenantID string) ([]*userdomain.User, error) {
|
|
rows, err := r.db.QueryContext(ctx,
|
|
`SELECT `+userColumns+` FROM users WHERE tenant_id = $1 ORDER BY created_at ASC`,
|
|
tenantID)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("users list_all: %w", err)
|
|
}
|
|
defer rows.Close()
|
|
|
|
var out []*userdomain.User
|
|
for rows.Next() {
|
|
u, err := scanUser(rows)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("users scan: %w", err)
|
|
}
|
|
out = append(out, u)
|
|
}
|
|
return out, rows.Err()
|
|
}
|