mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-07 05:05:15 -05:00
* feat(confluence): added more confluence endpoints * update license * updated * updated docs
96 lines
3.2 KiB
TypeScript
96 lines
3.2 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { checkSessionOrInternalAuth } from '@/lib/auth/hybrid'
|
|
import { validateJiraCloudId } from '@/lib/core/security/input-validation'
|
|
import { getConfluenceCloudId } from '@/tools/confluence/utils'
|
|
|
|
const logger = createLogger('ConfluenceSpacesAPI')
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
// List all spaces
|
|
export async function GET(request: NextRequest) {
|
|
try {
|
|
const auth = await checkSessionOrInternalAuth(request)
|
|
if (!auth.success || !auth.userId) {
|
|
return NextResponse.json({ error: auth.error || 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const { searchParams } = new URL(request.url)
|
|
const domain = searchParams.get('domain')
|
|
const accessToken = searchParams.get('accessToken')
|
|
const providedCloudId = searchParams.get('cloudId')
|
|
const limit = searchParams.get('limit') || '25'
|
|
const cursor = searchParams.get('cursor')
|
|
|
|
if (!domain) {
|
|
return NextResponse.json({ error: 'Domain is required' }, { status: 400 })
|
|
}
|
|
|
|
if (!accessToken) {
|
|
return NextResponse.json({ error: 'Access token is required' }, { status: 400 })
|
|
}
|
|
|
|
const cloudId = providedCloudId || (await getConfluenceCloudId(domain, accessToken))
|
|
|
|
const cloudIdValidation = validateJiraCloudId(cloudId, 'cloudId')
|
|
if (!cloudIdValidation.isValid) {
|
|
return NextResponse.json({ error: cloudIdValidation.error }, { status: 400 })
|
|
}
|
|
|
|
const queryParams = new URLSearchParams()
|
|
queryParams.append('limit', String(Math.min(Number(limit), 250)))
|
|
if (cursor) {
|
|
queryParams.append('cursor', cursor)
|
|
}
|
|
const url = `https://api.atlassian.com/ex/confluence/${cloudId}/wiki/api/v2/spaces?${queryParams.toString()}`
|
|
|
|
const response = await fetch(url, {
|
|
method: 'GET',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
Authorization: `Bearer ${accessToken}`,
|
|
},
|
|
})
|
|
|
|
if (!response.ok) {
|
|
const errorData = await response.json().catch(() => null)
|
|
logger.error('Confluence API error response:', {
|
|
status: response.status,
|
|
statusText: response.statusText,
|
|
error: JSON.stringify(errorData, null, 2),
|
|
})
|
|
const errorMessage =
|
|
errorData?.message || `Failed to list Confluence spaces (${response.status})`
|
|
return NextResponse.json({ error: errorMessage }, { status: response.status })
|
|
}
|
|
|
|
const data = await response.json()
|
|
|
|
const spaces = (data.results || []).map((space: any) => ({
|
|
id: space.id,
|
|
name: space.name,
|
|
key: space.key,
|
|
type: space.type,
|
|
status: space.status,
|
|
authorId: space.authorId ?? null,
|
|
createdAt: space.createdAt ?? null,
|
|
homepageId: space.homepageId ?? null,
|
|
description: space.description ?? null,
|
|
}))
|
|
|
|
return NextResponse.json({
|
|
spaces,
|
|
nextCursor: data._links?.next
|
|
? new URL(data._links.next, 'https://placeholder').searchParams.get('cursor')
|
|
: null,
|
|
})
|
|
} catch (error) {
|
|
logger.error('Error listing Confluence spaces:', error)
|
|
return NextResponse.json(
|
|
{ error: (error as Error).message || 'Internal server error' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|