-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminRoutes.js
200 lines (165 loc) · 7.36 KB
/
adminRoutes.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
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
// ПОДКЛЮЧЕНИЕ МОДУЛЕЙ
const express = require('express');
const fs = require("fs");
const { site_open, site_close, site_tex, site_notex } = require('./telegram_bot');
const path = require("path"); // Импорт функции message из telegram_bot.js
const randomNumber = Math.floor(Math.random() * (901) + 100);
// ИНИЦИАЛИЗАЦИЯ
const postRequestApp = express();
// ФУНКЦИАНАЛ
postRequestApp.post('/admin', (req, res) => {
console.log('Json +')
const statusFilePath = './config/status.json';
const statusFilePath2 = './config/admin_users.json'; // путь к базе
if (req.body && req.body.login && req.body.password) {
const {login, password} = req.body;
const statusData = JSON.parse(fs.readFileSync(statusFilePath2, 'utf8'));
const user = statusData.find(user => user.login === login && user.password === password);
if (user) {
return res.status(200).json({message: 'Успешная авторизация', user});
} else {
return res.status(401).json({error: 'Неправильный логин или пароль'});
}
}
});
postRequestApp.post('/admin/mainpage/car', (req, res) => {
const requestData = req.body;
const filePath = './public/assets/carusel.json';
const currentData = JSON.parse(fs.readFileSync(filePath, 'utf-8'));
if (requestData.card1) {
currentData.card1 = requestData.card1;
}
if (requestData.card2) {
currentData.card2 = requestData.card2;
}
if (requestData.card3) {
currentData.card3 = requestData.card3;
}
fs.writeFileSync(filePath, JSON.stringify(currentData, null, 2), 'utf-8');
res.status(200).json({ message: 'Данные успешно обновлены ()' });
});
postRequestApp.post('/admin/dashboard', (req, res) => {
const statusFilePath = './config/status.json';
const statusFilePath2 = './config/admin_users.json'; // путь к базе
console.log(req.body)
if (req.body && req.body.statreq === 'false'){
const statusData = JSON.parse(fs.readFileSync(statusFilePath, 'utf8'));
//const requestedKey = 'cite_open'; // Можно заменить на нужный ключ
//const value = statusData[requestedKey];
//const response = { ['cite_open']: statusData['site_open'] };
res.json({
"cite_open": statusData["cite_open"],
"cite_dev": statusData["cite_dev"],
});
}
if (req.body && req.body.config_req){
const statusFilePath = './config/status.json';
fs.readFile(statusFilePath, 'utf8', (err, data) => {
const jsonData = JSON.parse(data);
res.json(jsonData);
})
}
if (req.body && req.body.open === 'false') {
console.log('Suesses')
const statusData = JSON.parse(fs.readFileSync(statusFilePath, 'utf8'));
statusData.cite_open = "false";
fs.writeFileSync(statusFilePath, JSON.stringify(statusData, null, 2));
fs.renameSync('public/index2.html', 'public/noindex.html');
fs.renameSync('public/closed.html', 'public/index2.html');
res.json({
"message": "Сайт закрыт.",
});
site_close()
}
if (req.body && req.body.open === 'true') {
const statusData = JSON.parse(fs.readFileSync(statusFilePath, 'utf8'));
statusData.cite_open = "true";
fs.writeFileSync(statusFilePath, JSON.stringify(statusData, null, 2));
console.log(`Получен POST за прос со стра ницы /admin содержащий : `, req.body);
fs.renameSync('public/index2.html', 'public/closed.html');
fs.renameSync('public/noindex.html', 'public/index2.html');
res.json({
"message": "Сайт открыт.",
});
site_open()
}
if (req.body && req.body.dev === 'false') {
const statusData = JSON.parse(fs.readFileSync(statusFilePath, 'utf8'));
statusData.cite_dev = "false";
fs.writeFileSync(statusFilePath, JSON.stringify(statusData, null, 2));
console.log(`Получен POST запрос со стра ницы /admin содержащий : `, req.body);
fs.renameSync('public/index2.html', 'public/noindex.html');
fs.renameSync('public/work.html', 'public/index2.html');
res.json({
"message": "Сайт закрыт на тех.работы",
});
site_notex()
}
if (req.body && req.body.dev === 'true') {
const statusData = JSON.parse(fs.readFileSync(statusFilePath, 'utf8'));
statusData.cite_dev = "true";
fs.writeFileSync(statusFilePath, JSON.stringify(statusData, null, 2));
console.log(`Получен POST за прос со стра ницы /admin содержащий : `, req.body);
fs.renameSync('public/index2.html', 'public/work.html');
fs.renameSync('public/noindex.html', 'public/index2.html');
res.json({
"message": "Тех работы завершены.",
});
site_tex()
}
});
postRequestApp.get('/admin/dev/check/server-cfg', (req, res) => {
console.log('Json +')
res.send(`https://[доменное имя сайта]/admin/dev/server-cfg/code/${randomNumber}`);
})
postRequestApp.get('/admin/dev/check/admin-users', (req, res) => {
console.log('Json +')
res.send(`https://[доменное имя сайта]/admin/dev/admin-users/code/${randomNumber}`);
})
postRequestApp.get('/admin/dev/check/visits', (req, res) => {
console.log('Json +')
res.send(`https://[доменное имя сайта]/admin/dev/visits/code/${randomNumber}`);
})
postRequestApp.get(`/admin/dev/check/server-cfg/code/${randomNumber}`, (req, res) => {
console.log('Json +');
const filePath = path.join(__dirname, 'config', 'server_cfg.json'); // Путь к файлу
try {
const data = fs.readFileSync(filePath, 'utf8');
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json;charset=utf-8');
res.send(data);
} catch (error) {
console.error('Error reading file:', error);
res.statusCode = 500;
res.send('Error reading file');
}
});
postRequestApp.get(`/admin/dev/check/admin-users/code/${randomNumber}`, (req, res) => {
console.log('Json +');
const filePath = path.join(__dirname, 'config', 'admin_users.json'); // Путь к файлу
try {
const data = fs.readFileSync(filePath, 'utf8');
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json;charset=utf-8');
res.send(data);
} catch (error) {
console.error('Error reading file:', error);
res.statusCode = 500;
res.send('Error reading file');
}
});postRequestApp.get(`/admin/dev/check/visits/code/${randomNumber}`, (req, res) => {
console.log('Json +');
const filePath = path.join(__dirname, 'logs', 'visits', 'visit.json'); // Путь к файлу
try {
const data = fs.readFileSync(filePath, 'utf8');
res.statusCode = 200;
res.setHeader('Content-Type', 'application/json;charset=utf-8');
res.send(data);
} catch (error) {
console.error('Error reading file:', error);
res.statusCode = 500;
res.send('Error reading file');
}
});
// СОЗДАНИЕ МОДУЛЯ
module.exports = postRequestApp;