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 <edit/position.h>
#include <filter/roles.h>
#include <filter/string.h>
#include <filter/usfm.h>
#include <webserver/request.h>
#include <ipc/focus.h>
#include <editor/usfm2html.h>
#include <access/bible.h>
#include <database/config/bible.h>
std::string edit_position_url ()
{
return "edit/position";
}
bool edit_position_acl (Webserver_Request& webserver_request)
{
if (roles::access_control (webserver_request, roles::translator))
return true;
auto [ read, write ] = access_bible::any (webserver_request);
return write;
}
std::string edit_position (Webserver_Request& webserver_request)
{
// Get Bible: If an empty Bible is given, bail out.
const std::string bible = webserver_request.query ["bible"];
if (bible.empty ())
return std::string();
// Get book: If no book is given: Bail out.
const int book = filter::strings::convert_to_int (webserver_request.query ["book"]);
if (!book) return std::string();
// Get chapter.
const int chapter = filter::strings::convert_to_int (webserver_request.query ["chapter"]);
const std::string stylesheet = database::config::bible::get_editor_stylesheet (bible);
const std::string usfm = database::bibles::get_chapter (bible, book, chapter);
const int verse = Ipc_Focus::getVerse (webserver_request);
Editor_Usfm2Html editor_usfm2html;
editor_usfm2html.load (usfm);
editor_usfm2html.stylesheet (stylesheet);
editor_usfm2html.run ();
int starting_offset = 0;
int ending_offset = 0;
// To deal with a combined verse, go through the offsets, and pick the correct one.
for (auto element : editor_usfm2html.m_verse_start_offsets) {
const int vs = element.first;
const int offset = element.second;
if (vs <= verse)
starting_offset = offset;
if (ending_offset == 0) {
if (vs > verse) {
ending_offset = offset;
}
}
}
if (verse) {
starting_offset += static_cast<int> (std::to_string (verse).length () + 1);
}
if (ending_offset) {
ending_offset--;
} else {
ending_offset = static_cast<int>(editor_usfm2html.m_text_tength);
}
std::string data = std::to_string (starting_offset);
data.append ("\n");
data.append (std::to_string (ending_offset));
return data;
}
|