mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
179 lines
5.7 KiB
TypeScript
179 lines
5.7 KiB
TypeScript
import { db } from '@sim/db'
|
|
import { account } from '@sim/db/schema'
|
|
import { createLogger } from '@sim/logger'
|
|
import { eq } from 'drizzle-orm'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { getSession } from '@/lib/auth'
|
|
import { validateEnum, validatePathSegment } from '@/lib/core/security/input-validation'
|
|
import { generateRequestId } from '@/lib/core/utils/request'
|
|
import { refreshAccessTokenIfNeeded } from '@/app/api/auth/oauth/utils'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
const logger = createLogger('WealthboxItemsAPI')
|
|
|
|
interface WealthboxItem {
|
|
id: string
|
|
name: string
|
|
type: string
|
|
content: string
|
|
createdAt: string
|
|
updatedAt: string
|
|
}
|
|
|
|
/**
|
|
* Get items (notes, contacts, tasks) from Wealthbox
|
|
*/
|
|
export async function GET(request: NextRequest) {
|
|
const requestId = generateRequestId()
|
|
|
|
try {
|
|
const session = await getSession()
|
|
|
|
if (!session?.user?.id) {
|
|
logger.warn(`[${requestId}] Unauthenticated request rejected`)
|
|
return NextResponse.json({ error: 'User not authenticated' }, { status: 401 })
|
|
}
|
|
|
|
const { searchParams } = new URL(request.url)
|
|
const credentialId = searchParams.get('credentialId')
|
|
const type = searchParams.get('type') || 'contact'
|
|
const query = searchParams.get('query') || ''
|
|
|
|
if (!credentialId) {
|
|
logger.warn(`[${requestId}] Missing credential ID`)
|
|
return NextResponse.json({ error: 'Credential ID is required' }, { status: 400 })
|
|
}
|
|
|
|
const credentialIdValidation = validatePathSegment(credentialId, {
|
|
paramName: 'credentialId',
|
|
maxLength: 100,
|
|
allowHyphens: true,
|
|
allowUnderscores: true,
|
|
allowDots: false,
|
|
})
|
|
if (!credentialIdValidation.isValid) {
|
|
logger.warn(`[${requestId}] Invalid credentialId format: ${credentialId}`)
|
|
return NextResponse.json({ error: credentialIdValidation.error }, { status: 400 })
|
|
}
|
|
|
|
const ALLOWED_TYPES = ['contact'] as const
|
|
const typeValidation = validateEnum(type, ALLOWED_TYPES, 'type')
|
|
if (!typeValidation.isValid) {
|
|
logger.warn(`[${requestId}] Invalid item type: ${type}`)
|
|
return NextResponse.json({ error: typeValidation.error }, { status: 400 })
|
|
}
|
|
|
|
const credentials = await db.select().from(account).where(eq(account.id, credentialId)).limit(1)
|
|
|
|
if (!credentials.length) {
|
|
logger.warn(`[${requestId}] Credential not found`, { credentialId })
|
|
return NextResponse.json({ error: 'Credential not found' }, { status: 404 })
|
|
}
|
|
|
|
const credential = credentials[0]
|
|
|
|
if (credential.userId !== session.user.id) {
|
|
logger.warn(`[${requestId}] Unauthorized credential access attempt`, {
|
|
credentialUserId: credential.userId,
|
|
requestUserId: session.user.id,
|
|
})
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 403 })
|
|
}
|
|
|
|
const accessToken = await refreshAccessTokenIfNeeded(credentialId, session.user.id, requestId)
|
|
|
|
if (!accessToken) {
|
|
logger.error(`[${requestId}] Failed to obtain valid access token`)
|
|
return NextResponse.json({ error: 'Failed to obtain valid access token' }, { status: 401 })
|
|
}
|
|
|
|
const endpoints = {
|
|
contact: 'contacts',
|
|
}
|
|
const endpoint = endpoints[type as keyof typeof endpoints]
|
|
|
|
const url = new URL(`https://api.crmworkspace.com/v1/${endpoint}`)
|
|
|
|
logger.info(`[${requestId}] Fetching ${type}s from Wealthbox`, {
|
|
endpoint,
|
|
url: url.toString(),
|
|
hasQuery: !!query.trim(),
|
|
})
|
|
|
|
const response = await fetch(url.toString(), {
|
|
headers: {
|
|
Authorization: `Bearer ${accessToken}`,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
})
|
|
|
|
if (!response.ok) {
|
|
const errorText = await response.text()
|
|
logger.error(
|
|
`[${requestId}] Wealthbox API error: ${response.status} ${response.statusText}`,
|
|
{
|
|
error: errorText,
|
|
endpoint,
|
|
url: url.toString(),
|
|
}
|
|
)
|
|
return NextResponse.json(
|
|
{ error: `Failed to fetch ${type}s from Wealthbox` },
|
|
{ status: response.status }
|
|
)
|
|
}
|
|
|
|
const data = await response.json()
|
|
|
|
logger.info(`[${requestId}] Wealthbox API raw response`, {
|
|
type,
|
|
status: response.status,
|
|
dataKeys: Object.keys(data || {}),
|
|
hasContacts: !!data.contacts,
|
|
dataStructure: typeof data === 'object' ? Object.keys(data) : 'not an object',
|
|
})
|
|
|
|
let items: WealthboxItem[] = []
|
|
|
|
if (type === 'contact') {
|
|
const contacts = data.contacts || []
|
|
if (!Array.isArray(contacts)) {
|
|
logger.warn(`[${requestId}] Contacts is not an array`, {
|
|
contacts,
|
|
dataType: typeof contacts,
|
|
})
|
|
return NextResponse.json({ items: [] }, { status: 200 })
|
|
}
|
|
|
|
items = contacts.map((item: any) => ({
|
|
id: item.id?.toString() || '',
|
|
name: `${item.first_name || ''} ${item.last_name || ''}`.trim() || `Contact ${item.id}`,
|
|
type: 'contact',
|
|
content: item.background_information || '',
|
|
createdAt: item.created_at,
|
|
updatedAt: item.updated_at,
|
|
}))
|
|
}
|
|
|
|
if (query.trim()) {
|
|
const searchTerm = query.trim().toLowerCase()
|
|
items = items.filter(
|
|
(item) =>
|
|
item.name.toLowerCase().includes(searchTerm) ||
|
|
item.content.toLowerCase().includes(searchTerm)
|
|
)
|
|
}
|
|
|
|
logger.info(`[${requestId}] Successfully fetched ${items.length} ${type}s from Wealthbox`, {
|
|
totalItems: items.length,
|
|
hasSearchQuery: !!query.trim(),
|
|
})
|
|
|
|
return NextResponse.json({ items }, { status: 200 })
|
|
} catch (error) {
|
|
logger.error(`[${requestId}] Error fetching Wealthbox items`, error)
|
|
return NextResponse.json({ error: 'Internal server error' }, { status: 500 })
|
|
}
|
|
}
|