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
|
/* 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 "databasewindow.h"
#include "mainwindow.h"
#include "progressbar.h"
#include "WebView.h"
#include "WebPage.h"
#include <QDir>
#include <QFileDialog>
#include <QProgressBar>
#include <QRegularExpression>
#if QT_VERSION >= 0x050000
#include <QStandardPaths>
#else
#include <QDesktopServices>
#endif
#if defined(WEB_MACHINE_ENGINE)
#include <QWebChannel>
#endif
namespace MediaConch {
//***************************************************************************
// Constructor / Desructor
//***************************************************************************
DatabaseWindow::DatabaseWindow(MainWindow* m) : CommonWebWindow(m)
{
}
DatabaseWindow::~DatabaseWindow()
{
}
void DatabaseWindow::display_database()
{
display_html();
}
//---------------------------------------------------------------------------
void DatabaseWindow::create_web_view_finished()
{
}
//---------------------------------------------------------------------------
void DatabaseWindow::create_html(QString& html)
{
QString database;
create_html_database(database);
create_html_base(html, database);
}
//---------------------------------------------------------------------------
void DatabaseWindow::create_html_database(QString& database)
{
QFile database_file(":/database.html");
database_file.open(QIODevice::ReadOnly | QIODevice::Text);
database = QString(database_file.readAll());
database_file.close();
}
//---------------------------------------------------------------------------
void DatabaseWindow::create_html_base(QString& base, const QString& database)
{
set_webmachine_script_in_template(base);
change_qt_scripts_in_template(base);
change_checker_in_template(base, database);
remove_result_in_template(base);
}
//***************************************************************************
// HELPER
//***************************************************************************
//---------------------------------------------------------------------------
void DatabaseWindow::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:/database/database.js\"></script>\n"
" <script type=\"text/javascript\" src=\"qrc:/database/databaseWebKit.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:/database/database.js\"></script>\n"
" <script type=\"text/javascript\" src=\"qrc:/database/databaseWebEngine.js\"></script>\n";
#endif
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 DatabaseWindow::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 DatabaseWindow::change_checker_in_template(QString& html, const QString& database)
{
QRegularExpression reg("\\{% block checker %\\}\\{% endblock %\\}", QRegularExpression::InvertedGreedinessOption);
html.replace(reg, database);
}
//---------------------------------------------------------------------------
void DatabaseWindow::remove_result_in_template(QString& html)
{
QRegularExpression reg("\\{% block result %\\}\\{% endblock %\\}", QRegularExpression::InvertedGreedinessOption);
html.replace(reg, "");
}
}
|