Spaces:
Running
Running
File size: 7,839 Bytes
c3ae75f e9d7b34 c3ae75f 3ed6d7f c3ae75f e9d7b34 c3ae75f 3ed6d7f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 3ed6d7f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f 3ed6d7f c3ae75f 3ed6d7f c3ae75f e9d7b34 c3ae75f e9d7b34 3ed6d7f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 c3ae75f e9d7b34 |
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 |
// pages/api/mcp-handler.js - Updated for Passkey System
import fs from 'fs/promises'
import fssync from 'fs';
import path from 'path';
// Use /data for Hugging Face Spaces persistent storage
const DATA_DIR = process.env.SPACE_ID ? '/data' : path.join(process.cwd(), 'public', 'data');
const PUBLIC_DIR = path.join(DATA_DIR, 'public');
// Ensure directories exist
async function ensureDirectories() {
if (!fssync.existsSync(DATA_DIR)) {
await fs.mkdir(DATA_DIR, { recursive: true });
}
if (!fssync.existsSync(PUBLIC_DIR)) {
await fs.mkdir(PUBLIC_DIR, { recursive: true });
}
}
// Validate passkey format (alphanumeric and hyphens/underscores only)
function isValidPasskey(passkey) {
return passkey && /^[a-zA-Z0-9_-]+$/.test(passkey) && passkey.length >= 4;
}
// Sanitize filename to prevent path traversal
function sanitizeFileName(fileName) {
return fileName.replace(/[^a-zA-Z0-9._-]/g, '_');
}
// Sanitize passkey (used for directory names)
function sanitizePasskey(passkey) {
return passkey.replace(/[^a-zA-Z0-9_-]/g, '');
}
export default async function handler(req, res) {
// Enable CORS
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
if (req.method === 'OPTIONS') {
return res.status(200).end();
}
try {
await ensureDirectories();
if (req.method === 'POST') {
const { passkey, action, fileName, content, isPublic = false } = req.body;
// Public files don't need passkey
if (!isPublic && !isValidPasskey(passkey)) {
return res.status(400).json({
success: false,
error: 'Invalid or missing passkey (minimum 4 characters required)'
});
}
// Validate required fields
if (!action || !fileName || content === undefined) {
return res.status(400).json({
success: false,
error: 'Missing required fields: action, fileName, or content'
});
}
const sanitizedFileName = sanitizeFileName(fileName);
try {
let targetDir;
let responseData = {};
if (isPublic) {
targetDir = PUBLIC_DIR;
responseData.isPublic = true;
responseData.location = 'Public Files';
} else {
const sanitizedKey = sanitizePasskey(passkey);
targetDir = path.join(DATA_DIR, sanitizedKey);
if (!fssync.existsSync(targetDir)) {
await fs.mkdir(targetDir, { recursive: true });
}
responseData.passkey = sanitizedKey;
responseData.location = 'Secure Data';
}
// Handle different actions
switch (action) {
case 'save_file':
case 'deploy_quiz':
case 'save': {
const filePath = path.join(targetDir, sanitizedFileName);
await fs.writeFile(filePath, content, 'utf8');
return res.status(200).json({
success: true,
message: `File saved successfully to ${responseData.location}`,
fileName: sanitizedFileName,
action: action,
...responseData,
url: isPublic
? `${process.env.SPACE_ID ? 'https://mcp-1st-birthday-reuben-os.hf.space' : 'http://localhost:3000'}/data/public/${sanitizedFileName}`
: null
});
}
case 'delete_file':
case 'delete': {
const filePath = path.join(targetDir, sanitizedFileName);
try {
await fs.unlink(filePath);
return res.status(200).json({
success: true,
message: `File deleted successfully`,
fileName: sanitizedFileName,
...responseData
});
} catch (err) {
return res.status(404).json({
success: false,
error: 'File not found'
});
}
}
case 'clear_session':
case 'clear': {
if (isPublic) {
return res.status(400).json({
success: false,
error: 'Cannot clear public folder via this endpoint'
});
}
const files = await fs.readdir(targetDir);
let deletedCount = 0;
for (const file of files) {
await fs.unlink(path.join(targetDir, file));
deletedCount++;
}
return res.status(200).json({
success: true,
message: `Cleared ${deletedCount} files`,
deletedCount,
...responseData
});
}
default:
return res.status(400).json({
success: false,
error: `Unknown action: ${action}`
});
}
} catch (error) {
console.error('File operation error:', error);
return res.status(500).json({
success: false,
error: `Failed to ${action}: ${error.message}`
});
}
} else if (req.method === 'GET') {
const { passkey, isPublic } = req.query;
let targetDir;
let responseData = {};
if (isPublic === 'true') {
targetDir = PUBLIC_DIR;
responseData.isPublic = true;
responseData.location = 'Public Files';
} else {
if (!isValidPasskey(passkey)) {
return res.status(400).json({
success: false,
error: 'Invalid or missing passkey'
});
}
const sanitizedKey = sanitizePasskey(passkey);
targetDir = path.join(DATA_DIR, sanitizedKey);
if (!fssync.existsSync(targetDir)) {
return res.status(200).json({
success: true,
passkey: sanitizedKey,
files: [],
count: 0,
message: 'No files found for this passkey'
});
}
responseData.passkey = sanitizedKey;
responseData.location = 'Secure Data';
}
try {
const allFiles = await fs.readdir(targetDir);
const fileList = await Promise.all(
allFiles.map(async (file) => {
const filePath = path.join(targetDir, file);
const stats = await fs.stat(filePath);
// Read file content (with size limit)
let content = null;
if (stats.size < 1024 * 1024) { // 1MB limit
try {
content = await fs.readFile(filePath, 'utf8');
} catch (err) {
console.error(`Error reading file ${file}:`, err);
}
}
return {
name: file,
size: stats.size,
modified: stats.mtime,
isQuiz: file === 'quiz.json',
content: content,
extension: path.extname(file).substring(1)
};
})
);
// Sort by modification time (newest first)
fileList.sort((a, b) => new Date(b.modified) - new Date(a.modified));
return res.status(200).json({
success: true,
files: fileList,
count: fileList.length,
...responseData
});
} catch (error) {
console.error('Error reading files:', error);
return res.status(500).json({
success: false,
error: `Failed to retrieve files: ${error.message}`
});
}
} else {
return res.status(405).json({
success: false,
error: 'Method not allowed'
});
}
} catch (error) {
console.error('Unexpected error:', error);
return res.status(500).json({
success: false,
error: `Server error: ${error.message}`
});
}
} |