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
@@ -0,0 +1,136 @@
import type { Project, Team } from '@linear/sdk'
import { LinearClient } from '@linear/sdk'
import { createLogger } from '@sim/logger'
import { type NextRequest, NextResponse } from 'next/server'
import { linearProjectsSelectorContract } from '@/lib/api/contracts/selectors'
import { parseRequest } from '@/lib/api/server'
import { authorizeCredentialUse } from '@/lib/auth/credential-access'
import { generateRequestId } from '@/lib/core/utils/request'
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
import { refreshAccessTokenIfNeeded } from '@/app/api/auth/oauth/utils'
export const dynamic = 'force-dynamic'
const logger = createLogger('LinearProjectsAPI')
/** Linear's maximum page size for a single connection request. */
const LINEAR_PAGE_SIZE = 250
/**
* Upper bound on pages to drain from a single team's projects connection. At
* 250 projects/page this covers 2,500 projects per team; the cap guards
* against runaway loops on a broken `hasNextPage` rather than a realistic
* limit.
*/
const MAX_PROJECTS_PAGES = 10
/**
* Drains a single team's projects connection by following
* `pageInfo.endCursor` until `hasNextPage` is false. Bounded by
* `MAX_PROJECTS_PAGES`; logs a warning if the cap is hit so a truncated list
* is visible rather than silently dropped.
*/
async function fetchAllTeamProjects(team: Team): Promise<Project[]> {
const projects: Project[] = []
let after: string | undefined
for (let page = 0; page < MAX_PROJECTS_PAGES; page++) {
const result = await team.projects({ first: LINEAR_PAGE_SIZE, after })
projects.push(...result.nodes)
if (!result.pageInfo.hasNextPage) {
return projects
}
after = result.pageInfo.endCursor ?? undefined
if (!after) {
return projects
}
if (page === MAX_PROJECTS_PAGES - 1) {
logger.warn('Linear projects pagination hit cap; project list may be incomplete', {
teamId: team.id,
cap: MAX_PROJECTS_PAGES,
fetched: projects.length,
})
}
}
return projects
}
export const POST = withRouteHandler(async (request: NextRequest) => {
try {
const parsed = await parseRequest(linearProjectsSelectorContract, request, {})
if (!parsed.success) return parsed.response
const { credential, teamId, workflowId } = parsed.data.body
const requestId = generateRequestId()
const authz = await authorizeCredentialUse(request, {
credentialId: credential,
workflowId,
})
if (!authz.ok || !authz.credentialOwnerUserId) {
return NextResponse.json({ error: authz.error || 'Unauthorized' }, { status: 403 })
}
const accessToken = await refreshAccessTokenIfNeeded(
credential,
authz.credentialOwnerUserId,
requestId
)
if (!accessToken) {
logger.error('Failed to get access token', {
credentialId: credential,
userId: authz.credentialOwnerUserId,
})
return NextResponse.json(
{ error: 'Could not retrieve access token', authRequired: true },
{ status: 401 }
)
}
const linearClient = new LinearClient({ accessToken })
/**
* teamId may be a single ID or a comma-separated list when the basic-mode
* team selector is in multi-select. Fetch projects from each team in
* parallel and dedupe by project ID (Linear projects can be cross-team).
*/
const teamIds = teamId
.split(',')
.map((s) => s.trim())
.filter(Boolean)
const perTeam = await Promise.all(
teamIds.map(async (id) => {
const team = await linearClient.team(id)
const teamProjects = await fetchAllTeamProjects(team)
return teamProjects.map((project: Project) => ({
id: project.id,
name: project.name,
}))
})
)
const seen = new Set<string>()
const projects: Array<{ id: string; name: string }> = []
for (const teamProjects of perTeam) {
for (const project of teamProjects) {
if (seen.has(project.id)) continue
seen.add(project.id)
projects.push(project)
}
}
if (projects.length === 0) {
logger.info('No projects found for team(s)', { teamIds })
}
return NextResponse.json({ projects })
} catch (error) {
logger.error('Error processing Linear projects request:', error)
return NextResponse.json(
{ error: 'Failed to retrieve Linear projects', details: (error as Error).message },
{ status: 500 }
)
}
})