chore: import upstream snapshot with attribution
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:20:55 +08:00
commit d25d482dc2
13754 changed files with 4996608 additions and 0 deletions
+166
View File
@@ -0,0 +1,166 @@
import { db } from '@sim/db'
import { apiKey as apiKeyTable, user as userTable } from '@sim/db/schema'
import { createLogger } from '@sim/logger'
import { and, eq, isNull, lt, or } from 'drizzle-orm'
import { hashApiKey } from '@/lib/api-key/crypto'
import { getUserEntityPermissions } from '@/lib/workspaces/permissions/utils'
import { getWorkspaceBillingSettings, type WorkspaceBillingSettings } from '@/lib/workspaces/utils'
const logger = createLogger('ApiKeyService')
export async function listApiKeys(workspaceId: string) {
return db
.select({
id: apiKeyTable.id,
name: apiKeyTable.name,
type: apiKeyTable.type,
lastUsed: apiKeyTable.lastUsed,
createdAt: apiKeyTable.createdAt,
expiresAt: apiKeyTable.expiresAt,
createdBy: apiKeyTable.createdBy,
})
.from(apiKeyTable)
.where(and(eq(apiKeyTable.workspaceId, workspaceId), eq(apiKeyTable.type, 'workspace')))
.orderBy(apiKeyTable.createdAt)
}
export interface ApiKeyAuthOptions {
userId?: string
workspaceId?: string
keyTypes?: ('personal' | 'workspace')[]
}
export interface ApiKeyAuthResult {
success: boolean
userId?: string
keyId?: string
keyType?: 'personal' | 'workspace'
workspaceId?: string
error?: string
}
const INVALID = { success: false, error: 'Invalid API key' } as const
interface HashCandidate {
id: string
userId: string
workspaceId: string | null
type: string
expiresAt: Date | null
userBanned: boolean | null
}
/**
* Authenticate an API key from header with flexible filtering options.
*
* Looks up a single row by `sha256(apiKeyHeader)` and applies the scope /
* expiry / permission gates. Any miss — no matching hash or a failed gate —
* returns `INVALID`.
*/
export async function authenticateApiKeyFromHeader(
apiKeyHeader: string,
options: ApiKeyAuthOptions = {}
): Promise<ApiKeyAuthResult> {
if (!apiKeyHeader) {
return { success: false, error: 'API key required' }
}
try {
let workspaceSettings: WorkspaceBillingSettings | null = null
if (options.workspaceId) {
workspaceSettings = await getWorkspaceBillingSettings(options.workspaceId)
if (!workspaceSettings) {
return { success: false, error: 'Workspace not found' }
}
}
const keyHash = hashApiKey(apiKeyHeader)
const rows: HashCandidate[] = await db
.select({
id: apiKeyTable.id,
userId: apiKeyTable.userId,
workspaceId: apiKeyTable.workspaceId,
type: apiKeyTable.type,
expiresAt: apiKeyTable.expiresAt,
userBanned: userTable.banned,
})
.from(apiKeyTable)
.leftJoin(userTable, eq(apiKeyTable.userId, userTable.id))
.where(eq(apiKeyTable.keyHash, keyHash))
if (rows.length === 0) return INVALID
const record = rows[0]
const keyType = record.type as 'personal' | 'workspace'
// Defense in depth: banning deletes a user's keys, but reject any survivor too.
if (record.userBanned) return INVALID
if (options.userId && record.userId !== options.userId) return INVALID
if (options.keyTypes?.length && !options.keyTypes.includes(keyType)) return INVALID
if (record.expiresAt && record.expiresAt < new Date()) return INVALID
if (
options.workspaceId &&
keyType === 'workspace' &&
record.workspaceId !== options.workspaceId
) {
return INVALID
}
if (options.workspaceId && keyType === 'personal') {
if (!workspaceSettings?.allowPersonalApiKeys) return INVALID
if (!record.userId) return INVALID
const permission = await getUserEntityPermissions(
record.userId,
'workspace',
options.workspaceId
)
if (permission === null) return INVALID
}
logger.debug('API key matched via hash lookup', { keyId: record.id, keyType })
return {
success: true,
userId: record.userId,
keyId: record.id,
keyType,
workspaceId: record.workspaceId || options.workspaceId || undefined,
}
} catch (error) {
logger.error('API key authentication error:', error)
return { success: false, error: 'Authentication failed' }
}
}
const LAST_USED_STALENESS_WINDOW_MS = 10 * 60 * 1000
/**
* Update the last used timestamp for an API key.
*
* `lastUsed` is display-only, so the write uses a staleness window: it only
* fires when the stored value is older than
* {@link LAST_USED_STALENESS_WINDOW_MS}. High-traffic keys otherwise rewrite
* the same row on every request, serializing concurrent requests behind row
* locks. The 10-minute window matches GitLab's personal-access-token
* last-used tracking.
*/
export async function updateApiKeyLastUsed(keyId: string): Promise<void> {
try {
const staleBefore = new Date(Date.now() - LAST_USED_STALENESS_WINDOW_MS)
await db
.update(apiKeyTable)
.set({ lastUsed: new Date() })
.where(
and(
eq(apiKeyTable.id, keyId),
or(isNull(apiKeyTable.lastUsed), lt(apiKeyTable.lastUsed, staleBefore))
)
)
} catch (error) {
logger.error('Error updating API key last used:', error)
}
}