Spaces:
Sleeping
Sleeping
File size: 15,080 Bytes
bbbc03f bfb8731 bbbc03f b6ecafa bbbc03f bfccd36 959f8d7 b6ecafa bbbc03f ecae447 bbbc03f bfb8731 bbbc03f ecae447 bbbc03f 5a5899d bbbc03f b6ecafa bbbc03f b6ecafa bbbc03f 959f8d7 bbbc03f 959f8d7 bbbc03f bfccd36 bbbc03f b6ecafa bbbc03f b6ecafa ecae447 b6ecafa ecae447 b6ecafa bbbc03f ecae447 bbbc03f b6ecafa bbbc03f b6ecafa bbbc03f 959f8d7 bbbc03f ecae447 bbbc03f 959f8d7 bbbc03f bfccd36 bbbc03f ecae447 bbbc03f b6ecafa bbbc03f b6ecafa bbbc03f b6ecafa bbbc03f 959f8d7 bbbc03f bfccd36 bbbc03f ecae447 bbbc03f b6ecafa bbbc03f 959f8d7 bbbc03f | 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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 | import { NextRequest, NextResponse } from 'next/server'
import { readdir, readFile, stat, lstat, realpath, writeFile, mkdir, unlink } from 'fs/promises'
import { existsSync, mkdirSync } from 'fs'
import { join, dirname, sep } from 'path'
import { config } from '@/lib/config'
import { db_helpers } from '@/lib/db'
import { resolveWithin } from '@/lib/paths'
import { requireRole } from '@/lib/auth'
import { readLimiter, mutationLimiter } from '@/lib/rate-limit'
import { logger } from '@/lib/logger'
import { validateSchema, extractWikiLinks } from '@/lib/memory-utils'
const MEMORY_PATH = config.memoryDir
const MEMORY_ALLOWED_PREFIXES = (config.memoryAllowedPrefixes || []).map((p) => p.replace(/\\/g, '/'))
// Ensure memory directory exists on startup
if (MEMORY_PATH && !existsSync(MEMORY_PATH)) {
try { mkdirSync(MEMORY_PATH, { recursive: true }) } catch { /* ignore */ }
}
interface MemoryFile {
path: string
name: string
type: 'file' | 'directory'
size?: number
modified?: number
children?: MemoryFile[]
}
function normalizeRelativePath(value: string): string {
return String(value || '').replace(/\\/g, '/').replace(/^\/+/, '')
}
function isPathAllowed(relativePath: string): boolean {
if (!MEMORY_ALLOWED_PREFIXES.length) return true
const normalized = normalizeRelativePath(relativePath)
return MEMORY_ALLOWED_PREFIXES.some((prefix) => normalized === prefix.slice(0, -1) || normalized.startsWith(prefix))
}
function isWithinBase(base: string, candidate: string): boolean {
if (candidate === base) return true
return candidate.startsWith(base + sep)
}
async function resolveSafeMemoryPath(baseDir: string, relativePath: string): Promise<string> {
const baseReal = await realpath(baseDir)
const fullPath = resolveWithin(baseDir, relativePath)
// For non-existent targets, validate containment using the nearest existing ancestor.
// This allows nested creates (mkdir -p) while still blocking symlink escapes.
let current = dirname(fullPath)
let parentReal = ''
while (!parentReal) {
try {
parentReal = await realpath(current)
} catch (err) {
const code = (err as NodeJS.ErrnoException).code
if (code !== 'ENOENT') throw err
const next = dirname(current)
if (next === current) {
throw new Error('Parent directory not found')
}
current = next
}
}
if (!isWithinBase(baseReal, parentReal)) {
throw new Error('Path escapes base directory (symlink)')
}
// If the file exists, ensure it also resolves within base and is not a symlink.
try {
const st = await lstat(fullPath)
if (st.isSymbolicLink()) {
throw new Error('Symbolic links are not allowed')
}
const fileReal = await realpath(fullPath)
if (!isWithinBase(baseReal, fileReal)) {
throw new Error('Path escapes base directory (symlink)')
}
} catch (err) {
const code = (err as NodeJS.ErrnoException).code
if (code !== 'ENOENT') {
throw err
}
}
return fullPath
}
async function buildFileTree(
dirPath: string,
relativePath: string = '',
maxDepth: number = Number.POSITIVE_INFINITY,
): Promise<MemoryFile[]> {
try {
const items = await readdir(dirPath, { withFileTypes: true })
const files: MemoryFile[] = []
for (const item of items) {
if (item.isSymbolicLink()) {
continue
}
const itemPath = join(dirPath, item.name)
const itemRelativePath = join(relativePath, item.name)
try {
const stats = await stat(itemPath)
if (item.isDirectory()) {
const children =
maxDepth > 0
? await buildFileTree(itemPath, itemRelativePath, maxDepth - 1)
: undefined
files.push({
path: itemRelativePath,
name: item.name,
type: 'directory',
modified: stats.mtime.getTime(),
children
})
} else if (item.isFile()) {
files.push({
path: itemRelativePath,
name: item.name,
type: 'file',
size: stats.size,
modified: stats.mtime.getTime()
})
}
} catch (error) {
logger.error({ err: error, path: itemPath }, 'Error reading file')
}
}
return files.sort((a, b) => {
// Directories first, then files, alphabetical within each type
if (a.type !== b.type) {
return a.type === 'directory' ? -1 : 1
}
return a.name.localeCompare(b.name)
})
} catch (error) {
logger.error({ err: error, path: dirPath }, 'Error reading directory')
return []
}
}
export async function GET(request: NextRequest) {
const auth = requireRole(request, 'viewer')
if ('error' in auth) return NextResponse.json({ error: auth.error }, { status: auth.status })
const rateCheck = readLimiter(request)
if (rateCheck) return rateCheck
try {
const { searchParams } = new URL(request.url)
const path = searchParams.get('path')
const action = searchParams.get('action')
const depthParam = Number.parseInt(searchParams.get('depth') || '', 10)
const maxDepth = Number.isFinite(depthParam) ? Math.max(0, Math.min(depthParam, 8)) : Number.POSITIVE_INFINITY
if (action === 'tree') {
// Return the file tree
if (!MEMORY_PATH) {
return NextResponse.json({ tree: [] })
}
if (path) {
if (!isPathAllowed(path)) {
return NextResponse.json({ error: 'Path not allowed' }, { status: 403 })
}
const fullPath = await resolveSafeMemoryPath(MEMORY_PATH, path)
const stats = await stat(fullPath).catch(() => null)
if (!stats?.isDirectory()) {
return NextResponse.json({ error: 'Directory not found' }, { status: 404 })
}
const tree = await buildFileTree(fullPath, path, maxDepth)
return NextResponse.json({ tree })
}
if (MEMORY_ALLOWED_PREFIXES.length) {
const tree: MemoryFile[] = []
for (const prefix of MEMORY_ALLOWED_PREFIXES) {
const folder = prefix.replace(/\/$/, '')
const fullPath = join(MEMORY_PATH, folder)
if (!existsSync(fullPath)) continue
try {
const stats = await stat(fullPath)
if (!stats.isDirectory()) continue
tree.push({
path: folder,
name: folder,
type: 'directory',
modified: stats.mtime.getTime(),
children: await buildFileTree(fullPath, folder, maxDepth),
})
} catch {
// Skip unreadable roots
}
}
return NextResponse.json({ tree })
}
const tree = await buildFileTree(MEMORY_PATH, '', maxDepth)
return NextResponse.json({ tree })
}
if (action === 'content' && path) {
// Return file content
if (!isPathAllowed(path)) {
return NextResponse.json({ error: 'Path not allowed' }, { status: 403 })
}
if (!MEMORY_PATH) {
return NextResponse.json({ error: 'Memory directory not configured' }, { status: 500 })
}
const fullPath = await resolveSafeMemoryPath(MEMORY_PATH, path)
try {
const content = await readFile(fullPath, 'utf-8')
const stats = await stat(fullPath)
// Extract wiki-links and schema validation for .md files
const isMarkdown = path.endsWith('.md')
const wikiLinks = isMarkdown ? extractWikiLinks(content) : []
const schemaResult = isMarkdown ? validateSchema(content) : null
return NextResponse.json({
content,
size: stats.size,
modified: stats.mtime.getTime(),
path,
wikiLinks,
schema: schemaResult,
})
} catch (error) {
return NextResponse.json({ error: 'File not found' }, { status: 404 })
}
}
if (action === 'search') {
const query = searchParams.get('query')
if (!query) {
return NextResponse.json({ error: 'Query required' }, { status: 400 })
}
if (!MEMORY_PATH) {
return NextResponse.json({ query, results: [] })
}
// Simple file search - in production you'd want a more sophisticated search
const results: Array<{path: string, name: string, matches: number}> = []
const searchInFile = async (filePath: string, relativePath: string) => {
try {
const st = await stat(filePath)
// Avoid large-file scanning and memory blowups.
if (st.size > 1_000_000) {
return
}
const content = await readFile(filePath, 'utf-8')
const haystack = content.toLowerCase()
const needle = query.toLowerCase()
if (!needle) return
let matches = 0
let idx = haystack.indexOf(needle)
while (idx !== -1) {
matches += 1
idx = haystack.indexOf(needle, idx + needle.length)
}
if (matches > 0) {
results.push({
path: relativePath,
name: relativePath.split('/').pop() || '',
matches
})
}
} catch (error) {
// Skip files that can't be read
}
}
const searchDirectory = async (dirPath: string, relativePath: string = '') => {
try {
const items = await readdir(dirPath, { withFileTypes: true })
for (const item of items) {
if (item.isSymbolicLink()) {
continue
}
const itemPath = join(dirPath, item.name)
const itemRelativePath = join(relativePath, item.name)
if (item.isDirectory()) {
await searchDirectory(itemPath, itemRelativePath)
} else if (item.isFile() && (item.name.endsWith('.md') || item.name.endsWith('.txt'))) {
await searchInFile(itemPath, itemRelativePath)
}
}
} catch (error) {
logger.error({ err: error, path: dirPath }, 'Error searching directory')
}
}
if (MEMORY_ALLOWED_PREFIXES.length) {
for (const prefix of MEMORY_ALLOWED_PREFIXES) {
const folder = prefix.replace(/\/$/, '')
const fullPath = join(MEMORY_PATH, folder)
if (!existsSync(fullPath)) continue
await searchDirectory(fullPath, folder)
}
} else {
await searchDirectory(MEMORY_PATH)
}
return NextResponse.json({
query,
results: results.sort((a, b) => b.matches - a.matches)
})
}
return NextResponse.json({ error: 'Invalid action' }, { status: 400 })
} catch (error) {
logger.error({ err: error }, 'Memory API error')
return NextResponse.json({ error: 'Internal server error' }, { status: 500 })
}
}
export async function POST(request: NextRequest) {
const auth = requireRole(request, 'operator')
if ('error' in auth) return NextResponse.json({ error: auth.error }, { status: auth.status })
const rateCheck = mutationLimiter(request)
if (rateCheck) return rateCheck
try {
const body = await request.json()
const { action, path, content } = body
if (!path) {
return NextResponse.json({ error: 'Path is required' }, { status: 400 })
}
if (!isPathAllowed(path)) {
return NextResponse.json({ error: 'Path not allowed' }, { status: 403 })
}
if (!MEMORY_PATH) {
return NextResponse.json({ error: 'Memory directory not configured' }, { status: 500 })
}
const fullPath = await resolveSafeMemoryPath(MEMORY_PATH, path)
if (action === 'save') {
// Save file content
if (content === undefined) {
return NextResponse.json({ error: 'Content is required for save action' }, { status: 400 })
}
// Validate schema if present (warn but don't block save)
const schemaResult = path.endsWith('.md') ? validateSchema(content) : null
const schemaWarnings = schemaResult?.errors ?? []
await writeFile(fullPath, content, 'utf-8')
try {
db_helpers.logActivity('memory_file_saved', 'memory', 0, auth.user.username || 'unknown', `Updated ${path}`, { path, size: content.length })
} catch { /* best-effort */ }
return NextResponse.json({
success: true,
message: 'File saved successfully',
schemaWarnings,
})
}
if (action === 'create') {
// Create new file
const dirPath = dirname(fullPath)
// Ensure directory exists
try {
await mkdir(dirPath, { recursive: true })
} catch (error) {
// Directory might already exist
}
// Check if file already exists
try {
await stat(fullPath)
return NextResponse.json({ error: 'File already exists' }, { status: 409 })
} catch (error) {
// File doesn't exist, which is what we want
}
await writeFile(fullPath, content || '', 'utf-8')
try {
db_helpers.logActivity('memory_file_created', 'memory', 0, auth.user.username || 'unknown', `Created ${path}`, { path })
} catch { /* best-effort */ }
return NextResponse.json({ success: true, message: 'File created successfully' })
}
return NextResponse.json({ error: 'Invalid action' }, { status: 400 })
} catch (error) {
logger.error({ err: error }, 'Memory POST API error')
return NextResponse.json({ error: 'Internal server error' }, { status: 500 })
}
}
export async function DELETE(request: NextRequest) {
const auth = requireRole(request, 'admin')
if ('error' in auth) return NextResponse.json({ error: auth.error }, { status: auth.status })
const rateCheck = mutationLimiter(request)
if (rateCheck) return rateCheck
try {
const body = await request.json()
const { action, path } = body
if (!path) {
return NextResponse.json({ error: 'Path is required' }, { status: 400 })
}
if (!isPathAllowed(path)) {
return NextResponse.json({ error: 'Path not allowed' }, { status: 403 })
}
if (!MEMORY_PATH) {
return NextResponse.json({ error: 'Memory directory not configured' }, { status: 500 })
}
const fullPath = await resolveSafeMemoryPath(MEMORY_PATH, path)
if (action === 'delete') {
// Check if file exists
try {
await stat(fullPath)
} catch (error) {
return NextResponse.json({ error: 'File not found' }, { status: 404 })
}
await unlink(fullPath)
try {
db_helpers.logActivity('memory_file_deleted', 'memory', 0, auth.user.username || 'unknown', `Deleted ${path}`, { path })
} catch { /* best-effort */ }
return NextResponse.json({ success: true, message: 'File deleted successfully' })
}
return NextResponse.json({ error: 'Invalid action' }, { status: 400 })
} catch (error) {
logger.error({ err: error }, 'Memory DELETE API error')
return NextResponse.json({ error: 'Internal server error' }, { status: 500 })
}
}
|