mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
148 lines
5.1 KiB
C++
148 lines
5.1 KiB
C++
#include "synccontroller_v2.h"
|
|
|
|
#include "QsLog.h"
|
|
#include <QUrl>
|
|
|
|
#include "comic_db.h"
|
|
#include "db_helper.h"
|
|
#include "yacreader_libraries.h"
|
|
#include "yacreader_server_data_helper.h"
|
|
|
|
using stefanfrings::HttpRequest;
|
|
using stefanfrings::HttpResponse;
|
|
|
|
SyncControllerV2::SyncControllerV2()
|
|
{
|
|
}
|
|
|
|
void SyncControllerV2::service(HttpRequest &request, HttpResponse &response)
|
|
{
|
|
response.setHeader("Content-Type", "text/plain; charset=utf-8");
|
|
|
|
QString postData = QString::fromUtf8(request.getBody());
|
|
|
|
QLOG_TRACE() << "POST DATA: " << postData;
|
|
|
|
if (postData.length() > 0) {
|
|
QList<QString> data = postData.split("\n");
|
|
|
|
qulonglong libraryId;
|
|
qulonglong comicId;
|
|
int currentPage;
|
|
int currentRating;
|
|
unsigned long long lastTimeOpened;
|
|
QString hash;
|
|
QMap<qulonglong, QList<ComicInfo>> comics;
|
|
QList<ComicInfo> comicsWithNoLibrary;
|
|
|
|
auto libraries = DBHelper::getLibraries();
|
|
|
|
foreach (QString comicInfo, data) {
|
|
QList<QString> comicInfoProgress = comicInfo.split("\t");
|
|
|
|
if (comicInfoProgress.length() >= 8) {
|
|
if (comicInfoProgress.at(0) != "u") {
|
|
continue;
|
|
}
|
|
|
|
auto libraryUuid = QUuid(comicInfoProgress.at(1));
|
|
if (!libraryUuid.isNull()) {
|
|
auto libraryId = libraries.getIdFromUuid(libraryUuid);
|
|
if (libraryId == -1) {
|
|
continue;
|
|
}
|
|
comicId = comicInfoProgress.at(2).toULongLong();
|
|
hash = comicInfoProgress.at(3);
|
|
currentPage = comicInfoProgress.at(4).toInt();
|
|
|
|
ComicInfo info;
|
|
info.currentPage = currentPage;
|
|
info.hash = hash; // TODO remove the hash check and add UUIDs for libraries
|
|
info.id = comicId;
|
|
|
|
currentRating = comicInfoProgress.at(5).toInt();
|
|
info.rating = currentRating;
|
|
|
|
lastTimeOpened = comicInfoProgress.at(6).toULong();
|
|
info.lastTimeOpened = lastTimeOpened;
|
|
|
|
info.read = comicInfoProgress.at(7).toInt();
|
|
|
|
if (!comics.contains(libraryId)) {
|
|
comics[libraryId] = QList<ComicInfo>();
|
|
}
|
|
comics[libraryId].push_back(info);
|
|
}
|
|
} else if (comicInfoProgress.length() >= 6) {
|
|
if (comicInfoProgress.at(0) != "unknown") {
|
|
libraryId = comicInfoProgress.at(0).toULongLong();
|
|
comicId = comicInfoProgress.at(1).toULongLong();
|
|
hash = comicInfoProgress.at(2);
|
|
currentPage = comicInfoProgress.at(3).toInt();
|
|
|
|
ComicInfo info;
|
|
info.currentPage = currentPage;
|
|
info.hash = hash; // TODO remove the hash check and add UUIDs for libraries
|
|
info.id = comicId;
|
|
|
|
currentRating = comicInfoProgress.at(4).toInt();
|
|
info.rating = currentRating;
|
|
|
|
lastTimeOpened = comicInfoProgress.at(5).toULong();
|
|
info.lastTimeOpened = lastTimeOpened;
|
|
|
|
if (comicInfoProgress.length() >= 7) {
|
|
info.read = comicInfoProgress.at(6).toInt();
|
|
}
|
|
|
|
if (!comics.contains(libraryId)) {
|
|
comics[libraryId] = QList<ComicInfo>();
|
|
}
|
|
comics[libraryId].push_back(info);
|
|
} else {
|
|
hash = comicInfoProgress.at(2);
|
|
currentPage = comicInfoProgress.at(3).toInt();
|
|
|
|
ComicInfo info;
|
|
info.currentPage = currentPage;
|
|
info.hash = hash;
|
|
|
|
currentRating = comicInfoProgress.at(4).toInt();
|
|
info.rating = currentRating;
|
|
|
|
lastTimeOpened = comicInfoProgress.at(5).toULong();
|
|
info.lastTimeOpened = lastTimeOpened;
|
|
|
|
comicsWithNoLibrary.push_back(info);
|
|
}
|
|
}
|
|
}
|
|
|
|
QJsonArray items;
|
|
|
|
if (!comics.isEmpty()) {
|
|
auto moreRecentComicsFound = DBHelper::updateFromRemoteClient(comics);
|
|
|
|
foreach (qulonglong libraryId, moreRecentComicsFound.keys()) {
|
|
auto libraryUuid = DBHelper::getLibraries().getLibraryIdFromLegacyId(libraryId);
|
|
|
|
foreach (ComicDB comic, moreRecentComicsFound[libraryId]) {
|
|
items.append(YACReaderServerDataHelper::comicToJSON(libraryId, libraryUuid, comic));
|
|
}
|
|
}
|
|
}
|
|
|
|
QJsonDocument output(items);
|
|
|
|
response.write(output.toJson(QJsonDocument::Compact), true);
|
|
|
|
// TODO does it make sense to send these back? The source is not YACReaderLibrary...
|
|
DBHelper::updateFromRemoteClientWithHash(comicsWithNoLibrary);
|
|
|
|
} else {
|
|
response.setStatus(412, "No comic info received");
|
|
response.write("[]", true);
|
|
return;
|
|
}
|
|
}
|