d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
66 lines
2.5 KiB
TypeScript
66 lines
2.5 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { generateShortId } from '@sim/utils/id'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { authorizeTrelloContract } from '@/lib/api/contracts/oauth-connections'
|
|
import { parseRequest } from '@/lib/api/server'
|
|
import { getSession } from '@/lib/auth'
|
|
import { env } from '@/lib/core/config/env'
|
|
import { getBaseUrl } from '@/lib/core/utils/urls'
|
|
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
|
|
import { getCanonicalScopesForProvider } from '@/lib/oauth/utils'
|
|
|
|
const logger = createLogger('TrelloAuthorize')
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
const TRELLO_STATE_COOKIE = 'trello_oauth_state'
|
|
const TRELLO_STATE_COOKIE_PATH = '/api/auth/trello'
|
|
const TRELLO_STATE_COOKIE_MAX_AGE_SECONDS = 60 * 10
|
|
|
|
export const GET = withRouteHandler(async (request: NextRequest) => {
|
|
try {
|
|
const session = await getSession()
|
|
if (!session?.user?.id) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const parsed = await parseRequest(authorizeTrelloContract, request, {})
|
|
if (!parsed.success) return parsed.response
|
|
|
|
const apiKey = env.TRELLO_API_KEY
|
|
|
|
if (!apiKey) {
|
|
logger.error('TRELLO_API_KEY not configured')
|
|
return NextResponse.json({ error: 'Trello API key not configured' }, { status: 500 })
|
|
}
|
|
|
|
const baseUrl = getBaseUrl()
|
|
const state = generateShortId(32)
|
|
const returnUrl = new URL('/api/auth/trello/callback', baseUrl)
|
|
returnUrl.searchParams.set('state', state)
|
|
const scope = getCanonicalScopesForProvider('trello').join(',')
|
|
|
|
const authUrl = new URL('https://trello.com/1/authorize')
|
|
authUrl.searchParams.set('key', apiKey)
|
|
authUrl.searchParams.set('name', 'Sim Studio')
|
|
authUrl.searchParams.set('expiration', 'never')
|
|
authUrl.searchParams.set('callback_method', 'fragment')
|
|
authUrl.searchParams.set('response_type', 'token')
|
|
authUrl.searchParams.set('scope', scope)
|
|
authUrl.searchParams.set('return_url', returnUrl.toString())
|
|
|
|
const response = NextResponse.redirect(authUrl.toString())
|
|
response.cookies.set(TRELLO_STATE_COOKIE, state, {
|
|
httpOnly: true,
|
|
secure: process.env.NODE_ENV === 'production',
|
|
sameSite: 'lax',
|
|
maxAge: TRELLO_STATE_COOKIE_MAX_AGE_SECONDS,
|
|
path: TRELLO_STATE_COOKIE_PATH,
|
|
})
|
|
return response
|
|
} catch (error) {
|
|
logger.error('Error initiating Trello authorization:', error)
|
|
return NextResponse.json({ error: 'Internal server error' }, { status: 500 })
|
|
}
|
|
})
|