mirror of
https://github.com/CyberAlbSecOP/Awesome_GPT_Super_Prompting.git
synced 2026-06-10 02:13:56 +02:00
117 lines
3.6 KiB
JavaScript
117 lines
3.6 KiB
JavaScript
|
|
const http = require('http');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const url = require('url');
|
|
|
|
// Function to recursively read all .md files from directories
|
|
function getAllMarkdownFiles(dirPath, arrayOfFiles = []) {
|
|
try {
|
|
const files = fs.readdirSync(dirPath);
|
|
|
|
files.forEach(file => {
|
|
const fullPath = path.join(dirPath, file);
|
|
try {
|
|
const stat = fs.statSync(fullPath);
|
|
|
|
if (stat.isDirectory()) {
|
|
getAllMarkdownFiles(fullPath, arrayOfFiles);
|
|
} else if (file.endsWith('.md')) {
|
|
arrayOfFiles.push({
|
|
name: file,
|
|
path: fullPath,
|
|
relativePath: path.relative('.', fullPath),
|
|
folder: path.dirname(path.relative('.', fullPath))
|
|
});
|
|
}
|
|
} catch (error) {
|
|
// Skip files that can't be accessed
|
|
}
|
|
});
|
|
} catch (error) {
|
|
// Skip directories that can't be accessed
|
|
}
|
|
|
|
return arrayOfFiles;
|
|
}
|
|
|
|
// Function to read file content
|
|
function readFileContent(filePath) {
|
|
try {
|
|
return fs.readFileSync(filePath, 'utf8');
|
|
} catch (error) {
|
|
console.error('Error reading file:', error);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Get all markdown files
|
|
const markdownFiles = getAllMarkdownFiles('./');
|
|
|
|
// Create HTTP server
|
|
const server = http.createServer((req, res) => {
|
|
const parsedUrl = url.parse(req.url, true);
|
|
const pathname = parsedUrl.pathname;
|
|
|
|
// CORS headers
|
|
res.setHeader('Access-Control-Allow-Origin', '*');
|
|
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE');
|
|
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
|
|
|
|
// Handle API routes
|
|
if (pathname.startsWith('/api/file')) {
|
|
const filePath = parsedUrl.query.path;
|
|
if (!filePath) {
|
|
res.writeHead(400);
|
|
res.end('Missing file path');
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const content = fs.readFileSync(filePath, 'utf8');
|
|
res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
|
|
res.end(content);
|
|
} catch (error) {
|
|
res.writeHead(404);
|
|
res.end('File not found');
|
|
}
|
|
return;
|
|
}
|
|
|
|
// Handle API to get all markdown files
|
|
if (pathname === '/api/files') {
|
|
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
res.end(JSON.stringify(markdownFiles));
|
|
return;
|
|
}
|
|
|
|
// Handle static files
|
|
let filePath = path.join(__dirname, pathname === '/' ? 'index.html' : pathname);
|
|
const extname = path.extname(filePath);
|
|
let contentType = 'text/html';
|
|
|
|
switch (extname) {
|
|
case '.css': contentType = 'text/css'; break;
|
|
case '.js': contentType = 'text/javascript'; break;
|
|
case '.json': contentType = 'application/json'; break;
|
|
case '.png': contentType = 'image/png'; break;
|
|
case '.jpg': contentType = 'image/jpg'; break;
|
|
case '.ico': contentType = 'image/x-icon'; break;
|
|
}
|
|
|
|
fs.readFile(filePath, (err, content) => {
|
|
if (err) {
|
|
res.writeHead(404);
|
|
res.end('Not found');
|
|
} else {
|
|
res.writeHead(200, { 'Content-Type': contentType });
|
|
res.end(content);
|
|
}
|
|
});
|
|
});
|
|
|
|
server.listen(5000, '0.0.0.0', () => {
|
|
console.log('Prompt Arsenal server running on port 5000');
|
|
console.log(`Found ${markdownFiles.length} markdown files`);
|
|
});
|