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
|
/*
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 <export/index.h>
#include <export/web.h>
#include <export/logic.h>
#include <database/bibles.h>
#include <database/logs.h>
#include <database/config/bible.h>
#include <database/state.h>
#include <filter/url.h>
#include <filter/string.h>
#include <filter/roles.h>
void export_index ()
{
std::vector <std::string> bibles = database::bibles::get_bibles ();
// Go through all sub directories of the exports directory.
// Remove subdirectories if their corresponding Bible no longer exists in the system.
std::string directory = export_logic::main_directory ();
std::vector <std::string> files = filter_url_scandir (directory);
for (auto & file : files) {
if (in_array (file, bibles)) continue;
filter_url_rmdir (filter_url_create_path ({directory, file}));
Database_Logs::log ("Removing exported Bible " + file, roles::translator);
}
// Schedule the relevant Bibles for export.
for (auto bible : bibles) {
if (Database_State::getExport (bible, 0, export_logic::export_needed)) {
Database_State::clearExport (bible, 0, export_logic::export_needed);
std::vector <int> books = database::bibles::get_books (bible);
// Book 0 flags export of the whole Bible (this is not relevant to all export types).
books.push_back (0);
for (auto book : books) {
for (int format = export_logic::export_needed + 1; format < export_logic::export_end; format++) {
Database_State::setExport (bible, book, format);
}
}
Database_Logs::log ("Exporting Bible " + bible, roles::translator);
if (database::config::bible::get_export_web_during_night (bible)) {
export_logic::schedule_web (bible, false);
export_logic::schedule_web_index (bible, false);
}
if (database::config::bible::get_export_hml_during_night (bible)) {
export_logic::schedule_html (bible, false);
}
if (database::config::bible::get_export_usfm_during_night (bible)) {
export_logic::schedule_usfm (bible, false);
}
if (database::config::bible::get_export_text_during_night (bible)) {
export_logic::schedule_text_and_basic_usfm (bible, false);
}
if (database::config::bible::get_export_odt_during_night (bible)) {
export_logic::schedule_open_document (bible, false);
}
if (database::config::bible::get_generate_info_during_night (bible)) {
export_logic::schedule_info (bible, false);
}
if (database::config::bible::get_export_e_sword_during_night (bible)) {
export_logic::schedule_e_sword (bible, false);
}
if (database::config::bible::get_export_online_bible_during_night (bible)) {
export_logic::schedule_online_bible (bible, false);
}
}
}
}
|