The source headers, LICENSE files, and license metadata had drifted apart. Align the entire project to MIT: - Convert every source-file header to the MIT text across all comment styles (Go, TS, TSX, JS, MJS, SQL, CSS, GraphQL, shell), including SPDX-License-Identifier tags - Set the root and cookie-banner LICENSE files to the MIT text with a "MIT License" title line - Switch the package.json license fields, Docker image label, and cookie-banner README to MIT - Update docs and the genmodels header generator accordingly - Normalize copyright lines to a single format (Copyright (c) <year(s)> Probo Inc <hello@probo.com>.): unify the hello@getprobo.com and hello@probo.inc emails to hello@probo.com and the comma-separated years to a hyphenated range Genuine third-party references are intentionally left untouched: the Lucide icon attributions (Lucide is ISC) and the trivy dependency license allowlist. Signed-off-by: Sacha Al Himdani <sacha@probo.com>
237 lines
6.1 KiB
Go
237 lines
6.1 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
package drivers
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"go.probo.inc/probo/pkg/coredata"
|
|
)
|
|
|
|
const (
|
|
clerkUsersEndpoint = "https://api.clerk.com/v1/users"
|
|
clerkUsersPageSize = 100
|
|
)
|
|
|
|
type ClerkDriver struct {
|
|
httpClient *http.Client
|
|
}
|
|
|
|
var _ Driver = (*ClerkDriver)(nil)
|
|
|
|
type clerkUser struct {
|
|
ID string `json:"id"`
|
|
PrimaryEmailAddressID *string `json:"primary_email_address_id"`
|
|
Username *string `json:"username"`
|
|
FirstName *string `json:"first_name"`
|
|
LastName *string `json:"last_name"`
|
|
PasswordEnabled bool `json:"password_enabled"`
|
|
TwoFactorEnabled bool `json:"two_factor_enabled"`
|
|
TOTPEnabled bool `json:"totp_enabled"`
|
|
BackupCodeEnabled bool `json:"backup_code_enabled"`
|
|
Banned bool `json:"banned"`
|
|
Locked bool `json:"locked"`
|
|
Deprovisioned bool `json:"deprovisioned"`
|
|
LastSignInAt *int64 `json:"last_sign_in_at"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
EmailAddresses []struct {
|
|
ID string `json:"id"`
|
|
EmailAddress string `json:"email_address"`
|
|
} `json:"email_addresses"`
|
|
}
|
|
|
|
func NewClerkDriver(httpClient *http.Client) *ClerkDriver {
|
|
return &ClerkDriver{
|
|
httpClient: &http.Client{
|
|
Transport: &retryRoundTripper{
|
|
next: httpClient.Transport,
|
|
maxRetries: 3,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func (d *ClerkDriver) ListAccounts(ctx context.Context) ([]AccountRecord, error) {
|
|
var (
|
|
records []AccountRecord
|
|
offset = 0
|
|
)
|
|
|
|
for range maxPaginationPages {
|
|
users, err := d.fetchUsersPage(ctx, offset)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, u := range users {
|
|
email := clerkPrimaryEmail(u)
|
|
if email == "" {
|
|
continue
|
|
}
|
|
|
|
record := AccountRecord{
|
|
Email: email,
|
|
FullName: clerkFullName(u, email),
|
|
Active: new(!u.Banned && !u.Locked && !u.Deprovisioned),
|
|
IsAdmin: false,
|
|
MFAStatus: clerkMFAStatus(u),
|
|
AuthMethod: clerkAuthMethod(u),
|
|
AccountType: coredata.AccessReviewEntryAccountTypeUser,
|
|
ExternalID: u.ID,
|
|
}
|
|
|
|
if createdAt := clerkUnixMillisToTime(u.CreatedAt); createdAt != nil {
|
|
record.CreatedAt = createdAt
|
|
}
|
|
|
|
if u.LastSignInAt != nil {
|
|
record.LastLogin = clerkUnixMillisToTime(*u.LastSignInAt)
|
|
}
|
|
|
|
records = append(records, record)
|
|
}
|
|
|
|
offset += len(users)
|
|
|
|
if len(users) < clerkUsersPageSize {
|
|
return records, nil
|
|
}
|
|
}
|
|
|
|
return nil, fmt.Errorf("cannot list all clerk users: %w", ErrPaginationLimitReached)
|
|
}
|
|
|
|
func (d *ClerkDriver) fetchUsersPage(ctx context.Context, offset int) ([]clerkUser, error) {
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodGet, clerkUsersEndpoint, nil)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("cannot create clerk users request: %w", err)
|
|
}
|
|
|
|
q := req.URL.Query()
|
|
q.Set("limit", strconv.Itoa(clerkUsersPageSize))
|
|
q.Set("offset", strconv.Itoa(offset))
|
|
req.URL.RawQuery = q.Encode()
|
|
|
|
req.Header.Set("Accept", "application/json")
|
|
|
|
httpResp, err := d.httpClient.Do(req)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("cannot execute clerk users request: %w", err)
|
|
}
|
|
|
|
defer func() {
|
|
_ = httpResp.Body.Close()
|
|
}()
|
|
|
|
if httpResp.StatusCode < 200 || httpResp.StatusCode >= 300 {
|
|
return nil, fmt.Errorf("cannot fetch clerk users: unexpected status %d", httpResp.StatusCode)
|
|
}
|
|
|
|
// GET /v1/users returns a bare JSON array of user objects; the total
|
|
// count is exposed separately via /v1/users/count. Decode directly
|
|
// into a slice.
|
|
var users []clerkUser
|
|
if err := json.NewDecoder(httpResp.Body).Decode(&users); err != nil {
|
|
return nil, fmt.Errorf("cannot decode clerk users response: %w", err)
|
|
}
|
|
|
|
return users, nil
|
|
}
|
|
|
|
func clerkPrimaryEmail(u clerkUser) string {
|
|
if u.PrimaryEmailAddressID != nil && *u.PrimaryEmailAddressID != "" {
|
|
for _, email := range u.EmailAddresses {
|
|
if email.ID == *u.PrimaryEmailAddressID && email.EmailAddress != "" {
|
|
return email.EmailAddress
|
|
}
|
|
}
|
|
}
|
|
|
|
for _, email := range u.EmailAddresses {
|
|
if email.EmailAddress != "" {
|
|
return email.EmailAddress
|
|
}
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
func clerkFullName(u clerkUser, fallback string) string {
|
|
firstName := ""
|
|
lastName := ""
|
|
username := ""
|
|
|
|
if u.FirstName != nil {
|
|
firstName = *u.FirstName
|
|
}
|
|
|
|
if u.LastName != nil {
|
|
lastName = *u.LastName
|
|
}
|
|
|
|
if u.Username != nil {
|
|
username = *u.Username
|
|
}
|
|
|
|
fullName := strings.TrimSpace(firstName + " " + lastName)
|
|
if fullName != "" {
|
|
return fullName
|
|
}
|
|
|
|
if username != "" {
|
|
return username
|
|
}
|
|
|
|
return fallback
|
|
}
|
|
|
|
func clerkMFAStatus(u clerkUser) coredata.MFAStatus {
|
|
if u.TwoFactorEnabled || u.TOTPEnabled || u.BackupCodeEnabled {
|
|
return coredata.MFAStatusEnabled
|
|
}
|
|
|
|
return coredata.MFAStatusDisabled
|
|
}
|
|
|
|
func clerkAuthMethod(u clerkUser) coredata.AccessReviewEntryAuthMethod {
|
|
if u.PasswordEnabled {
|
|
return coredata.AccessReviewEntryAuthMethodPassword
|
|
}
|
|
|
|
return coredata.AccessReviewEntryAuthMethodUnknown
|
|
}
|
|
|
|
func clerkUnixMillisToTime(unixMillis int64) *time.Time {
|
|
if unixMillis <= 0 {
|
|
return nil
|
|
}
|
|
|
|
t := time.UnixMilli(unixMillis).UTC()
|
|
|
|
return &t
|
|
}
|