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
|
/*
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 <styles/sheets.h>
#include <filter/url.h>
#include <filter/string.h>
#include <filter/roles.h>
#include <tasks/logic.h>
#include <database/styles.h>
#include <database/logs.h>
#include <styles/css.h>
#include <webserver/request.h>
// Recreates all stylesheet.css files through a background process.
// The advantage of this is that the user interface will be more responsive.
void styles_sheets_create_all ()
{
tasks_logic_queue (task::create_css);
}
void styles_sheets_create_all_run ()
{
Database_Logs::log ("Creating stylesheet.css files");
Styles_Sheets styles_sheets;
styles_sheets.recreate ();
}
// Recreates the various stylesheets.css files.
void Styles_Sheets::recreate ()
{
std::vector <std::string> stylesheets = database::styles::get_sheets ();
for (const auto & stylesheet : stylesheets) {
std::string path = get_location (stylesheet, false);
create (stylesheet, path, false, std::string());
path = get_location (stylesheet, true);
create (stylesheet, path, true, std::string());
}
}
void Styles_Sheets::create (std::string stylesheet, std::string path, bool editor, std::string export_bible)
{
Styles_Css styles_css (stylesheet);
if (editor) {
styles_css.editor ();
}
if (!export_bible.empty ()) {
styles_css.exports ();
styles_css.customize (export_bible);
styles_css.customize (std::string());
}
styles_css.generate ();
styles_css.css (path);
}
std::string Styles_Sheets::get_location (std::string sheet, bool editor)
{
std::string path;
if (editor) path = "editor";
else path = "basic";
path.append (sheet);
path.append (".css");
path = filter_url_create_root_path ({"dyncss", path});
return path;
}
|