-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.cpp
More file actions
executable file
·544 lines (480 loc) · 17.9 KB
/
server.cpp
File metadata and controls
executable file
·544 lines (480 loc) · 17.9 KB
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
#include "server.hpp"
#include "ollama_client.hpp"
#include "config.hpp"
#include "commands.hpp"
#include "imagesrv.hpp"
using namespace httplib;
#define ROUTER_POST(uri, handler) m_webSrv->Options(uri, [&](const Request& req, Response& res) {this->handleOptions(req,res);}); \
m_webSrv->Post(uri, [&](const Request& req, Response& res) {handler(req,res);});
#define ROUTER_GET(uri, handler) m_webSrv->Options(uri, [&](const Request& req, Response& res) {this->handleOptions(req,res);}); \
m_webSrv->Get(uri, [&](const Request& req, Response& res) {handler(req,res);});
#define DEFAULT_MODEL "llama3:latest"
//#define OLLAMA_URL "http://127.0.0.1:11434"
std::shared_ptr<ollama_client> server::getClientInstance(const std::string &token)
{
std::lock_guard<std::mutex> lock(this->m_ollamasMapMutex);
auto it = this->m_ollamasMap.find(token);
if (it == this->m_ollamasMap.end())
{
LOG("creating new ollama client");
auto newOllama = std::make_shared<ollama_client>(m_urlChat, m_urlImage, m_urlEmbed);
this->m_ollamasMap[token] = newOllama;
newOllama->accessed();
return newOllama;
}
else
{
LOG("reusing ollama client");
it->second->accessed();
return it->second;
}
}
void server::handleOptions(const httplib::Request &req, httplib::Response &res)
{
res.set_content("", "text/plain");
res.status = 200;
}
void server::handleNewChat(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
std::string token = json_data["token"];
// printf("token: %s \n", token.c_str());
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
//res.set_content("Logged in", "text/plain");
int userID = db->userIDFromToken(token);
int newChatID = db->createChat(userID, 3);
auto strChatID = std::to_string(newChatID);
res.set_content(strChatID.c_str(), "text/plain");
res.status = 200;
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleSingleMessage(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
std::string token = json_data["token"];
std::string reqText = json_data["text"];
// printf("token: %s \n", token.c_str());
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
auto chatHandler = getClientInstance(token);
auto response = chatHandler->processSingleMessage(reqText);
chatHandler->accessed();
res.set_content(response.c_str(), "text/plain");
res.status = 200;
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleLogin(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
std::string username = json_data["name"];
std::string password = json_data["password"];
// printf("login: %s %s\n", username.c_str(), password.c_str());
auto db = std::make_unique<pgdb>();
if(db->auth(username, password))
{
std::string randomWords = generateString(10);
std::string uniqueToken = hashString(randomWords);
db->saveToken(username, uniqueToken);
server::setCookie(res, "token", uniqueToken);
res.set_content(uniqueToken.c_str(), "text/plain");
res.status = 200;
}
else
{
res.set_content("Wrong login-password combination", "text/plain");
res.status = 404;
}
}
void server::handleLoginToken(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
std::string token = json_data["token"];
// printf("token: %s \n", token.c_str());
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
res.set_content("Logged in", "text/plain");
server::setCookie(res, "token", token);
res.status = 200;
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleGetUsername(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
std::string token = json_data["token"];
// printf("token: %s \n", token.c_str());
auto db = std::make_unique<pgdb>();
res.set_content(db->usernameFromToken(token), "text/plain");
res.status = 200;
}
void server::handleChatLists(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
std::string token = json_data["token"];
// printf("token: %s \n", token.c_str());
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
int userID = db->userIDFromToken(token);
auto list = db->getChatIdsForUser(userID);
json response_json = {};
response_json = list;
res.set_content(response_json.dump(), "text/plain");
res.status = 200;
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleChatMessage(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
// printf("json_data: %s \n", json_data.dump().c_str());
std::string token = json_data["token"];
int chatID = json_data["chatID"];
std::string incomingMessage = json_data["message"];
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
int userID = db->userIDFromToken(token);
auto list = db->getChatIdsForUser(userID);
auto it = std::find(list.begin(), list.end(), chatID);
if (it != list.end())
{
std::string response = {};
std::string filename = {};
auto chatHandler = getClientInstance(token);
auto chatHistory = db->getChatMessages(chatID, userID);
if(json_data.contains("image") && json_data["image"].get<std::string>().length() > 0)
{
//img2txt logic
std::string imageB64 = json_data["image"];
LOG("processing img2txt request");
response = chatHandler->processChatMessageWithImage(incomingMessage, imageB64);
}
else if(json_data.contains("doc"))
{
//embed logic
std::string docName = json_data["doc"];
std::string vecData = db->getDoc(userID, docName);
LOG("processing embeded request");
response = chatHandler->processChatMessageWithEmbed(incomingMessage, vecData, chatHistory);
}
else
{
LOG("processing regular request");
// disabled for now... LLMs are not good with command processing...
auto incomingCommand = chatHandler->processMessageWithCommandHandler(incomingMessage);
LOG("command: {}", incomingCommand);
bool llmPostProcessing = false;
auto commandResponse = g_cmd->executeCommand(incomingCommand, llmPostProcessing);
if(commandResponse.first.length() > 0)
{
if(llmPostProcessing)
{
std::string incomingMessageExt = "Tool: \"" + commandResponse.first + "\" responded: \"" + commandResponse.second +
"\". If it is relevant to the prompt, you can use this information in your answer. Prompt: " + incomingMessage;
response = chatHandler->processChatMessage(incomingMessageExt, chatHistory);
}
else
{
if(commandResponse.first == "GENIMG" || commandResponse.first == "GENAUDIO")
{
auto username = db->usernameFromToken(token);
std::string destinationExt = ".png";
if(commandResponse.first == "GENAUDIO")
destinationExt = ".wav";
std::string generatedFilename = hashString( generateString(6) + currentTime("%d-%m-%Y %H-%M-%S") ) + destinationExt;
std::string destinationPath = g_config->getValue<std::string>("comfy.fs_location") + "output/" + username + "/" + generatedFilename;
std::string sourcePath = commandResponse.second;
try
{
std::filesystem::path destFs = destinationPath;
std::filesystem::path sourceFs = sourcePath;
std::filesystem::create_directories(destFs.parent_path());
std::filesystem::rename(sourceFs, destFs);
LOG("file moved to {}", destinationPath);
}
catch (const std::filesystem::filesystem_error& e)
{
ERRLOG("Error moving file: {}", e.what());
return;
}
filename = generatedFilename;
}
else
{
response = commandResponse.second;
}
}
}
else
{
response = chatHandler->processChatMessage(incomingMessage, chatHistory);
}
// response = chatHandler->processChatMessage(incomingMessage, chatHistory);
}
db->storeMessage(chatID, userID, incomingMessage);
db->storeMessage(chatID, 3, response, filename);
json resJ;
resJ["text"] = response;
resJ["image"] = filename;
res.set_content(resJ.dump().c_str(), "text/plain");
res.status = 200;
}
else
{
ERRLOG("unauthorized chat access");
res.set_content("unauthorized access", "text/plain");
res.status = 500;
}
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleDeleteChat(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
std::string token = json_data["token"];
int chatID = json_data["chatID"];
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
int userID = db->userIDFromToken(token);
auto list = db->getChatIdsForUser(userID);
auto it = std::find(list.begin(), list.end(), chatID);
if (it != list.end())
{
db->removeChatById(chatID);
res.set_content("", "text/plain");
res.status = 200;
return;
}
else
{
ERRLOG("unauthorized chat access");
res.set_content("unauthorized access", "text/plain");
res.status = 500;
}
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleCreateEmbed(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
// printf("json_data: %s \n", json_data.dump().c_str());
std::string token = json_data["token"];
std::string emName = json_data["docname"];
std::string textData = json_data["content"];
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
int userID = db->userIDFromToken(token);
auto chatHandler = getClientInstance(token);
auto docs = split(textData, '\n', 450);
std::vector<std::vector<float>> vecDocs = {};
for(auto& doc: docs)
{
vecDocs.push_back(chatHandler->processNewEmbedding(doc));
}
auto vecDB = m_ragHelper->createNewDoc(emName, vecDocs);
db->saveDoc(userID, emName, textData);
res.set_content("", "text/plain");
res.status = 200;
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleGetEmbeds(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
// printf("json_data: %s \n", json_data.dump().c_str());
std::string token = json_data["token"];
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
int userID = db->userIDFromToken(token);
auto list = db->getUserDocs(userID);
json response_json = {};
response_json["embeds"] = list;
res.set_content(response_json.dump(), "text/plain");
res.status = 200;
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleGetModels(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
// printf("json_data: %s \n", json_data.dump().c_str());
std::string token = json_data["token"];
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
auto chatHandler = getClientInstance(token);
auto ret = chatHandler->processListModels();
res.set_content(ret, "text/plain");
res.status = 200;
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
void server::handleGeneratedImages(const httplib::Request & req, httplib::Response & res)
{
g_imagesrv->requestFile(req, res);
}
void server::handleChat(const httplib::Request &req, httplib::Response &res)
{
std::string body = req.body;
json json_data = json::parse(body);
// printf("json_data: %s \n", json_data.dump().c_str());
std::string token = json_data["token"];
int chatID = json_data["chatID"];
auto db = std::make_unique<pgdb>();
if(db->auth(token))
{
int userID = db->userIDFromToken(token);
auto list = db->getChatIdsForUser(userID);
auto it = std::find(list.begin(), list.end(), chatID);
if (it != list.end())
{
auto msgsArray = db->getChatMessagesWithImgs(chatID, userID);
json response_json = {};
response_json = json::array();
for(auto& x : msgsArray)
{
response_json.push_back({{"text", x.msg}, {"local", x.isLocal}, {"image", x.imgUri}});
}
res.set_content(response_json.dump(), "text/plain");
res.status = 200;
}
else
{
ERRLOG("unauthorized chat access");
res.status = 401;
res.set_content("Unauthorized", "text/plain");
}
}
else
{
res.set_content("Unknown token", "text/plain");
res.status = 404;
}
}
server::server(std::string address, int port) : m_webSrv(std::make_unique<httplib::Server>()), m_database(std::make_unique<pgdb>()), m_ragHelper(std::make_unique<rag>())
{
m_bindAddress = address;
m_listenPort = port;
m_urlChat = g_config->getValue<std::string>("ollama.chat.base_url");
m_urlEmbed = g_config->getValue<std::string>("ollama.embed.base_url");
m_urlImage = g_config->getValue<std::string>("ollama.image.base_url");
}
server::~server()
{
}
void server::listen()
{
//for CORS we need to handle OPTIONS - return 200. Headers are set by default
ROUTER_POST("/login", this->handleLogin);
ROUTER_POST("/loginToken", this->handleLoginToken);
ROUTER_POST("/getUsername", this->handleGetUsername);
ROUTER_POST("/createChat", this->handleNewChat);
ROUTER_POST("/singleMessage", this->handleSingleMessage);
ROUTER_POST("/getChats", this->handleChatLists);
ROUTER_POST("/getChat", this->handleChat);
ROUTER_POST("/chatMessage", this->handleChatMessage);
ROUTER_POST("/deleteChat", this->handleDeleteChat);
ROUTER_POST("/createEmbed", this->handleCreateEmbed);
ROUTER_POST("/getEmbeds", this->handleGetEmbeds);
ROUTER_POST("/getModels", this->handleGetModels);
ROUTER_GET("/images/(.*)/(.*)", this->handleGeneratedImages);
m_webSrv->set_default_headers({
{ "Access-Control-Allow-Origin", "*" },
{ "Access-Control-Allow-Methods", "GET, POST, PATCH, PUT, DELETE, OPTIONS" },
{ "Access-Control-Allow-Headers", "Origin, Content-Type, X-Auth-Token" }
});
m_webSrv->listen(m_bindAddress, m_listenPort);
}
void server::setCookie(httplib::Response &res, const std::string &name, const std::string &value, int maxAge, bool httpOnly)
{
std::string cookie = name + "=" + value + "; Max-Age=" + std::to_string(maxAge);
if (httpOnly)
{
cookie += "; HttpOnly";
}
res.set_header("Set-Cookie", cookie);
}
std::string server::getCookie(const httplib::Request &req, const std::string &name)
{
std::string result;
if (req.has_header("Cookie"))
{
std::string cookieHeader = req.get_header_value("Cookie");
std::istringstream cookieStream(cookieHeader);
std::string pair;
while (std::getline(cookieStream, pair, ';'))
{
size_t pos = pair.find('=');
if (pos != std::string::npos)
{
std::string key = pair.substr(0, pos);
std::string value = pair.substr(pos + 1);
key.erase(0, key.find_first_not_of(" "));
key.erase(key.find_last_not_of(" ") + 1);
if (key == name)
{
result = value;
break;
}
}
}
}
return result;
}