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
|
/*
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 <consistency/logic.h>
#include <filter/string.h>
#include <filter/usfm.h>
#include <database/styles.h>
#include <database/temporal.h>
#include <database/config/bible.h>
#include <resource/logic.h>
#include <webserver/request.h>
#include <access/bible.h>
#include <locale/translate.h>
Consistency_Logic::Consistency_Logic (Webserver_Request& webserver_request, int id) :
m_webserver_request (webserver_request), m_id (id)
{
}
std::string Consistency_Logic::response ()
{
// The resources to display in the Consistency tool.
std::vector <std::string> resources = m_webserver_request.database_config_user()->get_consistency_resources ();
std::string bible = access_bible::clamp (m_webserver_request, m_webserver_request.database_config_user()->get_bible ());
resources.insert (resources.begin (), bible);
// The passages entered in the Consistency tool.
std::string s_passages = database::temporal::get_value (m_id, "passages");
s_passages = filter::strings::trim (s_passages);
std::vector <std::string> passages = filter::strings::explode (s_passages, '\n');
// The translations entered in the Consistency tool.
std::string s_translations = database::temporal::get_value (m_id, "translations");
s_translations = filter::strings::trim (s_translations);
std::vector <std::string> translations = filter::strings::explode (s_translations, '\n');
// Contains the response to display.
std::vector <std::string> response;
// Go through the passages interpreting them.
Passage previousPassage = Passage ("", 1, 1, "1");
for (auto line : passages) {
// Clean line.
line = filter::strings::trim (line);
// Skip empty line.
if (line.empty ()) continue;
// Remove verse text remaining with the passage(s) only.
line = omit_verse_text (line);
std::vector <std::string> range_sequence = filter_passage_handle_sequences_ranges (line);
for (auto line2 : range_sequence) {
Passage passage = filter_passage_interpret_passage (previousPassage, line2);
if (passage.m_book != 0) {
int book = passage.m_book;
int chapter = passage.m_chapter;
std::string verse = passage.m_verse;
line2 = filter_passage_link_for_opening_editor_at (book, chapter, verse);
line2 += " ";
// Check whether the chapter identifier has changed for this reference.
// If so, set a flag so the data can be re-assembled for this verse.
// If there was no change, then the data can be fetched from the volatile database.
bool redoPassage = false;
std::string passageKey = std::to_string (book) + "." + std::to_string (chapter) + "." + verse;
int currentChapterId = database::bibles::get_chapter_id (resources [0], book, chapter);
int storedChapterId = filter::strings::convert_to_int (database::temporal::get_value (m_id, passageKey + ".id"));
if (currentChapterId != storedChapterId) {
database::temporal::set_value (m_id, passageKey + ".id", std::to_string (currentChapterId));
redoPassage = true;
}
// Go through each resource.
for (auto resource : resources) {
// Produce new verse text if the passage is to be redone, or else fetch the existing text.
std::string text;
if (redoPassage) {
text = verseText (resource, book, chapter, filter::strings::convert_to_int (verse));
size_t length1 = text.size ();
if (!translations.empty ()) {
text = filter::strings::markup_words (translations, text);
}
size_t length2 = text.size ();
if (length2 == length1) {
text.insert (0, R"(<div style="background-color: yellow;">)");
text.append ("</div>");
}
database::temporal::set_value (m_id, passageKey + "." + resource, text);
} else {
text = database::temporal::get_value (m_id, passageKey + "." + resource);
}
// Formatting.
if (resources.size () > 1) {
line2 += "<br>";
}
line2 += text;
}
response.push_back (line2);
previousPassage = passage;
} else {
response.push_back (R"(<span class="error">)" + translate("Unknown passage") + " " + line2 + "</span>");
}
}
}
std::string output;
for (auto line : response) {
output += "<div>" + line + "</div>\n";
}
return output;
}
std::string Consistency_Logic::verseText (std::string resource, int book, int chapter, int verse)
{
return resource_logic_get_html (m_webserver_request, resource, book, chapter, verse, false);
}
// This function omits the verse text from a line of text from the search results.
std::string Consistency_Logic::omit_verse_text (std::string input)
{
// Imagine the following $input:
// 1 Peter 4:17 For the time has come for judgment to begin with the household of God. If it begins first with us, what will happen to those who don’t obey the Good News of God?
// The purpose of this function is to extract "1 Peter 4:17" from it, and leave the rest out.
// This is done by leaving out everything after the last numeral.
size_t length = filter::strings::unicode_string_length (input);
size_t last_numeral = 0;
for (size_t i = 0; i < length; i++) {
std::string character = filter::strings::unicode_string_substr (input, i, 1);
if (filter::strings::is_numeric (character)) {
last_numeral = i;
}
}
last_numeral++;
input = filter::strings::unicode_string_substr (input, 0, last_numeral);
return input;
}
|