Files
FACULTATE-LICENTA/CEO/jobs/external_endpoints.js
T
2024-04-25 00:29:16 +03:00

193 lines
6.1 KiB
JavaScript

const express = require('express');
const fs = require('fs');
const fsExtra = require('fs-extra');
const path = require('path');
const Joi = require('joi');
const { httpStatus } = require('../helpers/http_status');
const {lockFile, unlockFile} = require("../helpers/lock_mechanism");
const {decryptFileInPlace, encryptFileInPlace} = require("../src/main/aes_encrypt");
const app = express();
app.use(express.json());
const server = require('http').createServer(app);
const connections = [];
// Store active connections to close them on shutdown
server.on('connection', (conn) => {
connections.push(conn);
conn.on('close', () => {
connections.splice(connections.indexOf(conn), 1);
});
});
const filePathSchema = Joi.object({
filePath: Joi.string().required()
});
async function getBaseDirectory() {
const filePath = path.join(__dirname, '..', 'dirBackup.json');
try {
const data = await fs.promises.readFile(filePath, 'utf8');
const jsonData = JSON.parse(data);
return jsonData.path;
} catch (error) {
console.error('Error reading the base directory:', error);
throw error;
}
}
app.post('/file_path', async (req, res) => {
const { error, value } = filePathSchema.validate(req.body);
if (error) {
return res.status(httpStatus.BAD_REQUEST).json({
message: 'Invalid input',
data: error.details
});
}
try {
const basePath = await getBaseDirectory();
let { filePath } = value;
const baseDirName = path.basename(basePath);
if (filePath.startsWith(baseDirName + path.sep)) {
filePath = filePath.slice(baseDirName.length + 1);
}
const fullPath = path.resolve(basePath, filePath);
fs.stat(fullPath, (err, stats) => {
if (err) {
if (err.code === 'ENOENT') {
return res.status(httpStatus.NOT_FOUND).json({
message: 'File not found'
});
}
return res.status(httpStatus.INTERNAL_SERVER_ERROR).json({
message: 'Error accessing the file'
});
}
if (!stats.isFile()) {
return res.status(httpStatus.BAD_REQUEST).json({
message: 'Path is not a file'
});
}
// Stream the file as binary data
res.writeHead(httpStatus.OK, {
'Content-Type': 'application/octet-stream',
'Content-Disposition': `attachment; filename="${path.basename(fullPath)}"`
});
const fileStream = fs.createReadStream(fullPath);
fileStream.pipe(res);
});
} catch (error) {
return res.status(httpStatus.INTERNAL_SERVER_ERROR).json({
message: 'Error processing request'
});
}
});
async function addFilePathToJson(filePath) {
const jsonFilePath = path.join(__dirname, '..', 'filesReceived.json');
let data = { receivedFiles: [] };
try {
// Check if the JSON file exists
const fileExists = await fsExtra.pathExists(jsonFilePath);
if (fileExists) {
await lockFile(jsonFilePath);
await decryptFileInPlace(jsonFilePath);
data = await fsExtra.readJson(jsonFilePath);
} else {
await fsExtra.writeJson(jsonFilePath, data, { spaces: 2 });
await lockFile(jsonFilePath);
}
if (data.receivedFiles.findIndex(existingFilePath => existingFilePath === filePath) === -1) {
data.receivedFiles.push(filePath);
}
// Write the updated data back to the file
await fsExtra.writeJson(jsonFilePath, data, { spaces: 2 });
// Unlock the file after updating
await unlockFile(jsonFilePath);
await encryptFileInPlace(jsonFilePath);
console.log('File path added successfully.');
} catch (error) {
console.error('Error updating JSON file:', error);
await encryptFileInPlace(jsonFilePath);
await unlockFile(jsonFilePath);
}
}
app.use('/share_file', express.raw({
type: 'application/octet-stream',
limit: '50mb'
}));
async function getShareDir(filePath) {
try {
await lockFile(filePath);
const fileContent = await fs.promises.readFile(filePath, 'utf8');
const jsonData = JSON.parse(fileContent);
const path = jsonData.path;
await unlockFile(filePath);
return path;
} catch (error) {
console.error('An error occurred:', error);
return null;
}
}
app.post('/share_file', async (req, res) => {
// Extract metadata from headers
const idUser = req.headers['x-iduser'];
const nameOfFile = req.headers['x-nameoffile'];
const sizeOfFile = req.headers['x-sizeoffile'];
// You might want to validate the metadata here
if (!idUser || !nameOfFile || !sizeOfFile) {
return res.status(httpStatus.BAD_REQUEST).json({message: 'Missing metadata headers'});
}
// Construct the file path using the metadata
const shareDirPath = await getShareDir(path.join(__dirname, '..', 'dirShare.json'));
const baseDir = path.join(shareDirPath, idUser);
fsExtra.ensureDirSync(baseDir);
const filePath = path.join(baseDir, nameOfFile);
try {
fs.writeFileSync(filePath, req.body);
await addFilePathToJson(filePath);
res.status(httpStatus.OK).json({ message: 'Upload successful.' });
} catch (error) {
console.error('Error during file upload:', error);
res.status(httpStatus.INTERNAL_SERVER_ERROR).json({ message: 'Internal server error.' });
}
});
console.log('external_endpoints.json started.');
const PORT = process.env.PORT || 3000;
server.listen(PORT, () => console.log(`Server running on port ${PORT}`));
process.on('SIGINT', () => {
console.log('SIGINT signal received. Shutting down gracefully.');
server.close(() => {
console.log('Server closed.');
// Ensure all connections are closed
connections.forEach(conn => conn.end());
setTimeout(() => connections.forEach(conn => conn.destroy()), 5000);
process.exit(0);
});
});