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
|
/* Copyright (c) MediaArea.net SARL. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license that can
* be found in the License.html file in the root of the source tree.
*/
#include "policieswindow.h"
#include "mainwindow.h"
#include "WebPage.h"
#include "WebView.h"
#include "progressbar.h"
#include <QRegularExpression>
namespace MediaConch {
//***************************************************************************
// Constructor / Desructor
//***************************************************************************
PoliciesWindow::PoliciesWindow(MainWindow *parent) : CommonWebWindow(parent)
{
}
PoliciesWindow::~PoliciesWindow()
{
}
//***************************************************************************
// Visual elements
//***************************************************************************
//---------------------------------------------------------------------------
void PoliciesWindow::display_policies()
{
display_html();
}
int PoliciesWindow::add_new_policies(const QStringList& files)
{
WebPage* page = (WebPage*)main_window->web_view->page();
if (!page)
return -1;
return page->import_policy(files);
}
//***************************************************************************
// WEB
//***************************************************************************
//---------------------------------------------------------------------------
void PoliciesWindow::change_qt_scripts_in_template(QString& html)
{
QRegularExpression reg("\\{\\{ QT_SCRIPTS \\}\\}", QRegularExpression::InvertedGreedinessOption);
QString script;
int pos = 0;
#if defined(WEB_MACHINE_KIT)
script += " <script type=\"text/javascript\" src=\"qrc:/policyWebKit.js\"></script>\n"
" <script type=\"text/javascript\" src=\"qrc:/users/userWebKit.js\"></script>\n";
#elif defined(WEB_MACHINE_ENGINE)
script += " <script type=\"text/javascript\" src=\"qrc:/qtwebchannel/qwebchannel.js\"></script>\n"
" <script type=\"text/javascript\" src=\"qrc:/webengine.js\"></script>\n"
" <script type=\"text/javascript\" src=\"qrc:/policyWebEngine.js\"></script>\n"
" <script type=\"text/javascript\" src=\"qrc:/users/userWebEngine.js\"></script>\n";
#endif
script += " <script type=\"text/javascript\" src=\"qrc:/policyTree.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/policyTreeAffix.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/policyTreePolicies.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/policyTreeRules.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/policyTreeRulesMI.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/policyTreeRulesMT.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/policyUser.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/policy.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/utils/functions.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/utils/url.js\"></script>\n";
script += " <script type=\"text/javascript\" src=\"qrc:/menu.js\"></script>\n";
QRegularExpressionMatch match = reg.match(html, pos);
if ((pos = match.capturedStart()) != -1)
html.replace(pos, match.capturedLength(), script);
}
//---------------------------------------------------------------------------
void PoliciesWindow::set_webmachine_script_in_template(QString& html)
{
QRegularExpression reg("\\{\\{[\\s]+webmachine[\\s]\\}\\}", QRegularExpression::InvertedGreedinessOption);
QString machine;
int pos = 0;
#if defined(WEB_MACHINE_KIT)
machine = "WEB_MACHINE_KIT";
#elif defined(WEB_MACHINE_ENGINE)
machine = "WEB_MACHINE_ENGINE";
#endif
QRegularExpressionMatch match = reg.match(html, pos);
if ((pos = match.capturedStart()) != -1)
html.replace(pos, match.capturedLength(), machine);
}
//---------------------------------------------------------------------------
void PoliciesWindow::remove_result_in_template(QString& html)
{
QRegularExpression reg("\\{% block result %\\}\\{% endblock %\\}", QRegularExpression::InvertedGreedinessOption);
html.replace(reg, "");
}
//---------------------------------------------------------------------------
void PoliciesWindow::change_checker_in_template(const QString& policy, QString& html)
{
QRegularExpression reg("\\{% block checker %\\}\\{% endblock %\\}", QRegularExpression::InvertedGreedinessOption);
html.replace(reg, policy);
}
//---------------------------------------------------------------------------
void PoliciesWindow::create_html_policy(QString& policy)
{
QFile template_html(":/xsltPolicy.html");
template_html.open(QIODevice::ReadOnly | QIODevice::Text);
QByteArray html = template_html.readAll();
template_html.close();
policy = QString(html);
}
//---------------------------------------------------------------------------
void PoliciesWindow::create_html_base(const QString& policy, QString& base)
{
set_webmachine_script_in_template(base);
change_qt_scripts_in_template(base);
change_checker_in_template(policy, base);
remove_result_in_template(base);
}
//---------------------------------------------------------------------------
void PoliciesWindow::create_html(QString &html)
{
QString policy;
create_html_policy(policy);
create_html_base(policy, html);
}
}
|