Port from QScriptEngine to QJSonDocument

preferencesAboutTextFull
Jonah Brüchert 5 years ago
parent 9adb8e6643
commit 77a2aff039
No known key found for this signature in database
GPG Key ID: A81E075ABEC80A7E
  1. 1
      OpenBoard.pro
  2. 8
      src/core/UBApplicationController.cpp
  3. 2
      src/core/UBApplicationController.h
  4. 38
      src/web/UBOEmbedParser.cpp

@ -34,7 +34,6 @@ QT += webkit
QT += svg
QT += network
QT += xml
QT += script
QT += xmlpatterns
QT += uitools
QT += multimedia

@ -543,19 +543,17 @@ void UBApplicationController::downloadJsonFinished(QString currentJson)
}
*/
QScriptValue scriptValue;
QScriptEngine scriptEngine;
scriptValue = scriptEngine.evaluate ("(" + currentJson + ")");
QJsonObject jsonObject = QJsonDocument::fromJson(currentJson.toUtf8()).object();
UBVersion installedVersion (qApp->applicationVersion());
UBVersion jsonVersion (scriptValue.property("version").toString());
UBVersion jsonVersion (jsonObject.value("version").toString());
qDebug() << "json version: " << jsonVersion.toUInt();
qDebug() << "installed version: " << installedVersion.toUInt();
if (jsonVersion > installedVersion) {
if (UBApplication::mainWindow->yesNoQuestion(tr("Update available"), tr ("New update available, would you go to the web page ?"))){
QUrl url(scriptValue.property("url").toString());
QUrl url(jsonObject.value("url").toString());
QDesktopServices::openUrl(url);
}
}

@ -38,8 +38,6 @@
#include <QtNetwork/QHttpPart>
#include <QScriptValue>
#include <QScriptEngine>
class UBBoardView;

@ -32,9 +32,9 @@
#include <QDomDocument>
#include <QDomElement>
#include <QDomNode>
#include <QScriptValue>
#include <QScriptEngine>
#include <QDebug>
#include <QJsonDocument>
#include <QJsonObject>
#include "UBOEmbedParser.h"
@ -119,23 +119,21 @@ sOEmbedContent UBOEmbedParser::getJSONInfos(const QString &json)
{
sOEmbedContent content;
QScriptValue scriptValue;
QScriptEngine scriptEngine;
scriptValue = scriptEngine.evaluate ("(" + json + ")");
QString providerUrl = scriptValue.property("provider_url").toString();
QString title = scriptValue.property("title").toString();
QString html = scriptValue.property("html").toString();
QString authorName = scriptValue.property("author_name").toString();
int height = scriptValue.property("height").toInteger();
int thumbnailWidth = scriptValue.property("thumbnail_width").toInteger();
int width = scriptValue.property("width").toInteger();
float version = scriptValue.property("version").toString().toFloat();
QString authorUrl = scriptValue.property("author_url").toString();
QString providerName = scriptValue.property("provider_name").toString();
QString thumbnailUrl = scriptValue.property("thumbnail_url").toString();
QString type = scriptValue.property("type").toString();
int thumbnailHeight = scriptValue.property("thumbnail_height").toInteger();
QJsonObject jsonObject = QJsonDocument::fromJson(json.toUtf8()).object();
QString providerUrl = jsonObject.value("provider_url").toString();
QString title = jsonObject.value("title").toString();
QString html = jsonObject.value("html").toString();
QString authorName = jsonObject.value("author_name").toString();
int height = jsonObject.value("height").toInt();
int thumbnailWidth = jsonObject.value("thumbnail_width").toInt();
int width = jsonObject.value("width").toInt();
float version = jsonObject.value("version").toString().toFloat();
QString authorUrl = jsonObject.value("author_url").toString();
QString providerName = jsonObject.value("provider_name").toString();
QString thumbnailUrl = jsonObject.value("thumbnail_url").toString();
QString type = jsonObject.value("type").toString();
int thumbnailHeight = jsonObject.value("thumbnail_height").toInt();
content.providerUrl = providerUrl;
content.title = title;
@ -152,7 +150,7 @@ sOEmbedContent UBOEmbedParser::getJSONInfos(const QString &json)
content.thumbHeight = thumbnailHeight;
if("photo" == content.type){
content.url = scriptValue.property("url").toString();
content.url = jsonObject.value("url").toString();
}else if("video" == content.type){
QStringList strl = content.html.split('\"');
for(int i=0; i<strl.size(); i++){

Loading…
Cancel
Save