File size: 4,821 Bytes
1f21206 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | import type { PluginScope } from '../../utils/plugins/schemas.js'
import { ApiError, errorResponse } from '../middleware/errorHandler.js'
import { PluginService } from '../services/pluginService.js'
import { conversationService } from '../services/conversationService.js'
import { updateSessionSlashCommands } from '../ws/handler.js'
const pluginService = new PluginService()
type PluginSessionReloadSummary = {
applied: boolean
reason?: 'not_running' | 'failed'
commands: number
agents: number
plugins: number
mcpServers: number
errors: number
error?: string
}
export async function handlePluginsApi(
req: Request,
url: URL,
segments: string[],
): Promise<Response> {
try {
const method = req.method
const sub = segments[2]
const cwd = url.searchParams.get('cwd') || undefined
if (method === 'GET' && !sub) {
return Response.json(await pluginService.listPlugins(cwd))
}
if (method === 'GET' && sub === 'detail') {
const pluginId = url.searchParams.get('id')
if (!pluginId) {
throw ApiError.badRequest('Missing required "id" query parameter')
}
return Response.json({
detail: await pluginService.getPluginDetail(pluginId, cwd),
})
}
if (method === 'POST' && sub === 'reload') {
const sessionId = url.searchParams.get('sessionId') || undefined
const response = await pluginService.reloadPlugins(cwd)
if (!sessionId) {
return Response.json(response)
}
return Response.json({
...response,
session: await reloadSessionPlugins(sessionId),
})
}
if (method === 'POST' && sub) {
const body = await parseJsonBody(req)
const pluginId = asString(body.id)
if (!pluginId) {
throw ApiError.badRequest('Missing or invalid "id" in request body')
}
const scope = coerceScope(body.scope)
switch (sub) {
case 'enable':
return Response.json(await pluginService.enablePlugin(pluginId, scope))
case 'disable':
return Response.json(await pluginService.disablePlugin(pluginId, scope))
case 'update':
return Response.json(
await pluginService.updatePlugin(pluginId, scope as PluginScope | undefined),
)
case 'uninstall':
return Response.json(
await pluginService.uninstallPlugin(
pluginId,
scope,
body.keepData === true,
),
)
default:
throw ApiError.notFound(`Unknown plugins endpoint: ${sub}`)
}
}
throw new ApiError(
405,
`Method ${method} not allowed on /api/plugins${sub ? `/${sub}` : ''}`,
'METHOD_NOT_ALLOWED',
)
} catch (error) {
return errorResponse(error)
}
}
async function reloadSessionPlugins(
sessionId: string,
): Promise<PluginSessionReloadSummary> {
if (!conversationService.hasSession(sessionId)) {
return {
applied: false,
reason: 'not_running',
commands: 0,
agents: 0,
plugins: 0,
mcpServers: 0,
errors: 0,
}
}
try {
const response = await conversationService.requestControl(
sessionId,
{ subtype: 'reload_plugins' },
120_000,
)
const commands = Array.isArray(response.commands) ? response.commands : []
const normalizedCommands = updateSessionSlashCommands(sessionId, commands)
return {
applied: true,
commands: normalizedCommands.length,
agents: Array.isArray(response.agents) ? response.agents.length : 0,
plugins: Array.isArray(response.plugins) ? response.plugins.length : 0,
mcpServers: Array.isArray(response.mcpServers) ? response.mcpServers.length : 0,
errors: typeof response.error_count === 'number' ? response.error_count : 0,
}
} catch (error) {
return {
applied: false,
reason: 'failed',
commands: 0,
agents: 0,
plugins: 0,
mcpServers: 0,
errors: 0,
error: error instanceof Error ? error.message : String(error),
}
}
}
async function parseJsonBody(req: Request): Promise<Record<string, unknown>> {
try {
return (await req.json()) as Record<string, unknown>
} catch {
throw ApiError.badRequest('Invalid JSON body')
}
}
function asString(value: unknown): string | undefined {
return typeof value === 'string' && value.length > 0 ? value : undefined
}
function coerceScope(value: unknown):
| 'user'
| 'project'
| 'local'
| 'managed'
| undefined {
if (value == null) return undefined
if (
value === 'user' ||
value === 'project' ||
value === 'local' ||
value === 'managed'
) {
return value
}
throw ApiError.badRequest(
'Invalid "scope". Expected one of: user, project, local, managed',
)
}
|