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
|
/*
Copyright (©) 2003-2025 Teus Benschop.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <sync/usfmresources.h>
#include <filter/url.h>
#include <filter/roles.h>
#include <filter/string.h>
#include <filter/merge.h>
#include <tasks/logic.h>
#include <database/config/general.h>
#include <database/config/bible.h>
#include <database/logs.h>
#include <database/usfmresources.h>
#include <database/books.h>
#include <database/mail.h>
#include <database/modifications.h>
#include <client/logic.h>
#include <locale/translate.h>
#include <webserver/request.h>
#include <sync/logic.h>
#include <checksum/logic.h>
#include <access/bible.h>
#include <bb/logic.h>
std::string sync_usfmresources_url ()
{
return "sync/usfmresources";
}
std::string sync_usfmresources (Webserver_Request& webserver_request)
{
Sync_Logic sync_logic (webserver_request);
Database_UsfmResources database_usfmresources = Database_UsfmResources ();
if (!sync_logic.security_okay ()) {
// When the Cloud enforces https, inform the client to upgrade.
webserver_request.response_code = 426;
return std::string();
}
int action = filter::strings::convert_to_int (webserver_request.post_get("a"));
std::string resource = webserver_request.post_get("r");
int book = filter::strings::convert_to_int (webserver_request.post_get("b"));
int chapter = filter::strings::convert_to_int (webserver_request.post_get("c"));
if (action == Sync_Logic::usfmresources_get_total_checksum) {
return Sync_Logic::usfm_resources_checksum ();
}
else if (action == Sync_Logic::usfmresources_get_resources) {
std::vector <std::string> resources = database_usfmresources.getResources ();
return filter::strings::implode (resources, "\n");
}
else if (action == Sync_Logic::usfmresources_get_resource_checksum) {
return Sync_Logic::usfm_resource_checksum (resource);
}
else if (action == Sync_Logic::usfmresources_get_books) {
std::vector <int> resource_books = database_usfmresources.getBooks (resource);
std::vector <std::string> sbooks;
for (auto & resource_book : resource_books) sbooks.push_back (std::to_string (resource_book));
return filter::strings::implode (sbooks, "\n");
}
else if (action == Sync_Logic::usfmresources_get_book_checksum) {
return Sync_Logic::usfm_resource_book_checksum (resource, book);
}
else if (action == Sync_Logic::usfmresources_get_chapters) {
std::vector <int> res_chapters = database_usfmresources.getChapters (resource, book);
std::vector <std::string> s_chapters;
for (auto & res_chapter : res_chapters) s_chapters.push_back (std::to_string (res_chapter));
return filter::strings::implode (s_chapters, "\n");
}
else if (action == Sync_Logic::usfmresources_get_chapter_checksum) {
return Sync_Logic::usfm_resource_chapter_checksum (resource, book, chapter);
}
else if (action == Sync_Logic::usfmresources_get_chapter) {
return database_usfmresources.getUsfm (resource, book, chapter);
}
// Bad request. Delay flood of bad requests.
std::this_thread::sleep_for (std::chrono::seconds (1));
webserver_request.response_code = 400;
return std::string();
}
|