-
Notifications
You must be signed in to change notification settings - Fork 3
/
file_controller.cc
295 lines (262 loc) · 8.61 KB
/
file_controller.cc
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
#include "file_controller.h"
#include "jwt_controller.h"
#include "pgsql.h"
#include <json/json.h>
#include <cstdio>
#include <iostream>
#include <stdexcept>
#include <string>
std::string return_status(std::string result, const std::string &command, Json::Value &res_json)
{
if (!result.empty())
{
result = command + " success";
res_json["code"] = 200;
}
else
{
result = " Error in :" + command;
res_json["code"] = 400;
}
return result;
}
void add_lock(const HttpRequestPtr &req, std::function<void(const HttpResponsePtr &)> &&callback)
{
Json::Value res_json;
Json::FastWriter writer;
std::string filename = req->getParameter("filename");
auto res = HttpResponse::newHttpResponse();
if (jwtVerify(req))
{
res->addHeader("Access-Control-Allow-Origin", "*");
if (lockcheck(filename))
{
res_json["code"] = 402;
res_json["message"] = "This file has been occupied";
}
else
{
res_json["code"] = 200;
res_json["message"] = "Success";
}
}
else
{
res_json["code"] = 401;
res_json["message"] = "No Authorization";
}
auto output = writer.write(res_json);
res->setBody(output);
callback(res);
}
std::string shell_commands(const char *cmd)
{
char buffer[1280];
std::string result;
FILE *pipe = popen(cmd, "r");
if (!pipe)
throw std::runtime_error("popen() failed!");
try
{
while (fgets(buffer, sizeof buffer, pipe) != nullptr)
{
result += buffer;
}
}
catch (...)
{
pclose(pipe);
throw;
}
pclose(pipe);
return result;
}
void commandsCtrl(const HttpRequestPtr &req, std::function<void(const HttpResponsePtr &)> &&callback)
{
auto res = HttpResponse::newHttpResponse();
std::string result;
Json::Value res_json;
Json::FastWriter writer;
res->addHeader("Access-Control-Allow-Origin", "*");
if (jwtVerify(req))
{
enum Command
{
tree,
cp,
mv,
rm,
mkdir,
touch,
cat
} command;
char *pathvar;
pathvar = getenv("PWD");
command = static_cast<Command>(stoi(req->getJsonObject()->get("command", "").asString()));
std::string params1 = req->getJsonObject()->get("params", "")[0].asString();
std::string params2 = req->getJsonObject()->get("params", "")[1].asString();
if ((params1.find("..") != std::string::npos) || (params2.find("..") != std::string::npos))
{
result = "Error:result in wrong directory";
res_json["code"] = 400;
}
else
{
switch (command)
{
case tree:
result = shell_commands(("cd " + std::string(pathvar) + "/.. " + "&&" + "tree -J root").c_str());
break;
case cp:
result = shell_commands(("cp -v " + std::string(pathvar) + "/../root/" + params1 + " " + std::string(pathvar) + "/../root/" + params2).c_str());
result = return_status(result, "cp", res_json);
break;
case mv:
result = shell_commands(("mv -v " + std::string(pathvar) + "/../root/" + params1 + " " + std::string(pathvar) + "/../root/" + params2).c_str());
result = return_status(result, "mv", res_json);
break;
case rm:
if (params1.find("..") != std::string::npos)
{
result = "error:result in wrong directory";
res_json["code"] = 400;
break;
}
result = shell_commands(("rm -rf -v " + std::string(pathvar) + "/../root/" + params1).c_str());
result = return_status(result, "rm", res_json);
break;
case mkdir:
result = shell_commands(("mkdir -v " + std::string(pathvar) + "/../root/" + params1).c_str());
result = return_status(result, "mkdir", res_json);
break;
case touch:
if (shell_commands(("ls -l " + std::string(pathvar) + "/../root/" + params1 + "| grep ^- ").c_str()).empty())
{
shell_commands(("touch " + std::string(pathvar) + "/../root/" + params1).c_str());
result = "success";
res_json["code"] = 200;
}
else
{
result = "error:file already exists";
res_json["code"] = 400;
}
break;
case cat:
result = shell_commands(("cat " + std::string(pathvar) + "/../root/" + params1).c_str());
res_json["code"] = 200;
break;
default:
result = "error:command not found";
res_json["code"] = 400;
break;
}
}
}
else
{
result = "No Authorization";
res_json["code"] = 401;
}
res_json["message"] = result;
auto output = writer.write(res_json);
res->setBody(output);
callback(res);
}
void saveFile(const HttpRequestPtr &req, std::function<void(const HttpResponsePtr &)> &&callback)
{
auto res = HttpResponse::newHttpResponse();
res->addHeader("Access-Control-Allow-Origin", "*");
Json::Value res_json;
Json::FastWriter writer;
if (jwtVerify(req))
{
auto body = req->getBody();
Json::Value req_json;
Json::Reader reader;
std::string bodyStr(body);
if (!reader.parse(bodyStr, req_json))
{
std::cout << "parse failed" << std::endl;
callback(HttpResponse::newHttpResponse());
return;
}
char *pathvar;
pathvar = getenv("PWD");
std::string filename = req_json["filename"].asString();
std::string content = req_json["content"].asString();
std::string result = shell_commands(("echo '" + content + "'>" + std::string(pathvar) + "/../root/" + filename).c_str());
sql_unlocked(filename);
res_json["code"] = 200;
res_json["message"] = "File save Success";
}
else
{
res_json["code"] = 401;
res_json["message"] = "No Authorization";
}
auto output = writer.write(res_json);
res->setBody(output);
callback(res);
}
void imageUpload(const HttpRequestPtr &req, std::function<void(const HttpResponsePtr &)> &&callback)
{
// used to return the frontend (json value)
Json::Value res_json;
Json::FastWriter writer;
auto resp = HttpResponse::newHttpResponse();
resp->addHeader("Access-Control-Allow-Origin", "*");
if (jwtVerify(req))
{
MultiPartParser fileUpload;
if (fileUpload.parse(req) != 0 || fileUpload.getFiles().size() != 1)
{
// resp->setStatusCode(k403Forbidden);
res_json["code"] = 403;
res_json["message"] = "Must only be one file";
}
else
{
auto &file = fileUpload.getFiles()[0];
auto now = std::chrono::system_clock::now();
auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch()).count();
std::string timestamp = std::to_string(ms) + '.' + std::string(file.getFileExtension());
resp->setBody(timestamp);
file.save();
shell_commands(("mv ./uploads/" + file.getFileName() + " ./uploads/" + timestamp).c_str());
LOG_INFO << "The uploaded file has been saved to the ./uploads "
"directory";
res_json["code"] = 200;
res_json["message"] = "Upload Success";
}
}
else
{
res_json["code"] = 401;
res_json["messsage"] = "No Authorization";
}
auto output = writer.write(res_json);
resp->setBody(output);
callback(resp);
}
void getPicture(const HttpRequestPtr &req, std::function<void(const HttpResponsePtr &)> &&callback)
{
Json::Value res_json;
Json::FastWriter writer;
std::string filename = req->getParameter("filename");
auto resp = HttpResponse::newFileResponse("./uploads/" + filename);
resp->addHeader("Access-Control-Allow-Origin", "*");
if (jwtVerify(req))
{
res_json["code"] = 200;
res_json["message"] = "Picture get success!";
}
else
{
res_json["code"] = 404;
res_json["message"] = "PICTURE NOT FOUND!!!";
}
auto output = writer.write(res_json);
resp->setBody(output);
callback(resp);
}