1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

Rename MessageReciever class to Communicator

This commit is contained in:
Prasenjit Kumar Shaw 2019-06-30 17:51:07 +05:30
parent c1e49ec8a4
commit 5200faf1f2
5 changed files with 91 additions and 59 deletions

View File

@ -216,6 +216,7 @@ set(SRCS ${SRCS}
sidebar/bookmarkssidebar.cpp
sidebar/historysidebar.cpp
sidebar/sidebar.cpp
sync/communicator.cpp
sync/fxalogin.cpp
sync/synccrypto.cpp
tabwidget/combotabbar.cpp

View File

@ -0,0 +1,42 @@
/* ============================================================
* Falkon - Qt web browser
* Copyright (C) 2019 Prasenjit Kumar Shaw <shawprasenjit07@gmail.com>
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#include "communicator.h"
#include <QJsonObject>
Communicator::Communicator(QObject *parent)
: QObject(parent)
{
}
Communicator::~Communicator()
{
delete m_message;
}
void Communicator::receiveJSON(const QVariantMap &data)
{
QJsonObject obj = QJsonObject::fromVariantMap(data);
m_message = new QJsonObject(obj);
emit signalMessageReceived();
}
QJsonObject * Communicator::getMessage()
{
return m_message;
}

View File

@ -0,0 +1,40 @@
/* ============================================================
* Falkon - Qt web browser
* Copyright (C) 2019 Prasenjit Kumar Shaw <shawprasenjit07@gmail.com>
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#pragma once
#include <QObject>
#include <QJsonObject>
class Communicator : public QObject
{
Q_OBJECT
public:
Communicator(QObject *parent = nullptr);
~Communicator();
QJsonObject *getMessage();
public Q_SLOTS:
void receiveJSON(const QVariantMap &data);
Q_SIGNALS:
void signalMessageReceived();
private:
QJsonObject *m_message;
};

View File

@ -18,10 +18,9 @@
#include "fxalogin.h"
#include "javascript/externaljsobject.h"
#include "webpage.h"
#include "communicator.h"
#include "qztools.h"
#include <QWebEnginePage>
#include <QWebEngineScript>
#include <QWebChannel>
#include <QJsonObject>
#include <QDebug>
#include <QFile>
@ -30,10 +29,10 @@
FxALoginPage::FxALoginPage(QWidget* parent)
: QWebEngineView(parent)
{
m_communicator = new MessageReceiver(this);
m_communicator = new Communicator(this);
ExternalJsObject::registerExtraObject(QString("communicator"), m_communicator);
connect(m_communicator, &MessageReceiver::signalMessageReceived,
this, &FxALoginPage::slotMessageReceived);
connect(m_communicator, &Communicator::signalMessageReceived,
this, &FxALoginPage::slotMessageReceived);
m_page = new WebPage(this);
m_page->load(FxALoginUrl);
@ -49,12 +48,7 @@ FxALoginPage::~FxALoginPage()
void FxALoginPage::pageLoadFinished(bool pageLoaded)
{
if (pageLoaded) {
QFile scriptFile(":/data/inject.js");
if (!scriptFile.open(QIODevice::ReadOnly)) {
qWarning() << "Couldn't load JavaScript file to inject.";
}
QString injectScript = QString::fromUtf8(scriptFile.readAll());
scriptFile.close();
QString injectScript = QzTools::readAllFileContents(":/data/inject.js");
m_page->runJavaScript(injectScript, WebPage::SafeJsWorld);
}
}
@ -109,25 +103,3 @@ void FxALoginPage::sendMessage(QJsonObject msg)
m_page->runJavaScript(srcCode, WebPage::SafeJsWorld);
}
MessageReceiver::MessageReceiver(QObject *parent)
: QObject(parent)
{
}
MessageReceiver::~MessageReceiver()
{
delete m_message;
}
void MessageReceiver::receiveJSON(const QVariantMap &data)
{
QJsonObject obj = QJsonObject::fromVariantMap(data);
m_message = new QJsonObject(obj);
emit signalMessageReceived();
}
QJsonObject * MessageReceiver::getMessage()
{
return m_message;
}

View File

@ -21,12 +21,9 @@
#include <QWebEngineView>
#include <QObject>
class QWebChannel;
class QWebEngineScript;
class QWebEnginePage;
class QJsonObject;
class MessageReceiver;
class WebPage;
class Communicator;
class FxALoginPage : public QWebEngineView
{
@ -45,27 +42,7 @@ private:
void sendMessage(QJsonObject msg);
WebPage *m_page;
MessageReceiver *m_communicator;
Communicator *m_communicator;
const QUrl FxALoginUrl = QUrl("https://accounts.firefox.com/signin?service=sync&context=fx_desktop_v3");
};
class MessageReceiver : public QObject
{
Q_OBJECT
public:
MessageReceiver(QObject *parent = nullptr);
~MessageReceiver();
QJsonObject *getMessage();
public Q_SLOTS:
void receiveJSON(const QVariantMap &data);
Q_SIGNALS:
void signalMessageReceived();
private:
QJsonObject *m_message;
};