-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathserver.js
104 lines (80 loc) · 2.87 KB
/
server.js
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
//server.js
import express from 'express';
import bodyParser from 'body-parser';
import { main } from './smartgpt.js';
import fs from 'fs/promises';
import path from 'path';
import session from 'express-session';
import { stringify } from 'querystring';
const app = express();
const port = 3005;
const fileURLs = {};
// Initialize session
app.use(session({
secret: 'your_secret_key', // replace with a secret key of your choice
resave: false,
saveUninitialized: true,
cookie: { secure: false } // if you're using HTTPS, set this to true
}));
// Add this line before your routes
app.use(express.static('public')); // or wherever your static files are located
//addd
app.use(bodyParser.json());
app.set('view engine', 'ejs');
app.use(bodyParser.urlencoded({ extended: true }));
app.get('/', (req, res) => {
res.render('index');
});
// Add this before app.listen(port, () => {...})
app.get('/download/:fileName', (req, res) => {
const fileName = req.params.fileName;
const outputDir = path.join('output'); // same as where you save the files
const filePath = path.join(outputDir, fileName);
if (fs.existsSync(filePath)) {
res.download(filePath, fileName, (err) => {
if (err) {
console.error("Download error:", err);
res.status(500).send("An error occurred while downloading the file.");
}
});
} else {
res.status(404).send("File not found.");
}
});
app.post('/run', async (req, res) => {
const { apiKey } = req.body;
req.session.apiKey = apiKey;
try {
const { prompt, numAsks } = req.body;
// Input validation
if (!prompt || typeof prompt !== 'string' || prompt.trim() === '') {
return res.status(400).json({ error: "Invalid 'prompt' value" });
}
if (!numAsks || isNaN(numAsks) || Number(numAsks) <= 0) {
return res.status(400).json({ error: "Invalid 'numAsks' value" });
}
const result = await main(prompt, numAsks);
const fileName = `${Date.now()}.txt`;
const outputDir = path.join('output');
const outputPath = path.join(outputDir, fileName);
// Write output to a file NOT PROD READY
try {
await fs.mkdir(outputDir, { recursive: true });
await fs.writeFile(outputPath, JSON.stringify(result));
console.log(`Output was successfully saved to ${outputPath}`);
// Save file path to in-memory database
fileURLs[fileName] = outputPath;
} catch (err) {
console.error("An error occurred while writing the output to a file: ", err);
}
//THIS DISPLAYS RESULTS
// Return JSON with gptOutput field for client side
//Added fileName to return
res.json({ gptOutput: result.researcherResponse, finalAnswer: result.finalAnswer, fileName: fileName });
} catch (err) {
res.status(500).json({ error: "An error occurred: " + err.message });
}
});
app.listen(port, () => {
console.log(`App running on http://localhost:${port}`);
});