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 161 162 163 164 165
|
/*
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 <workspace/index.h>
#include <assets/view.h>
#include <assets/page.h>
#include <assets/header.h>
#include <filter/roles.h>
#include <filter/string.h>
#include <webserver/request.h>
#include <locale/translate.h>
#include <database/config/general.h>
#include <database/notes.h>
#include <database/cache.h>
#include <workspace/logic.h>
#include <menu/logic.h>
#include <ipc/focus.h>
#include <navigation/passage.h>
std::string workspace_index_url ()
{
return "workspace/index";
}
bool workspace_index_acl (Webserver_Request& webserver_request)
{
return roles::access_control (webserver_request, roles::consultant);
}
std::string workspace_index (Webserver_Request& webserver_request)
{
const std::vector <std::string> workspaces = workspace_get_names (webserver_request);
// Set the requested workspace as the active one.
if (webserver_request.query.count ("bench")) {
const size_t bench = static_cast <size_t> (filter::strings::convert_to_int (webserver_request.query ["bench"]));
if (bench < workspaces.size ()) {
const std::string workspace = workspaces [bench];
webserver_request.database_config_user()->set_active_workspace (workspace);
}
}
// Check that the active workspace exists, else set the first available workspace as the active one.
{
const std::string workspace = webserver_request.database_config_user ()->get_active_workspace ();
if (!in_array (workspace, workspaces)) {
if (!workspaces.empty ()) {
webserver_request.database_config_user ()->set_active_workspace (workspaces [0]);
}
}
}
// Create default set of workspaces if there are none.
bool create = workspaces.empty ();
if (!create) {
create = (workspaces [0] == workspace_get_default_name ());
}
if (create) {
workspace_create_defaults (webserver_request);
}
// In case the workspace is opened from a consultation note email,
// read the note, and set the active passage to the passage the note refers to.
const int note_id = filter::strings::convert_to_int (webserver_request.query ["note"]);
if (note_id) {
Database_Notes database_notes (webserver_request);
const std::vector <Passage> passages = database_notes.get_passages (note_id);
if (!passages.empty ()) {
Ipc_Focus::set (webserver_request, passages[0].m_book, passages[0].m_chapter, filter::strings::convert_to_int (passages[0].m_verse));
navigation_passage::record_history (webserver_request, passages[0].m_book, passages[0].m_chapter, filter::strings::convert_to_int (passages[0].m_verse));
}
}
std::string page{};
Assets_Header header = Assets_Header (translate("Workspace"), webserver_request);
header.set_navigator ();
header.set_fading_menu (menu_logic_workspace_category (webserver_request));
page = header.run ();
Assets_View view;
std::map <int, std::string> urls = workspace_get_urls (webserver_request, true);
std::map <int, std::string> widths = workspace_get_widths (webserver_request);
// The Bible editor number, starting from 1, increasing.
std::map <int, int> editor_numbers = workspace_add_bible_editor_number (urls);
for (int key = 0; key < 15; key++) {
const std::string url = urls [key];
const std::string width = widths [key];
const int editor_number = editor_numbers [key];
const int row = static_cast<int> (round (key / 5)) + 1;
const int column = key % 5 + 1;
std::string variable = "url" + std::to_string (row) + std::to_string (column);
view.set_variable (variable, url);
variable = "width" + std::to_string (row) + std::to_string (column);
view.set_variable (variable, width);
if (filter::strings::convert_to_int (width) > 0)
view.enable_zone (variable);
variable = "editorno" + std::to_string (row) + std::to_string (column);
view.set_variable (variable, std::to_string (editor_number));
}
std::map <int, std::string> heights = workspace_get_heights (webserver_request);
for (int key = 0; key < 3; key++) {
const std::string height = heights [key];
const int row = key + 1;
const std::string variable = "height" + std::to_string (row);
view.set_variable (variable, height);
if (filter::strings::convert_to_int (height) > 0)
view.enable_zone (variable);
}
std::string workspacewidth = workspace_get_entire_width (webserver_request);
if (!workspacewidth.empty ()) {
workspacewidth.insert (0, "width: ");
workspacewidth.append (";");
}
view.set_variable ("workspacewidth", workspacewidth);
// When the URLs loaded specify a Bible, then set this as the active Bible.
// Extract the first Bible, if any, to do that.
// See https://github.com/bibledit/cloud/issues/1004 for more info.
{
std::optional<std::string> bible = get_first_bible_from_urls (urls);
if (bible)
webserver_request.database_config_user()->set_bible(bible.value());
}
// The rendered template disables framekillers through the "sandbox" attribute on the iframe elements.
page += view.render ("workspace", "index");
page += assets_page::footer ();
return page;
}
// It used to use a sandbox restriction in the iframe.
// sandbox="allow-forms allow-pointer-lock allow-same-origin allow-scripts allow-modals"
// But that led to issues:
// https://github.com/bibledit/cloud/issues/744
|