summaryrefslogtreecommitdiffstats
path: root/src/fbgui.cpp
blob: f4154f89180b4f2b20d0a797e6abda5bab3934db (plain) (blame)
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
#include "fbgui.h"
#include "sysinfo.h"
#include "loggerengine.h"
#include "downloadmanager.h"
#include "javascriptinterface.h"

#include <iostream>
#include <QtWebKit>
#include <QxtCore>

QString sessionID("");
QUrl baseURL("");
QString binPath("");
QString downloadPath("");
int updateInterval = -1;
int debugMode = -1;

//-------------------------------------------------------------------------------------------
fbgui::fbgui()
{
	// setup basic debug
	qxtLog->disableLoggerEngine("DEFAULT");
	qxtLog->enableLogLevels(QxtLogger::DebugLevel);
	if (debugMode == 0){
		qxtLog->addLoggerEngine("std_logger", new LoggerEngine_std);
		qxtLog->initLoggerEngine("std_logger");
		qxtLog->setMinimumLevel("std_logger", QxtLogger::DebugLevel);
		qxtLog->debug() << "Initializing fbgui...";
	}
	// base of the gui
	createActions();
	_webView = new QWebView(this);

	// dhcp file watcher, disabled for now.
	_webView->load(baseURL);
	//watchDHCP();


	/* PBS test (working dont delete)
	QUrl test("http://132.230.4.27/fbgui/index");
	mgr = new QNetworkAccessManager();
	mgr->setCookieJar(new QNetworkCookieJar(this));
	QNetworkCookieJar *jar = mgr->cookieJar();
	QNetworkRequest req(test);
	QByteArray postData = "mac=d8:d3:85:80:81:8b&hardwarehash=12341234123412341234123412341234&bootisoID=1";
	_webView->load(req, QNetworkAccessManager::PostOperation, postData);
	*/

	// debug console split or normal browser
	if (debugMode == 1)
		setupDebugSplit();
	else
		setCentralWidget(_webView);


	// initialize javascript interface
	JavascriptInterface* jsi = new JavascriptInterface(_webView->page()->mainFrame());
	QObject::connect(jsi, SIGNAL(quitFbgui()), this, SLOT(close()));
	QObject::connect(_webView->page()->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()),
						  jsi, SLOT(attachToDOM()));

	// initialize download manager
	DownloadManager* dm = new DownloadManager();
	QObject::connect(dm, SIGNAL(downloadInfo(const QString&, const double&)),
					jsi, SLOT(downloadInfo(const QString&, const double&)));
	QObject::connect(dm, SIGNAL(notify(const QString&)),
					jsi, SLOT(notify(const QString&)));
	QObject::connect(jsi, SIGNAL(requestFile(const QString&)), dm, SLOT(downloadFile(const QString&)));
	QObject::connect(dm, SIGNAL(updateProgress(const int&, const double&, const QString&)),
					jsi, SLOT(updateProgressBar(const int&, const double&, const QString&)));
	QObject::connect(dm, SIGNAL(downloadQueueEmpty()), jsi, SLOT(callbackOnDlQueueFinished()));

	// set properties
	setWindowTitle("fbgui");
	setAttribute(Qt::WA_QuitOnClose, true);
	setWindowFlags(Qt::FramelessWindowHint);
	showFullScreen();
}
//-------------------------------------------------------------------------------------------
void fbgui::createActions()
{
	// CTRL + X to kill the gui
	_quit = new QAction(tr("&quit"), this);
	_quit->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_X));
	this->addAction(_quit);
	connect(_quit, SIGNAL(triggered()), this, SLOT(close()));
}
//-------------------------------------------------------------------------------------------
void fbgui::setupDebugSplit()
{
	_debugConsole = new QTextEdit(this);
	_debugConsole->setWindowFlags(Qt::FramelessWindowHint);
	QPalette pal;
	pal.setColor(QPalette::Base, Qt::black);
	_debugConsole->setPalette(pal);
	_debugConsole->setTextColor(Qt::cyan);
	_debugConsole->insertPlainText("Debug console initialized.\n");
	// enable custom logger engine
	qxtLog->addLoggerEngine("fb_logger", new LoggerEngine_fb(_debugConsole));
	qxtLog->initLoggerEngine("fb_logger");
	qxtLog->setMinimumLevel("fb_logger", QxtLogger::DebugLevel);
	// display browser and debug in a splitter
	_splitter = new QSplitter(Qt::Vertical, this);
	_splitter->addWidget(_webView);
	_splitter->addWidget(_debugConsole);
	// CTRL + D  toggles debug window
	_toggleDebug = new QAction(tr("&toggleDebug"), this);
	_toggleDebug->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_D));
	addAction(_toggleDebug);
	connect(_toggleDebug, SIGNAL(triggered()), this, SLOT(toggleDebug()));
	setCentralWidget(_splitter);
}
//-------------------------------------------------------------------------------------------
void fbgui::toggleDebug()
{
	if (_debugConsole->isVisible())
		_debugConsole->hide();
	else
		_debugConsole->show();
}
//-------------------------------------------------------------------------------------------
bool fbgui::checkHost() const
{
	// TODO instead of closing app, show error page from qrc
	QHostInfo hostInfo = QHostInfo::fromName(baseURL.host());
	if (hostInfo.error() != QHostInfo::NoError){
		qxtLog->debug() << "Lookup of " << baseURL.host() << "failed. Exiting...";
		return false;
	}
	else
		return true;
}
//-------------------------------------------------------------------------------------------
void fbgui::netAccessible(const QString& name)
{
	//TODO change this to the actual file name...
	QFileInfo fi(name + "/foo");
	if (fi.exists()){
		qxtLog->debug() << "correct file!";
		if (checkHost()){
			qxtLog->debug() << "Received DHCP lease, loading URL...";
			_webView->load(baseURL);
		}
	}
	else
		qxtLog->debug() << "weird file!";
}
//-------------------------------------------------------------------------------------------
void fbgui::watchDHCP()
{
    _webView->load(QUrl("qrc:/html/loadAbout.html"));
	// TODO change directory to the right one...
    qxtLog->debug() << "Watching /etc/fbgui";
    QStringList pathToWatch("/etc/fbgui");
    _watcher = new QFileSystemWatcher(pathToWatch, this);
    QObject::connect(_watcher, SIGNAL(directoryChanged(const QString&)), this, SLOT(netAccessible(const QString&)));
}