-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigManager.cpp
More file actions
463 lines (363 loc) · 12.3 KB
/
Copy pathConfigManager.cpp
File metadata and controls
463 lines (363 loc) · 12.3 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
#include "ConfigManager.h"
#include <iostream>
#include <filesystem>
#include <fstream>
#include <QDebug>
#include "CitraholdServer.h"
ConfigManager::ConfigManager()
{
// Constructor: Initialise the directory paths based on the platform
initialise();
}
std::filesystem::path ConfigManager::getSaveDirectory() const
{
return saveDirectory;
}
std::filesystem::path ConfigManager::getLikelyCitraDirectory(UploadType type)
{
std::filesystem::path directory = citraDirectory;
if (type == UploadType::SAVES)
{
directory /= "title";
}
else
{
directory /= "extdata";
}
return directory;
}
void ConfigManager::setToken(QString token)
{
QJsonDocument config = getConfig();
QJsonObject configObject = config.object();
configObject["token"] = token;
config = QJsonDocument(configObject);
updateConfigFile(config);
}
QJsonDocument ConfigManager::getConfig()
{
std::filesystem::path filePath = saveDirectory / "config.json";
std::fstream file(filePath, std::ios::in | std::ios::out);
if (!file)
{
file.open(filePath, std::ios::out);
QJsonObject json;
json["serverAddress"] = "https://api.citrahold.com";
json["token"] = "invalid";
json["_note"] = "keep your token private!";
json["defaultCitraDirectory"] = QString(citraDirectory.string().c_str());
json["lastUploadedGameID"] = "";
json["lastDownloadedGameID"] = "";
json["lastType"] = "SAVES";
json["lastMode"] = "UPLOAD";
QJsonDocument jsonDoc(json);
QString jsonString = jsonDoc.toJson();
file << jsonString.toStdString();
file.close();
return jsonDoc;
}
else
{
file.seekp(0);
std::string fileContents((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
file.close();
return QJsonDocument::fromJson(fileContents.c_str());
}
}
QDateTime ConfigManager::getLastDownloadTime(UploadType type, QString gameID) {
QJsonObject gameIDFileAsObject = getGameIDFile(type).object();
QJsonArray gameIDArray = gameIDFileAsObject["gameID"].toArray();
for (int i = 0; i < gameIDArray.size(); ++i)
{
QJsonValue value = gameIDArray.at(i);
if (gameID == value[0].toString())
{
return QDateTime::fromString(value[3].toString(), Qt::ISODate);
}
}
return QDateTime::fromString("1970-01-01T00:00:00", Qt::ISODate);
}
void ConfigManager::setLastDownloadTime(UploadType type, QString gameID, QDateTime time) {
QJsonDocument gameIDFile = getGameIDFile(type);
QJsonArray gameIDArray = gameIDFile["gameID"].toArray();
for (int i = 0; i < gameIDArray.size(); ++i)
{
QJsonValue value = gameIDArray.at(i);
if (gameID == value[0].toString())
{
QJsonArray newEntry;
newEntry.append(value[0].toString());
newEntry.append(value[1].toString());
newEntry.append(value[2].toString());
newEntry.append(time.toString(Qt::ISODate));
gameIDArray.replace(i, newEntry);
break;
}
}
QJsonObject gameIDFileAsObject = gameIDFile.object();
gameIDFileAsObject["gameID"] = gameIDArray;
gameIDFile = QJsonDocument(gameIDFileAsObject);
updateGameIDFile(type, gameIDFile);
}
QJsonDocument ConfigManager::getGameIDFile(UploadType type)
{
std::filesystem::path filePath = saveDirectory / (type == UploadType::SAVES ? "gameIDSaves.json" : "gameIDExtdata.json");
std::fstream file(filePath, std::ios::in | std::ios::out);
if (!file)
{
file.open(filePath, std::ios::out);
QJsonObject json;
json["gameID"] = QJsonArray();
QJsonDocument jsonDoc(json);
QString jsonString = jsonDoc.toJson();
file << jsonString.toStdString();
file.close();
return jsonDoc;
}
else
{
file.seekp(0);
std::string fileContents((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
file.close();
QJsonDocument fileAsObject = QJsonDocument::fromJson(fileContents.c_str());
return fileAsObject;
}
}
void ConfigManager::updateGameIDFile(UploadType type, QJsonDocument newFile)
{
std::filesystem::path filePath = saveDirectory / (type == UploadType::SAVES ? "gameIDSaves.json" : "gameIDExtdata.json");
std::ofstream file(filePath);
if (file.is_open())
{
QString jsonString = newFile.toJson();
file << jsonString.toStdString();
file.close();
}
else
{
qDebug() << "Failed to open the file for writing.";
}
}
void ConfigManager::updateConfigProperty(QString property, QJsonValue value)
{
QJsonDocument config = getConfig();
QJsonObject configObject = config.object();
configObject[property] = value;
config = QJsonDocument(configObject);
updateConfigFile(config);
}
QString ConfigManager::getConfigProperty(QString property)
{
QJsonDocument config = getConfig();
QJsonObject configObject = config.object();
return configObject[property].toString();
}
void ConfigManager::addEntryToGameIDFile(UploadType type, QString gameID, QString gameName)
{
QJsonDocument gameIDFile = getGameIDFile(type);
QJsonArray gameIDArray = gameIDFile["gameID"].toArray();
qDebug() << gameID;
if (getGamePathFromGameID(type, gameID.trimmed()) != "")
{
qDebug() << "Game ID already exists!";
return;
}
QJsonArray newEntry;
newEntry.append(gameID.trimmed());
newEntry.append(gameName.trimmed());
gameIDArray.append(newEntry);
QJsonObject gameIDFileAsObject = gameIDFile.object();
gameIDFileAsObject["gameID"] = gameIDArray;
gameIDFile = QJsonDocument(gameIDFileAsObject);
updateGameIDFile(type, gameIDFile);
}
void ConfigManager::updateConfigFile(QJsonDocument newConfig)
{
std::filesystem::path filePath = saveDirectory / "config.json";
std::ofstream file(filePath);
if (file.is_open())
{
QString jsonString = newConfig.toJson();
file << jsonString.toStdString();
file.close();
}
else
{
qDebug() << "Failed to open the file for writing.";
}
}
void ConfigManager::initialise()
{
// Initialise the directory paths based on the platform
#ifdef _WIN32
// Windows
saveDirectory = std::getenv("APPDATA");
saveDirectory /= "Citrahold";
citraDirectory = std::getenv("APPDATA");
citraDirectory /= "Citra";
#elif __APPLE__
// macOS
saveDirectory = std::getenv("HOME");
saveDirectory /= ".config";
saveDirectory /= "Citrahold";
citraDirectory = std::getenv("HOME");
citraDirectory /= "Library";
citraDirectory /= "Application Support";
citraDirectory /= "Citra";
#else
// Assume all other platforms are Linux
saveDirectory = std::getenv("HOME");
saveDirectory /= ".config";
saveDirectory /= "Citrahold";
citraDirectory = std::getenv("HOME");
citraDirectory /= ".local";
citraDirectory /= "share";
citraDirectory /= "citra-emu";
#endif
citraDirectory /= "sdmc";
citraDirectory /= "Nintendo 3DS";
citraDirectory /= "00000000000000000000000000000000";
citraDirectory /= "00000000000000000000000000000000";
if (!std::filesystem::exists(saveDirectory))
{
std::filesystem::create_directories(saveDirectory);
}
if (!std::filesystem::exists(saveDirectory / "oldSaves"))
{
std::filesystem::create_directories(saveDirectory / "oldSaves");
}
if (!std::filesystem::exists(saveDirectory / "oldExtdata"))
{
std::filesystem::create_directories(saveDirectory / "oldExtdata");
}
if (!std::filesystem::exists(citraDirectory))
{
citraDirectory = ""; // Return an empty path if the Citra directory doesn't exist
}
QJsonDocument config = getConfig();
if (getConfigProperty("defaultCitraDirectory").toStdString() != citraDirectory)
{
citraDirectory = std::filesystem::path(getConfigProperty("defaultCitraDirectory").toStdString());
}
getGameIDFile(UploadType::EXTDATA);
getGameIDFile(UploadType::SAVES);
}
std::filesystem::path ConfigManager::getGamePathFromGameID(UploadType type, QString gameID)
{
QJsonObject gameIDFileAsObject = getGameIDFile(type).object();
QJsonArray gameIDArray = gameIDFileAsObject["gameID"].toArray();
for (int i = 0; i < gameIDArray.size(); ++i)
{
QJsonValue value = gameIDArray.at(i);
if (gameID == value[0].toString())
{
return std::filesystem::path(value[1].toString().toStdString());
}
}
return "";
}
QDateTime ConfigManager::getLastUploadTime(UploadType type, QString gameID) {
QJsonObject gameIDFileAsObject = getGameIDFile(type).object();
QJsonArray gameIDArray = gameIDFileAsObject["gameID"].toArray();
for (int i = 0; i < gameIDArray.size(); ++i)
{
QJsonValue value = gameIDArray.at(i);
if (gameID == value[0].toString())
{
return QDateTime::fromString(value[2].toString(), Qt::ISODate);
}
}
return QDateTime::fromString("1970-01-01T00:00:00", Qt::ISODate);
}
void ConfigManager::setLastUploadTime(UploadType type, QString gameID, QDateTime time) {
QJsonDocument gameIDFile = getGameIDFile(type);
QJsonArray gameIDArray = gameIDFile["gameID"].toArray();
for (int i = 0; i < gameIDArray.size(); ++i)
{
QJsonValue value = gameIDArray.at(i);
if (gameID == value[0].toString())
{
QJsonArray newEntry;
newEntry.append(value[0].toString());
newEntry.append(value[1].toString());
newEntry.append(time.toString(Qt::ISODate));
newEntry.append(value[3].toString());
gameIDArray.replace(i, newEntry);
break;
}
}
QJsonObject gameIDFileAsObject = gameIDFile.object();
gameIDFileAsObject["gameID"] = gameIDArray;
gameIDFile = QJsonDocument(gameIDFileAsObject);
updateGameIDFile(type, gameIDFile);
}
QString ConfigManager::getToken()
{
return getConfig()["token"].toString();
}
bool ConfigManager::loggedIn()
{
return userID != "invalid";
}
bool ConfigManager::copyDirectory(const std::filesystem::path &source, const std::filesystem::path &destination)
{
try
{
if (!std::filesystem::exists(source) || !std::filesystem::is_directory(source))
{
qDebug() << "Source directory doesn't exist or is not a directory.";
return false;
}
if (!std::filesystem::exists(destination))
{
if (!std::filesystem::create_directories(destination))
{
qDebug() << "Failed to create the destination directory.";
return false;
}
}
for (const auto &entry : std::filesystem::directory_iterator(source))
{
const std::filesystem::path entryPath = entry.path();
const std::filesystem::path destinationPath = destination / entryPath.filename();
if (std::filesystem::is_directory(entryPath))
{
if (!copyDirectory(entryPath, destinationPath))
{
return false;
}
}
else if (std::filesystem::is_regular_file(entryPath))
{
std::filesystem::copy_file(entryPath, destinationPath, std::filesystem::copy_options::overwrite_existing);
}
}
}
catch (const std::exception &e)
{
std::cerr << "An error occurred: " << e.what() << std::endl;
return false;
}
return true;
}
std::filesystem::path ConfigManager::getOldSaveDirectory(UploadType type) const
{
return saveDirectory / ((type == UploadType::SAVES) ? "oldSaves" : "oldExtdata");
}
void ConfigManager::removeEntryFromGameIDFile(UploadType type, QString gameID) {
QJsonDocument gameIDFile = getGameIDFile(type);
QJsonArray gameIDArray = gameIDFile["gameID"].toArray();
for (int i = 0; i < gameIDArray.size(); ++i)
{
QJsonValue value = gameIDArray.at(i);
if (gameID == value[0].toString())
{
gameIDArray.removeAt(i);
break;
}
}
QJsonObject gameIDFileAsObject = gameIDFile.object();
gameIDFileAsObject["gameID"] = gameIDArray;
gameIDFile = QJsonDocument(gameIDFileAsObject);
updateGameIDFile(type, gameIDFile);
}