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
|
/*
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 <book/create.h>
#include <database/bibles.h>
#include <database/versifications.h>
#include <database/books.h>
#include <database/logs.h>
#include <database/config/bible.h>
#include <webserver/request.h>
#include <locale/translate.h>
#include <bb/logic.h>
#include <filter/string.h>
// Creates book template with ID $book in Bible $bible.
// If a $chapter is given instead of -1, it creates that chapter only.
// If the $chapter is -1, it creates all chapters within that book.
bool book_create (const std::string & bible, const book_id book, const int chapter,
std::vector<std::string>& feedback)
{
Database_Versifications database_versifications {};
const std::vector <std::string> bibles = database::bibles::get_bibles ();
if (!in_array (bible, bibles)) {
feedback.push_back (translate("Bible bible does not exist: Cannot create book"));
return false;
}
if (book == book_id::_unknown) {
feedback.push_back (translate("Invalid book while creating a book template"));
return false;
}
// The chapters that have been created.
std::vector <int> chapters_created {};
// The USFM created.
std::string data {};
// Chapter 0.
if (chapter <= 0) {
data = "\\id " + database::books::get_usfm_from_id(book) + "\n";
data += "\\h " + database::books::get_english_from_id (book) + "\n";
data += "\\toc2 " + database::books::get_english_from_id (book) + "\n";
bible_logic::store_chapter (bible, static_cast<int>(book), 0, data);
chapters_created.push_back (0);
}
// Subsequent chapters.
const std::string versification = database::config::bible::get_versification_system (bible);
const std::vector <Passage> versification_data = database_versifications.getBooksChaptersVerses (versification);
for (const auto& row : versification_data) {
if (book == static_cast<book_id>(row.m_book)) {
const int ch = row.m_chapter;
const int verse = filter::strings::convert_to_int (row.m_verse);
if ((chapter < 0) || (chapter == ch)) {
data = "\\c " + std::to_string (ch) + "\n";
data += "\\p\n";
for (int i = 1; i <= verse; i++) {
data += "\\v " + std::to_string (i) + "\n";
}
bible_logic::store_chapter (bible, static_cast<int>(book), ch, data);
chapters_created.push_back (ch);
}
}
}
// Done.
if (chapters_created.size () == 0) {
feedback.push_back (translate("No chapters have been created"));
return false;
}
std::string created;
for (const auto& chapter_created : chapters_created) {
if (!created.empty ()) created.append (" ");
created.append (std::to_string (chapter_created));
}
feedback.push_back (translate("The following chapters have been created:") + " " + created);
return true;
}
|