2024-10-12 13:04:51 +03:00
|
|
|
const adminRouter = require('express').Router();
|
|
|
|
const fs = require('fs');
|
|
|
|
const path = require('path');
|
2024-10-12 13:23:16 +03:00
|
|
|
const { TOKEN } = require('../const');
|
2024-10-12 13:04:51 +03:00
|
|
|
require('dotenv').config();
|
|
|
|
|
|
|
|
const dataFilePath = path.join(__dirname, '../data.json');
|
|
|
|
let data = require('../data.json');
|
|
|
|
|
|
|
|
const verifyToken = (req, res, next) => {
|
|
|
|
const token = req.headers['authorization'];
|
2024-10-12 13:23:16 +03:00
|
|
|
if (token === TOKEN) {
|
2024-10-12 13:04:51 +03:00
|
|
|
next();
|
|
|
|
} else {
|
|
|
|
res.status(403).send({ 'status': 'Failed', 'data': 'Invalid token' });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const saveData = (data) => {
|
|
|
|
fs.writeFileSync(dataFilePath, JSON.stringify(data, null, 2), 'utf-8');
|
|
|
|
};
|
|
|
|
|
|
|
|
adminRouter.post('/edit/nickname', verifyToken, (req, res) => {
|
|
|
|
const { name, colored } = req.body;
|
|
|
|
if (!name || !colored) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Nickname is required' });
|
|
|
|
}
|
|
|
|
|
|
|
|
data.nickname = { name, colored };
|
|
|
|
saveData(data);
|
|
|
|
|
|
|
|
res.status(200).send({ 'status': 'OK', 'data': 'Nickname updated successfully' });
|
|
|
|
});
|
|
|
|
|
|
|
|
adminRouter.post('/edit/tech-stack', verifyToken, (req, res) => {
|
|
|
|
const { techStack } = req.body;
|
|
|
|
if (!techStack || !Array.isArray(techStack)) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Valid tech stack is required' });
|
|
|
|
}
|
|
|
|
|
|
|
|
data.techStack = techStack;
|
|
|
|
saveData(data);
|
|
|
|
|
|
|
|
res.status(200).send({ 'status': 'OK', 'data': 'Tech stack updated successfully' });
|
|
|
|
});
|
|
|
|
|
|
|
|
adminRouter.post('/edit/city', verifyToken, (req, res) => {
|
|
|
|
const { city } = req.body;
|
|
|
|
if (!city) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'City is required' });
|
|
|
|
}
|
|
|
|
|
|
|
|
const isValid = typeof city === 'object' && 'name' in city && 'href' in city;
|
|
|
|
|
|
|
|
if (!isValid) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'City must contain href and name' });
|
|
|
|
}
|
|
|
|
|
|
|
|
data.city = city;
|
|
|
|
saveData(data);
|
|
|
|
|
|
|
|
res.status(200).send({ 'status': 'OK', 'data': 'City updated successfully' });
|
|
|
|
});
|
|
|
|
|
|
|
|
adminRouter.post('/edit/github-repo', verifyToken, (req, res) => {
|
|
|
|
const { github } = req.body;
|
|
|
|
if (!github) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Github is required' });
|
|
|
|
}
|
|
|
|
|
|
|
|
const isValid = typeof github === 'object' && 'author' in github && 'repo' in github;
|
|
|
|
|
|
|
|
if (!isValid) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Github must contain author and repo' });
|
|
|
|
}
|
|
|
|
|
|
|
|
data.githubRepo = github;
|
|
|
|
saveData(data);
|
|
|
|
|
|
|
|
res.status(200).send({ 'status': 'OK', 'data': 'Github updated successfully' });
|
|
|
|
});
|
|
|
|
|
|
|
|
adminRouter.post('/edit/nav-links', verifyToken, (req, res) => {
|
|
|
|
const { navLinks } = req.body;
|
|
|
|
if (!navLinks || !Array.isArray(navLinks)) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Valid navLinks are required' });
|
|
|
|
}
|
|
|
|
|
|
|
|
const isValid = navLinks.every(link =>
|
|
|
|
link && typeof link === 'object' && 'href' in link && 'title' in link
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!isValid) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Each navLink must contain href and title' });
|
|
|
|
}
|
|
|
|
|
|
|
|
data.navLinks = navLinks;
|
|
|
|
saveData(data);
|
|
|
|
|
|
|
|
res.status(200).send({ 'status': 'OK', 'data': 'Navigation links updated successfully' });
|
|
|
|
});
|
|
|
|
|
|
|
|
adminRouter.post('/edit/links', verifyToken, (req, res) => {
|
|
|
|
const { links } = req.body;
|
|
|
|
if (!links || !Array.isArray(links)) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Valid links are required' });
|
|
|
|
}
|
|
|
|
|
|
|
|
const isValid = links.every(link =>
|
|
|
|
link && typeof link === 'object' && 'href' in link && 'title' in link
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!isValid) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Each link must contain href and title' });
|
|
|
|
}
|
|
|
|
|
|
|
|
data.links = links;
|
|
|
|
saveData(data);
|
|
|
|
|
|
|
|
res.status(200).send({ 'status': 'OK', 'data': 'Links updated successfully' });
|
|
|
|
});
|
|
|
|
|
|
|
|
adminRouter.post('/edit/projects', verifyToken, (req, res) => {
|
|
|
|
const { projects } = req.body;
|
|
|
|
if (!projects) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'Projects are required' });
|
|
|
|
}
|
|
|
|
|
|
|
|
const projectFields = ['id', 'title', 'description', 'link', 'techStack', 'image'];
|
|
|
|
|
|
|
|
const isValidProject = (project) => {
|
|
|
|
return projectFields.every(field => field && field in project);
|
|
|
|
}
|
|
|
|
|
|
|
|
const allProjectsValid = projects.every(project => isValidProject(project));
|
|
|
|
|
|
|
|
if (!allProjectsValid) {
|
|
|
|
return res.status(400).send({ 'status': 'Failed', 'data': 'All projects must contain ' + projectFields.join(", ") });
|
|
|
|
}
|
|
|
|
|
|
|
|
data.projects = projects;
|
|
|
|
saveData(data);
|
|
|
|
|
|
|
|
res.status(200).send({ 'status': 'OK', 'data': 'Projects updated successfully' });
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = adminRouter;
|