2018-06-21 16:41:02 +02:00
|
|
|
#include "headers/serverconn.h"
|
2018-06-21 08:47:09 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
ServerConn * pGlobalServConn = nullptr;
|
2018-06-21 18:36:46 +02:00
|
|
|
|
2018-06-21 08:47:09 +02:00
|
|
|
ServerConn::ServerConn(QObject *parent) : QObject(parent)
|
|
|
|
{
|
|
|
|
qDebug("serverconn konstruktor");
|
|
|
|
this->networkManager = new QNetworkAccessManager();
|
2018-06-21 16:41:02 +02:00
|
|
|
this->refreshNetworkManager = new QNetworkAccessManager();
|
2018-12-23 21:07:10 +01:00
|
|
|
pGlobalServConn = this;
|
2018-06-21 16:41:02 +02:00
|
|
|
}
|
2018-06-21 08:47:09 +02:00
|
|
|
|
2018-06-21 16:41:02 +02:00
|
|
|
ServerConn::~ServerConn()
|
|
|
|
{
|
|
|
|
qDebug("serverconn destruktor");
|
|
|
|
delete this->networkManager;
|
|
|
|
delete this->refreshNetworkManager;
|
2018-06-21 08:47:09 +02:00
|
|
|
|
2018-06-21 16:41:02 +02:00
|
|
|
QString path = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
|
|
|
|
QDir dir(path + "/.fannyapp-tmp");
|
|
|
|
dir.removeRecursively();
|
2018-06-21 08:47:09 +02:00
|
|
|
}
|
|
|
|
|
2018-06-21 16:41:02 +02:00
|
|
|
|
|
|
|
QString ServerConn::login(QString username, QString password, bool permanent)
|
2018-06-21 08:47:09 +02:00
|
|
|
{
|
2018-12-21 12:23:12 +01:00
|
|
|
// QUrlQuery pdata;
|
|
|
|
// ReturnData_t ret = this->senddata(QUrl("http://www.fanny-leicht.de/static15/http.intern/sheute.pdf"), pdata);
|
|
|
|
// qDebug() << ret.text;
|
2018-06-21 08:47:09 +02:00
|
|
|
|
|
|
|
// Create request
|
2018-12-21 12:23:12 +01:00
|
|
|
QNetworkRequest request;
|
|
|
|
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/sheute.pdf" ) );
|
|
|
|
|
|
|
|
// Pack in credentials
|
|
|
|
QString concatenatedCredentials = username + ":" + password;
|
|
|
|
QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64();
|
|
|
|
QString headerData = "Basic " + data;
|
|
|
|
request.setRawHeader( "Authorization", headerData.toLocal8Bit() );
|
|
|
|
|
|
|
|
QUrlQuery pdata;
|
|
|
|
// Send request and connect all possible signals
|
|
|
|
QNetworkReply*reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
|
|
|
|
//QNetworkReply*reply = networkManager->get( request );
|
|
|
|
|
|
|
|
QEventLoop loop;
|
|
|
|
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
|
|
|
|
loop.exec();
|
|
|
|
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if(status_code == 200){
|
|
|
|
this->username = username;
|
|
|
|
this->password = password;
|
|
|
|
if(permanent){
|
|
|
|
qDebug() << "permanent";
|
|
|
|
pGlobalAppSettings->writeSetting("permanent", "1");
|
|
|
|
pGlobalAppSettings->writeSetting("username", username);
|
|
|
|
pGlobalAppSettings->writeSetting("password", password);
|
2018-06-21 16:41:02 +02:00
|
|
|
}
|
2018-12-21 12:23:12 +01:00
|
|
|
return("OK");
|
|
|
|
}
|
|
|
|
else if(status_code == 401){
|
|
|
|
return("Ungültige Benutzerdaten.");
|
|
|
|
}
|
|
|
|
else if(status_code == 0){
|
|
|
|
return("Keine Verbindung zum Server.");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
QString ret = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toChar();
|
|
|
|
ret = ret + reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toChar();
|
|
|
|
return(ret);
|
|
|
|
}
|
2018-06-21 08:47:09 +02:00
|
|
|
}
|
|
|
|
|
2018-06-21 16:41:02 +02:00
|
|
|
int ServerConn::logout()
|
|
|
|
{
|
|
|
|
this->username = "";
|
|
|
|
this->password = "";
|
|
|
|
pGlobalAppSettings->writeSetting("permanent", "0");
|
|
|
|
pGlobalAppSettings->writeSetting("username", "");
|
|
|
|
pGlobalAppSettings->writeSetting("password", "");
|
2018-06-21 17:56:36 +02:00
|
|
|
return(200);
|
2018-06-21 16:41:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString ServerConn::getDay(QString day)
|
|
|
|
{
|
2018-06-30 20:59:42 +02:00
|
|
|
this->progress = 0;
|
2018-06-21 16:41:02 +02:00
|
|
|
// Create request
|
2018-12-21 12:23:12 +01:00
|
|
|
QNetworkRequest request;
|
|
|
|
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/" + day + ".pdf" ) );
|
|
|
|
|
|
|
|
// Pack in credentials
|
|
|
|
// Pack in credentials
|
|
|
|
QString concatenatedCredentials = this->username + ":" + this->password;
|
|
|
|
QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64();
|
|
|
|
QString headerData = "Basic " + data;
|
|
|
|
request.setRawHeader( "Authorization", headerData.toLocal8Bit() );
|
|
|
|
|
|
|
|
QUrlQuery pdata;
|
|
|
|
// Send request and connect all possible signals
|
|
|
|
QNetworkReply*reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
|
|
|
|
//QNetworkReply*reply = networkManager->get( request );
|
|
|
|
|
|
|
|
connect(reply, SIGNAL(downloadProgress(qint64, qint64)),
|
|
|
|
this, SLOT(updateProgress(qint64, qint64)));
|
|
|
|
QEventLoop loop;
|
|
|
|
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
|
|
|
|
loop.exec();
|
|
|
|
|
|
|
|
this->progress = 1;
|
|
|
|
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
if(status_code == 200){
|
|
|
|
QString path = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
|
|
|
|
|
|
|
|
QDir dir;
|
|
|
|
dir.mkdir(path + "/.fannyapp-tmp");
|
|
|
|
QFile file(path + "/.fannyapp-tmp/" + day + ".pdf");
|
|
|
|
file.remove();
|
|
|
|
|
|
|
|
file.open(QIODevice::ReadWrite);
|
|
|
|
file.write(reply->readAll());
|
|
|
|
file.close();
|
|
|
|
QUrl url = QUrl::fromLocalFile(path + "/.fannyapp-tmp/" + day + ".pdf");
|
|
|
|
|
|
|
|
// QDesktopServices::openUrl(url);
|
|
|
|
return("OK_" + url.toString());
|
2018-06-21 16:41:02 +02:00
|
|
|
}
|
|
|
|
else if(status_code == 401){
|
|
|
|
return("Ungültige Benutzerdaten.");
|
|
|
|
}
|
|
|
|
else if(status_code == 0){
|
|
|
|
return("Keine Verbindung zum Server.");
|
|
|
|
}
|
|
|
|
else {
|
2018-12-21 12:23:12 +01:00
|
|
|
QString ret = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toChar();
|
|
|
|
ret = ret + " (" + reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toChar() + ")";
|
|
|
|
return(ret);
|
2018-06-21 16:41:02 +02:00
|
|
|
}
|
2018-12-21 12:23:12 +01:00
|
|
|
}
|
|
|
|
|
2018-06-21 16:41:02 +02:00
|
|
|
|
|
|
|
int ServerConn::checkConn()
|
|
|
|
{
|
|
|
|
// Create request
|
2018-12-21 12:23:12 +01:00
|
|
|
QNetworkRequest request;
|
|
|
|
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/" ) );
|
2018-06-21 16:41:02 +02:00
|
|
|
|
2018-12-21 12:23:12 +01:00
|
|
|
// Pack in credentials
|
|
|
|
// Pack in credentials
|
|
|
|
//ZedlerDo:LxyJQB
|
|
|
|
QString concatenatedCredentials = this->username + ":" + this->password;
|
|
|
|
QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64();
|
|
|
|
QString headerData = "Basic " + data;
|
|
|
|
request.setRawHeader( "Authorization", headerData.toLocal8Bit() );
|
2018-06-21 16:41:02 +02:00
|
|
|
|
2018-12-21 12:23:12 +01:00
|
|
|
QUrlQuery pdata;
|
|
|
|
// Send request and connect all possible signals
|
|
|
|
QNetworkReply*reply = this->refreshNetworkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
|
|
|
|
//QNetworkReply*reply = networkManager->get( request );
|
2018-06-21 16:41:02 +02:00
|
|
|
|
2018-12-21 12:23:12 +01:00
|
|
|
QEventLoop loop;
|
|
|
|
loop.connect(this->refreshNetworkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
|
|
|
|
loop.exec();
|
2018-06-21 16:41:02 +02:00
|
|
|
|
2018-12-21 12:23:12 +01:00
|
|
|
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
return(status_code);
|
2018-06-21 16:41:02 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-06-22 09:36:20 +02:00
|
|
|
void ServerConn::updateProgress(qint64 read, qint64 total)
|
|
|
|
{
|
|
|
|
int read_int = read;
|
|
|
|
int total_int = total;
|
2018-06-22 15:33:16 +02:00
|
|
|
float percent = ((float)read_int / (float)total_int);
|
2018-06-22 09:36:20 +02:00
|
|
|
this->progress = percent;
|
2018-06-22 15:33:16 +02:00
|
|
|
percent = (int)percent;
|
|
|
|
|
2018-12-21 12:23:12 +01:00
|
|
|
// qDebug() << read << total << percent << "%";
|
2018-06-22 09:36:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
float ServerConn::getProgress()
|
|
|
|
{
|
|
|
|
return(this->progress);
|
|
|
|
}
|
2018-06-21 16:41:02 +02:00
|
|
|
|
2018-12-23 00:06:05 +01:00
|
|
|
int ServerConn::getEvents(QString day){
|
|
|
|
|
2018-10-14 18:39:09 +02:00
|
|
|
this->progress = 0;
|
|
|
|
ReturnData_t ret; //this is a custom type to store the returned data
|
|
|
|
// Call the webservice
|
|
|
|
|
2018-12-23 00:06:05 +01:00
|
|
|
QNetworkRequest request(QUrl("http://api.itsblue.de/fanny/vertretung.php?uname=" + this->username + "&passwd=" + this->password + "&day=" + day + "&agree=true"));
|
2018-10-14 18:39:09 +02:00
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader,
|
2018-12-21 12:23:12 +01:00
|
|
|
"application/x-www-form-urlencoded");
|
2018-10-14 18:39:09 +02:00
|
|
|
|
|
|
|
//send a POST request with the given url and data to the server
|
|
|
|
QNetworkReply* reply;
|
|
|
|
|
|
|
|
QUrlQuery pdata;
|
|
|
|
reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
|
|
|
|
|
|
|
|
connect(reply, SIGNAL(downloadProgress(qint64, qint64)),
|
2018-12-21 12:23:12 +01:00
|
|
|
this, SLOT(updateProgress(qint64, qint64)));
|
2018-10-14 18:39:09 +02:00
|
|
|
//wait until the request has finished
|
|
|
|
QEventLoop loop;
|
|
|
|
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
|
|
|
|
loop.exec();
|
|
|
|
|
|
|
|
//get the status code
|
|
|
|
QVariant status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
|
|
|
|
this->progress = 1;
|
|
|
|
if(status_code != 200){
|
|
|
|
return(status_code.toInt());
|
|
|
|
}
|
|
|
|
|
|
|
|
QString eventString = reply->readAll();
|
|
|
|
|
2018-12-21 12:23:12 +01:00
|
|
|
|
|
|
|
qDebug() << "reading xml file";
|
2018-12-23 00:06:05 +01:00
|
|
|
// QFile * xmlFile = new QFile(":/samplehtml/Download File.xml");
|
|
|
|
// if (!xmlFile->open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
|
|
// qDebug() << "Load XML File Problem Couldn't open xmlfile.xml to load settings for download";
|
|
|
|
// return 900;
|
|
|
|
// }
|
2018-12-21 12:23:12 +01:00
|
|
|
|
2018-12-23 00:06:05 +01:00
|
|
|
QXmlStreamReader * xmlReader = new QXmlStreamReader(eventString);
|
2018-12-21 12:23:12 +01:00
|
|
|
//qDebug() << xmlFile->readAll();
|
|
|
|
QList<QStringList> tmpEvents;
|
|
|
|
QStringList dayList;
|
|
|
|
int currTop = 0;
|
|
|
|
|
|
|
|
//Parse the XML until we reach end of it
|
|
|
|
while(!xmlReader->atEnd()) {
|
|
|
|
if (xmlReader->readNextStartElement()) {
|
|
|
|
if (xmlReader->name().toString() == "text"){
|
|
|
|
QXmlStreamAttributes attributes = xmlReader->attributes();
|
|
|
|
QString attribute_value;
|
|
|
|
int top;
|
|
|
|
|
|
|
|
if(attributes.hasAttribute("font")){
|
|
|
|
attribute_value = attributes.value("font").toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(attributes.hasAttribute("top")){
|
|
|
|
top = attributes.value("top").toInt();
|
|
|
|
if(abs(top - currTop) > 3){
|
|
|
|
//next line started
|
|
|
|
if(currTop > 175){
|
|
|
|
// ignore the header
|
|
|
|
tmpEvents.append(dayList);
|
|
|
|
}
|
|
|
|
|
|
|
|
dayList.clear();
|
|
|
|
currTop = top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString text = xmlReader->readElementText(QXmlStreamReader::IncludeChildElements);
|
|
|
|
dayList.append(text);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
qDebug() << qPrintable(xmlReader->name().toString()) << text << attribute_value << dayList;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpEvents.takeFirst();
|
|
|
|
|
|
|
|
qDebug() << tmpEvents;
|
|
|
|
|
|
|
|
this->m_eventlist = tmpEvents;
|
|
|
|
|
|
|
|
if(xmlReader->hasError()) {
|
|
|
|
qDebug() << "xmlFile.xml Parse Error" << xmlReader->errorString();
|
|
|
|
//return(500);
|
|
|
|
}
|
|
|
|
|
|
|
|
//close reader and flush file
|
|
|
|
xmlReader->clear();
|
2018-12-23 00:06:05 +01:00
|
|
|
//xmlFile->close();
|
2018-12-21 12:23:12 +01:00
|
|
|
|
2018-10-14 18:39:09 +02:00
|
|
|
return(200);
|
|
|
|
}
|
|
|
|
|
2018-06-25 00:15:18 +02:00
|
|
|
int ServerConn::getFoodPlan()
|
2018-06-22 15:33:16 +02:00
|
|
|
{
|
2018-06-25 08:07:05 +02:00
|
|
|
this->progress = 0;
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// Call the webservice
|
2018-06-22 15:33:16 +02:00
|
|
|
QNetworkRequest request(QUrl("http://www.treffpunkt-fanny.de/fuer-schueler-und-lehrer/speiseplan.html"));
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader,
|
2018-12-21 12:23:12 +01:00
|
|
|
"application/x-www-form-urlencoded");
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// send a POST request with the given url and data to the server
|
2018-06-22 15:33:16 +02:00
|
|
|
QNetworkReply* reply;
|
|
|
|
|
|
|
|
QUrlQuery pdata;
|
|
|
|
reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
|
|
|
|
|
2018-06-25 00:15:18 +02:00
|
|
|
connect(reply, SIGNAL(downloadProgress(qint64, qint64)),
|
2018-12-21 12:23:12 +01:00
|
|
|
this, SLOT(updateProgress(qint64, qint64)));
|
2018-12-23 21:07:10 +01:00
|
|
|
|
|
|
|
// wait until the request has finished
|
2018-06-22 15:33:16 +02:00
|
|
|
QEventLoop loop;
|
2018-12-23 21:07:10 +01:00
|
|
|
QTimer timer;
|
|
|
|
|
|
|
|
timer.setSingleShot(true);
|
|
|
|
// quit the loop when the timer times out
|
|
|
|
loop.connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
|
2018-06-22 15:33:16 +02:00
|
|
|
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
|
2018-12-23 21:07:10 +01:00
|
|
|
timer.start(2000);
|
2018-06-22 15:33:16 +02:00
|
|
|
loop.exec();
|
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// get the status code
|
2018-06-22 15:33:16 +02:00
|
|
|
QVariant status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
|
2018-06-25 08:07:05 +02:00
|
|
|
this->progress = 1;
|
2018-06-24 09:23:10 +02:00
|
|
|
if(status_code != 200){
|
2018-06-25 00:15:18 +02:00
|
|
|
return(status_code.toInt());
|
2018-06-24 09:23:10 +02:00
|
|
|
}
|
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// initialize the weekplan to store information to it
|
2018-06-24 21:56:40 +02:00
|
|
|
QList<QList<QString>> temp_weekplan;
|
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// m_weekplan is a list, that contains a list for each day, which contains: cookteam, date, main dish, vagi main dish, garnish(Beilage) and Dessert.
|
|
|
|
|
|
|
|
// read the whole website
|
2018-12-23 21:12:33 +01:00
|
|
|
QString returnedData = QString::fromUtf8(reply->readAll());
|
2018-06-24 09:23:10 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// remove unnecessary stuff
|
2018-12-23 21:12:33 +01:00
|
|
|
returnedData.replace("\n","");
|
|
|
|
returnedData.replace("\r","");
|
|
|
|
returnedData.replace("\t","");
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// workaround for changing html syntax
|
2018-12-23 21:12:33 +01:00
|
|
|
returnedData.replace("style=\"width: 25%;\"", "width=\"25%\"");
|
2018-12-23 21:07:10 +01:00
|
|
|
|
|
|
|
// split the string at the beginning of the tables
|
2018-12-23 21:12:33 +01:00
|
|
|
QStringList documentList = returnedData.split( "<table class=\"speiseplan\">" );
|
2018-12-23 21:07:10 +01:00
|
|
|
|
|
|
|
// enshure that the data is valid
|
|
|
|
if(documentList.length() < 2){
|
|
|
|
return(900);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------- prepare the table of the first week ----------
|
|
|
|
QString table1 = documentList[1];
|
|
|
|
|
|
|
|
// enshure that the data is valid
|
|
|
|
if(table1.split( "</table>" ).length() < 1){
|
|
|
|
return(900);
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove everything after "</table>"
|
|
|
|
table1 = table1.split( "</table>" )[0];
|
|
|
|
// remove "<tbody><tr style=\"border: 1px solid #999;\" align=\"center\" valign=\"top\">" at the beginning
|
|
|
|
table1.remove(0,71);
|
|
|
|
//remove "</tr></tbody>" at the end
|
|
|
|
table1 = table1.left(table1.length() - 13);
|
|
|
|
|
|
|
|
//split at the days to get a list of all days
|
|
|
|
QStringList table1list = table1.split("<td width=\"25%\">");
|
2018-06-24 09:23:10 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// enshure that the data is valid
|
|
|
|
if(table1list.length() < 5){
|
|
|
|
return(900);
|
|
|
|
}
|
|
|
|
|
|
|
|
//remove the first item, as it is empty
|
|
|
|
table1list.takeFirst();
|
2018-06-24 21:56:40 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
//---------- prepare the table of the second week ----------
|
|
|
|
QString table2 = documentList[2];
|
|
|
|
|
|
|
|
// enshure that the data is valid
|
|
|
|
if(table2.split( "</table>" ).length() < 1){
|
|
|
|
return(900);
|
|
|
|
}
|
2018-06-24 21:56:40 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
//remove everything after "</table>"
|
|
|
|
table2 = table2.split( "</table>" )[0];
|
|
|
|
//remove "<tbody><tr align=\"center\" valign=\"top\">" at the beginning
|
|
|
|
table2.remove(0,39);
|
|
|
|
//remove "</tr></tbody>" at the end
|
|
|
|
table2.remove(table2.length() - 13, table2.length());
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
//split at the days to get a list of all days
|
|
|
|
QStringList table2list = table2.split("<td width=\"25%\">");
|
2018-09-23 17:55:05 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// enshure that the data is valid
|
|
|
|
if(table2list.length() < 5){
|
|
|
|
return(900);
|
|
|
|
}
|
2018-09-23 17:55:05 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
//remove the first item, as it is empty
|
|
|
|
table2list.takeFirst();
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
//---------- put both weeks into one big list ----------
|
|
|
|
QStringList weeklist = table1list + table2list;
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
//---------- go through all days and split the day-string into the different types of information ----------
|
2018-10-14 18:39:09 +02:00
|
|
|
|
2018-06-24 09:23:10 +02:00
|
|
|
for (int i = 0; i <=7; i ++){
|
2018-12-23 21:07:10 +01:00
|
|
|
if(i > weeklist.length()){
|
|
|
|
// if the loop exceeds the length of the wweklist some kind of eror occured
|
|
|
|
return 900;
|
2018-12-21 12:23:12 +01:00
|
|
|
}
|
2018-06-24 09:23:10 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// store item temporarly to edit it
|
|
|
|
QString day = weeklist[i];
|
|
|
|
// remove "</td>" at the and of the Item
|
|
|
|
day = day.left(day.length()-5);
|
|
|
|
|
|
|
|
// table list[i] looks now like: | clould be:
|
|
|
|
// <strong>cookteam</strong> | <strong>Red Hot Chili Peppers</strong>
|
|
|
|
// <br /> | <br />
|
|
|
|
// <strong>date</strong> | <strong>26.06.2018</strong>
|
|
|
|
// <hr />mainDish | <hr />Gulasch mit Kartoffeln
|
|
|
|
// <hr />mainDishVeg | <hr />Pellkartoffeln mit Quark
|
|
|
|
// <hr />garnish | <hr />Gemischter Salat
|
|
|
|
// <hr />dessert</td> | <hr />Eaton Mess ( Erdbeer-Nachtisch )</td>
|
|
|
|
|
|
|
|
// split item at strong, to get the cookteam and the date
|
|
|
|
QStringList daylist = day.split("<strong>");
|
|
|
|
day = "";
|
|
|
|
|
|
|
|
// convert the list to a big string
|
|
|
|
for (int i = 0; i <= 2; i ++){
|
|
|
|
if(i <= daylist.length()){
|
|
|
|
day += daylist[i];
|
|
|
|
}
|
|
|
|
}
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
day.replace("<br />","");
|
|
|
|
daylist = day.split("</strong>");
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// store cookteam and date in the temp_weekplan
|
|
|
|
//temp_weekplan.append({daylist[0], daylist[1]});
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// store information in day
|
|
|
|
// (looks like: "<hr />MainDish<hr />MainDishVeg<hr />Garnish<hr />Dessert")
|
|
|
|
// (could be: "<hr />Gulasch mit Kartoffeln<hr />Pellkartoffeln mit Quark<hr />Gemischter Salat<hr />Eaton Mess ( Erdbeer-Nachtisch )")
|
|
|
|
day = daylist.takeLast();
|
|
|
|
// seperate the information
|
|
|
|
daylist.append(day.split("<hr />"));
|
|
|
|
// remove the item that is emplty from the list
|
|
|
|
daylist.removeAt(2);
|
2018-06-24 21:56:40 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
//---------- check if the day is aleady over ----------
|
2018-10-14 18:39:09 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// get the datestring
|
|
|
|
QString dateString = daylist[1];
|
|
|
|
// convert it to a valid QDate
|
|
|
|
QDateTime date = QDateTime::fromString(dateString,"dd.MM.yyyy");
|
2018-06-24 21:56:40 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// get the current date and time
|
|
|
|
QDateTime currentDateTime = QDateTime::currentDateTimeUtc();
|
2018-06-22 15:33:16 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
// check if the given day is still in the future or today (then it is valid)
|
|
|
|
if(date.toTime_t() > currentDateTime.toTime_t() || date.date() == currentDateTime.date()){
|
|
|
|
// add the rest of the information to the temp_weekplan
|
|
|
|
qDebug() << "day valid:" << daylist;
|
2018-06-24 09:23:10 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
//---------- convert the date to a readable string ----------
|
|
|
|
QString readableDateString;
|
2018-06-24 21:56:40 +02:00
|
|
|
|
2018-12-23 21:07:10 +01:00
|
|
|
if(date.date() == currentDateTime.date()){
|
|
|
|
// the given day is today
|
|
|
|
readableDateString = "Heute";
|
|
|
|
}
|
|
|
|
else if (date.toTime_t() < ( currentDateTime.toTime_t() + ( 24 * 60 * 60 ))) {
|
|
|
|
// the given day is tomorrow
|
|
|
|
readableDateString = "Morgen";
|
2018-06-24 09:23:10 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-12-23 21:07:10 +01:00
|
|
|
readableDateString = date.toString("dddd, d.M.yy");
|
2018-06-24 09:23:10 +02:00
|
|
|
}
|
2018-12-23 21:07:10 +01:00
|
|
|
|
|
|
|
qDebug() << readableDateString;
|
|
|
|
|
|
|
|
// insert the redable tring into the daylist
|
|
|
|
daylist[1] = readableDateString;
|
|
|
|
|
|
|
|
// append the day to the weeklist
|
|
|
|
temp_weekplan.append({daylist[0], daylist[1], daylist[2], daylist[3], daylist[4], daylist[5]});
|
2018-06-24 09:23:10 +02:00
|
|
|
}
|
2018-12-23 21:07:10 +01:00
|
|
|
}
|
|
|
|
|
2018-12-23 21:12:33 +01:00
|
|
|
// write data to global foodplan
|
|
|
|
this->m_weekplan = temp_weekplan;
|
2018-12-23 21:07:10 +01:00
|
|
|
|
2018-12-23 21:12:33 +01:00
|
|
|
// check if there is any valid data
|
2018-12-23 21:07:10 +01:00
|
|
|
if(this->m_weekplan.isEmpty()){
|
2018-12-23 21:12:33 +01:00
|
|
|
// no data
|
2018-12-23 21:07:10 +01:00
|
|
|
return(901);
|
2018-06-24 09:23:10 +02:00
|
|
|
}
|
2018-12-23 21:07:10 +01:00
|
|
|
|
2018-12-23 21:12:33 +01:00
|
|
|
// success
|
2018-12-23 21:07:10 +01:00
|
|
|
return(200);
|
|
|
|
}
|
|
|
|
|
2018-10-14 18:39:09 +02:00
|
|
|
QVariantMap ServerConn::getEventData(int index)
|
|
|
|
{
|
|
|
|
//cookteam, date, main dish, vagi main dish, garnish(Beilage) and Dessert.
|
|
|
|
|
|
|
|
QStringList ret; //list to return
|
|
|
|
//qDebug() << index;
|
2018-10-21 17:25:35 +02:00
|
|
|
for(int i=0;i<=6;i++){
|
2018-10-14 18:39:09 +02:00
|
|
|
|
|
|
|
if(m_eventlist.size() > index){
|
|
|
|
//qDebug() << i << m_weekplan[index].size();
|
|
|
|
if(m_eventlist[index].size() > i){
|
|
|
|
ret.append(m_eventlist[index][i]);
|
|
|
|
//qDebug() << i << m_weekplan[index][i];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ret.append(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ret.append(NULL);
|
|
|
|
}
|
|
|
|
}
|
2018-10-21 17:25:35 +02:00
|
|
|
if(ret.length() < 7){
|
|
|
|
ret.append("");
|
|
|
|
}
|
2018-10-14 18:39:09 +02:00
|
|
|
QString date_string_on_db = ret[1];
|
|
|
|
QDate Date = QDate::fromString(date_string_on_db," dd.MM.yyyy");
|
|
|
|
//date_string_on_db
|
|
|
|
qDebug() << Date;
|
|
|
|
qDebug() << ret;
|
2018-10-21 17:25:35 +02:00
|
|
|
return { {"grade", ret[0]}, {"hour", ret[1]}, {"replace", ret[2]}, {"subject", ret[3]}, {"room", ret[4]}, {"to", ret[5]}, {"text", ret[6]} };
|
2018-10-14 18:39:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int ServerConn::getEventCount(){
|
|
|
|
return (m_eventlist.length());
|
|
|
|
}
|
|
|
|
|
2018-06-21 08:47:09 +02:00
|
|
|
ReturnData_t ServerConn::senddata(QUrl serviceUrl, QUrlQuery pdata)
|
|
|
|
{
|
|
|
|
|
|
|
|
ReturnData_t ret; //this is a custom type to store the returned data
|
|
|
|
// Call the webservice
|
|
|
|
|
|
|
|
QNetworkRequest request(serviceUrl);
|
|
|
|
QAuthenticator authenticator;
|
|
|
|
authenticator.setUser("ZedlerDo");
|
|
|
|
authenticator.setPassword("LxyJQB");
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader,
|
2018-12-21 12:23:12 +01:00
|
|
|
"application/x-www-form-urlencoded");
|
2018-06-21 08:47:09 +02:00
|
|
|
|
|
|
|
//set ssl configuration
|
|
|
|
//send a POST request with the given url and data to the server
|
|
|
|
QNetworkReply* reply;
|
|
|
|
|
|
|
|
reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
|
|
|
|
|
|
|
|
//wait until the request has finished
|
|
|
|
QEventLoop loop;
|
|
|
|
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
|
|
|
|
loop.exec();
|
|
|
|
|
|
|
|
//get the status code
|
|
|
|
QVariant status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
|
|
|
|
|
|
|
|
ret.status_code = status_code.toInt();
|
|
|
|
if(ret.status_code == 0){ //if tehstatus code is zero, the connecion to the server was not possible
|
|
|
|
ret.status_code = 444;
|
|
|
|
}
|
|
|
|
//get the full text response
|
|
|
|
ret.text = QString::fromUtf8(reply->readAll());
|
|
|
|
|
|
|
|
//return the data
|
|
|
|
return(ret);
|
|
|
|
}
|