]> git.sur5r.net Git - minitube/blobdiff - src/updatechecker.cpp
Imported Upstream version 2.1.3
[minitube] / src / updatechecker.cpp
index 35c4639dc2b937ea34f22fbde156117337ebda8d..af7c349e6d3c9522cb00e669a40e8c946b1fc0cd 100644 (file)
@@ -1,6 +1,29 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Minitube is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #include "updatechecker.h"
 #include "networkaccess.h"
-#include "Constants.h"
+#include "constants.h"
+#ifdef APP_ACTIVATION
+#include "activation.h"
+#endif
 
 namespace The {
     NetworkAccess* http();
@@ -11,8 +34,23 @@ UpdateChecker::UpdateChecker() {
 }
 
 void UpdateChecker::checkForUpdate() {
-    QUrl updateUrl(QString(Constants::WEBSITE) + "-ws/release.xml");
-    // QUrl updateUrl("http://flavio.tordini.org:8012/release.xml");
+    QUrl updateUrl(QLatin1String(Constants::WEBSITE) + "-ws/release.xml");
+    updateUrl.addQueryItem("v", Constants::VERSION);
+
+#ifdef APP_MAC
+    updateUrl.addQueryItem("os", "mac");
+#endif
+#ifdef APP_WIN
+    updateUrl.addQueryItem("os", "win");
+#endif
+#ifdef APP_ACTIVATION
+    QString t = "demo";
+    if (Activation::instance().isActivated()) t = "active";
+    updateUrl.addQueryItem("t", t);
+#endif
+#ifdef APP_MAC_STORE
+    updateUrl.addQueryItem("store", "mac");
+#endif
 
     QObject *reply = The::http()->get(updateUrl);
     connect(reply, SIGNAL(data(QByteArray)), SLOT(requestFinished(QByteArray)));
@@ -39,10 +77,10 @@ bool UpdateCheckerStreamReader::read(QByteArray data) {
     while (!atEnd()) {
         readNext();
         if (isStartElement()) {
-            if (name() == "release") {
+            if (name() == QLatin1String("release")) {
                 while (!atEnd()) {
                     readNext();
-                    if (isStartElement() && name() == "version") {
+                    if (isStartElement() && name() == QLatin1String("version")) {
                         QString remoteVersion = readElementText();
                         qDebug() << remoteVersion << QString(Constants::VERSION);
                         m_needUpdate = remoteVersion != QString(Constants::VERSION);