2014-08-17 12:56:05 +00:00
|
|
|
/* UpdateParser Implementation (Autoupdater component)
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2016-03-01 11:59:04 +00:00
|
|
|
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
2011-12-16 16:31:58 +00:00
|
|
|
|
2014-04-09 21:01:57 +00:00
|
|
|
#include <QDebug>
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
|
|
#include "updateparser.h"
|
|
|
|
|
2014-05-06 17:39:05 +00:00
|
|
|
#ifndef nullptr
|
|
|
|
#define nullptr NULL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-12-17 06:40:04 +00:00
|
|
|
Update::Update()
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
size = 0;
|
2011-12-17 06:40:04 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
Update::Update(const Update ©)
|
2011-12-17 06:40:04 +00:00
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
type = copy.type;
|
|
|
|
version = copy.version;
|
|
|
|
platform = copy.platform;
|
|
|
|
date = copy.date;
|
|
|
|
filename = copy.filename;
|
|
|
|
url = copy.url;
|
|
|
|
hash = copy.hash;
|
|
|
|
size = copy.size;
|
|
|
|
notes = copy.notes;
|
|
|
|
unzipped_path = copy.unzipped_path;
|
2011-12-17 06:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Update::Update(QString _type, QString _version, QString _platform, QDate _date)
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
type = _type;
|
|
|
|
version = _version;
|
|
|
|
platform = _platform;
|
|
|
|
date = _date;
|
|
|
|
size = 0;
|
2011-12-17 06:40:04 +00:00
|
|
|
}
|
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
bool UpdateParser::startDocument()
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
inRelease = false;
|
|
|
|
inUpdate = false;
|
|
|
|
inNotes = false;
|
|
|
|
inUpdateNotes = false;
|
2014-04-23 13:19:56 +00:00
|
|
|
release = nullptr;
|
|
|
|
update = nullptr;
|
2011-12-16 16:31:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
bool UpdateParser::endElement(const QString &namespaceURI, const QString &localName,
|
|
|
|
const QString &qName)
|
2011-12-16 16:31:58 +00:00
|
|
|
{
|
2011-12-17 06:59:40 +00:00
|
|
|
Q_UNUSED(namespaceURI)
|
|
|
|
Q_UNUSED(localName)
|
2014-04-17 05:52:25 +00:00
|
|
|
QString name = qName.toLower();
|
|
|
|
|
|
|
|
if (name == "release") {
|
|
|
|
inRelease = false;
|
2014-04-23 13:19:56 +00:00
|
|
|
release = nullptr;
|
2014-04-17 05:52:25 +00:00
|
|
|
} else if (inRelease && name == "update") {
|
|
|
|
inUpdate = false;
|
2014-04-23 13:19:56 +00:00
|
|
|
update = nullptr;
|
2014-04-17 05:52:25 +00:00
|
|
|
} else if (inUpdate && name == "notes") {
|
|
|
|
inUpdateNotes = false;
|
|
|
|
} else if (inRelease && name == "notes") {
|
|
|
|
inNotes = false;
|
|
|
|
}
|
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool UpdateParser::characters(const QString &ch)
|
|
|
|
{
|
|
|
|
if (inUpdateNotes) {
|
2014-04-17 05:52:25 +00:00
|
|
|
update->notes = ch;
|
2011-12-16 16:31:58 +00:00
|
|
|
} else if (inNotes) {
|
2014-04-17 05:52:25 +00:00
|
|
|
release->notes[platform] = ch;
|
2011-12-16 16:31:58 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-12 09:35:50 +00:00
|
|
|
UpdateStatus lookupUpdateStatus(QString stat)
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
UpdateStatus status = UPDATE_TESTING;
|
2012-01-12 09:35:50 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
if (stat == "testing") { status = UPDATE_TESTING; }
|
|
|
|
else if (stat == "beta") { status = UPDATE_BETA; }
|
|
|
|
else if (stat == "stable") { status = UPDATE_STABLE; }
|
|
|
|
else if (stat == "critical") { status = UPDATE_CRITICAL; }
|
2012-01-12 09:35:50 +00:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
bool UpdateParser::startElement(const QString &namespaceURI, const QString &localName,
|
|
|
|
const QString &qName, const QXmlAttributes &atts)
|
2011-12-16 16:31:58 +00:00
|
|
|
{
|
2011-12-17 06:59:40 +00:00
|
|
|
Q_UNUSED(namespaceURI)
|
|
|
|
Q_UNUSED(localName)
|
2014-04-17 05:52:25 +00:00
|
|
|
QString name = qName.toLower();
|
|
|
|
|
|
|
|
if (inRelease && name == "update") {
|
2011-12-16 16:31:58 +00:00
|
|
|
QString ver, type;
|
2014-04-17 05:52:25 +00:00
|
|
|
UpdateStatus updatestatus = UPDATE_TESTING;
|
|
|
|
|
|
|
|
for (int i = 0; i < atts.count(); i++) {
|
|
|
|
if (atts.localName(i) == "type") {
|
|
|
|
type = atts.value(i).toLower();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atts.localName(i) == "version") {
|
|
|
|
ver = atts.value(i).toLower();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atts.localName(i) == "platform") {
|
|
|
|
platform = atts.value(i).toLower();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atts.localName(i) == "release_date") {
|
|
|
|
release_date = atts.value(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atts.localName(i) == "status") {
|
|
|
|
updatestatus = lookupUpdateStatus(atts.value(i).toLower());
|
2012-01-12 09:35:50 +00:00
|
|
|
}
|
2011-12-16 16:31:58 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
QDate date = QDate::fromString(release_date, "yyyy-MM-dd");
|
|
|
|
|
|
|
|
if (!date.isValid()) { date = QDate::currentDate(); }
|
|
|
|
|
|
|
|
release->updates[platform].push_back(Update(type, ver, platform, date));
|
|
|
|
update = &release->updates[platform][release->updates[platform].size() - 1];
|
|
|
|
update->status = updatestatus;
|
|
|
|
inUpdate = true;
|
|
|
|
} else if (inRelease && name == "info") {
|
|
|
|
QString tmp = atts.value("url");
|
|
|
|
|
|
|
|
if (tmp.isEmpty()) { return false; }
|
|
|
|
|
|
|
|
release->info_url = tmp;
|
|
|
|
} else if (inUpdate && name == "file") {
|
|
|
|
for (int i = 0; i < atts.count(); i++) {
|
|
|
|
if (atts.localName(i) == "name") {
|
|
|
|
update->filename = atts.value(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atts.localName(i) == "size") {
|
2011-12-16 16:31:58 +00:00
|
|
|
bool ok;
|
2014-04-17 05:52:25 +00:00
|
|
|
update->size = atts.value(i).toLongLong(&ok);
|
2011-12-16 16:31:58 +00:00
|
|
|
//if (!ok) return false;
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
if (atts.localName(i) == "url") {
|
|
|
|
update->url = atts.value(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atts.localName(i) == "hash") {
|
|
|
|
update->hash = atts.value(i).toLower();
|
|
|
|
}
|
2011-12-16 16:31:58 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
} else if (inUpdate && name == "notes") {
|
|
|
|
inUpdateNotes = true;
|
|
|
|
} else if (inRelease && name == "notes") {
|
|
|
|
platform = "";
|
|
|
|
|
|
|
|
if (atts.count() >= 1) {
|
|
|
|
if (atts.localName(0) == "platform") {
|
|
|
|
platform = atts.value(0);
|
2011-12-16 16:31:58 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
inNotes = true;
|
|
|
|
} else if (name == "release") {
|
|
|
|
inRelease = true;
|
2012-01-12 09:35:50 +00:00
|
|
|
QString codename;
|
2014-04-17 05:52:25 +00:00
|
|
|
UpdateStatus status = UPDATE_TESTING;
|
|
|
|
|
|
|
|
for (int i = 0; i < atts.count(); i++) {
|
|
|
|
if (atts.localName(i) == "version") {
|
|
|
|
version = atts.value(i).toLower();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atts.localName(i) == "codename") {
|
|
|
|
codename = atts.value(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atts.localName(i) == "status") {
|
|
|
|
status = lookupUpdateStatus(atts.value(i).toLower());
|
2012-01-12 09:35:50 +00:00
|
|
|
}
|
2011-12-16 16:31:58 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
releases[version] = Release(version, codename, status);
|
|
|
|
release = &releases[version];
|
|
|
|
|
|
|
|
if (version > latest_version) { latest_version = version; }
|
2011-12-16 16:31:58 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool UpdateParser::endDocument()
|
|
|
|
{
|
|
|
|
/*for (QHash<QString,Release>::iterator r=releases.begin();r!=releases.end();r++) {
|
|
|
|
Release & rel=r.value();
|
|
|
|
qDebug() << "New Version" << r.key() << rel.codename << rel.notes;
|
|
|
|
for (QHash<QString,Update>::iterator u=rel.files.begin();u!=rel.files.end();u++) {
|
|
|
|
Update & up=u.value();
|
|
|
|
qDebug() << "Platform:" << u.key() << up.filename << up.date;
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|