2018-07-23 15:21:31 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2017-present, Status Research and Development GmbH.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rctstatus.h"
|
|
|
|
#include "bridge.h"
|
|
|
|
#include "eventdispatcher.h"
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QVariantMap>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QStandardPaths>
|
2018-09-07 09:53:43 +00:00
|
|
|
#include <QtConcurrent>
|
2018-07-23 15:21:31 +00:00
|
|
|
|
|
|
|
#include "libstatus.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct RegisterQMLMetaType {
|
|
|
|
RegisterQMLMetaType() {
|
|
|
|
qRegisterMetaType<RCTStatus*>();
|
|
|
|
}
|
|
|
|
} registerMetaType;
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
class RCTStatusPrivate {
|
|
|
|
public:
|
|
|
|
static Bridge* bridge;
|
|
|
|
static RCTStatus* rctStatus;
|
|
|
|
};
|
|
|
|
|
|
|
|
Bridge* RCTStatusPrivate::bridge = nullptr;
|
|
|
|
RCTStatus* RCTStatusPrivate::rctStatus = nullptr;
|
2018-11-06 16:01:43 +00:00
|
|
|
|
|
|
|
Q_LOGGING_CATEGORY(RCTSTATUS, "RCTStatus")
|
2018-07-23 15:21:31 +00:00
|
|
|
|
|
|
|
RCTStatus::RCTStatus(QObject* parent) : QObject(parent), d_ptr(new RCTStatusPrivate) {
|
|
|
|
RCTStatusPrivate::rctStatus = this;
|
2018-08-16 19:51:48 +00:00
|
|
|
SetSignalEventCallback((void*)&RCTStatus::statusGoEventCallback);
|
|
|
|
connect(this, &RCTStatus::statusGoEvent, this, &RCTStatus::onStatusGoEvent);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RCTStatus::~RCTStatus() {}
|
|
|
|
|
|
|
|
void RCTStatus::setBridge(Bridge* bridge) {
|
|
|
|
Q_D(RCTStatus);
|
|
|
|
d->bridge = bridge;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString RCTStatus::moduleName() {
|
|
|
|
return "Status";
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<ModuleMethod*> RCTStatus::methodsToExport() {
|
|
|
|
return QList<ModuleMethod*>{};
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariantMap RCTStatus::constantsToExport() {
|
|
|
|
return QVariantMap();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RCTStatus::getDeviceUUID(double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::getDeviceUUID call";
|
2018-07-23 15:21:31 +00:00
|
|
|
|
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{"com.status.StatusIm"});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-07 09:53:43 +00:00
|
|
|
void RCTStatus::startNode(QString configString) {
|
2018-07-23 15:21:31 +00:00
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::startNode call - configString:" << configString;
|
2018-07-23 15:21:31 +00:00
|
|
|
|
|
|
|
QJsonParseError jsonError;
|
2018-09-07 09:53:43 +00:00
|
|
|
const QJsonDocument& jsonDoc = QJsonDocument::fromJson(configString.toUtf8(), &jsonError);
|
2018-07-23 15:21:31 +00:00
|
|
|
if (jsonError.error != QJsonParseError::NoError){
|
2018-11-06 16:01:43 +00:00
|
|
|
qCWarning(RCTSTATUS) << jsonError.errorString();
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariantMap configJSON = jsonDoc.toVariant().toMap();
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::startNode configString: " << configJSON;
|
2018-07-23 15:21:31 +00:00
|
|
|
|
|
|
|
int networkId = configJSON["NetworkId"].toInt();
|
2018-09-07 09:53:43 +00:00
|
|
|
QString relativeDataDirPath = configJSON["DataDir"].toString();
|
|
|
|
if (!relativeDataDirPath.startsWith("/"))
|
|
|
|
relativeDataDirPath.prepend("/");
|
|
|
|
|
2018-09-26 14:40:41 +00:00
|
|
|
QString rootDirPath = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation);
|
2018-09-07 09:53:43 +00:00
|
|
|
QDir rootDir(rootDirPath);
|
|
|
|
QString absDataDirPath = rootDirPath + relativeDataDirPath;
|
|
|
|
QDir dataDir(absDataDirPath);
|
|
|
|
if (!dataDir.exists()) {
|
|
|
|
dataDir.mkpath(".");
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-07 09:53:43 +00:00
|
|
|
configJSON["DataDir"] = absDataDirPath;
|
2018-09-20 09:49:34 +00:00
|
|
|
configJSON["BackupDisabledDataDir"] = absDataDirPath;
|
2018-09-07 09:53:43 +00:00
|
|
|
configJSON["KeyStoreDir"] = rootDir.absoluteFilePath("keystore");
|
|
|
|
configJSON["LogFile"] = dataDir.absoluteFilePath("geth.log");
|
2018-07-23 15:21:31 +00:00
|
|
|
|
2018-09-07 09:53:43 +00:00
|
|
|
const QJsonDocument& updatedJsonDoc = QJsonDocument::fromVariant(configJSON);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCInfo(RCTSTATUS) << "::startNode updated configString: " << updatedJsonDoc.toVariant().toMap();
|
2018-09-07 09:53:43 +00:00
|
|
|
const char* result = StartNode(QString(updatedJsonDoc.toJson(QJsonDocument::Compact)).toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::startNode StartNode", result);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::stopNode() {
|
2018-11-06 16:01:43 +00:00
|
|
|
qCInfo(RCTSTATUS) << "::stopNode call";
|
2018-07-23 15:21:31 +00:00
|
|
|
const char* result = StopNode();
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::stopNode StopNode", result);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::createAccount(QString password, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCInfo(RCTSTATUS) << "::createAccount call - callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString password, double callbackId) {
|
|
|
|
const char* result = CreateAccount(password.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::createAccount CreateAccount", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, password, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::notifyUsers(QString token, QString payloadJSON, QString tokensJSON, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::notifyUsers call - callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString token, QString payloadJSON, QString tokensJSON, double callbackId) {
|
|
|
|
const char* result = NotifyUsers(token.toUtf8().data(), payloadJSON.toUtf8().data(), tokensJSON.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::notifyUsers Notify", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, token, payloadJSON, tokensJSON, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::addPeer(QString enode, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::addPeer call - callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString enode, double callbackId) {
|
|
|
|
const char* result = AddPeer(enode.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::addPeer AddPeer", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, enode, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::recoverAccount(QString passphrase, QString password, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCInfo(RCTSTATUS) << "::recoverAccount call - callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString passphrase, QString password, double callbackId) {
|
|
|
|
const char* result = RecoverAccount(password.toUtf8().data(), passphrase.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::recoverAccount RecoverAccount", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, passphrase, password, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::login(QString address, QString password, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCInfo(RCTSTATUS) << "::login call - callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString address, QString password, double callbackId) {
|
|
|
|
const char* result = Login(address.toUtf8().data(), password.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::login Login", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, address, password, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-20 11:05:51 +00:00
|
|
|
void RCTStatus::sendTransaction(QString txArgsJSON, QString password, double callbackId) {
|
2018-07-23 15:21:31 +00:00
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::sendTransaction call - callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString txArgsJSON, QString password, double callbackId) {
|
|
|
|
const char* result = SendTransaction(txArgsJSON.toUtf8().data(), password.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::sendTransaction SendTransaction", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, txArgsJSON, password, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 11:05:51 +00:00
|
|
|
|
|
|
|
void RCTStatus::signMessage(QString rpcParams, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::signMessage call - callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString rpcParams, double callbackId) {
|
|
|
|
const char* result = SignMessage(rpcParams.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::signMessage SignMessage", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, rpcParams, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2018-07-19 15:51:06 +00:00
|
|
|
void RCTStatus::signGroupMembership(QString content, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::signGroupMembership - callbackId:" << callbackId;
|
2018-07-19 15:51:06 +00:00
|
|
|
QtConcurrent::run([&](QString content, double callbackId) {
|
|
|
|
const char* result = SignGroupMembership(content.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::signGroupMembership SignGroupMembership", result);
|
2018-07-19 15:51:06 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, content, callbackId);
|
|
|
|
}
|
|
|
|
|
2018-10-01 08:47:20 +00:00
|
|
|
void RCTStatus::extractGroupMembershipSignatures(QString signatures, double callbackId) {
|
2018-07-19 15:51:06 +00:00
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::extractGroupMembershipSignatures - callbackId:" << callbackId;
|
2018-07-19 15:51:06 +00:00
|
|
|
QtConcurrent::run([&](QString signatures, double callbackId) {
|
2018-10-01 08:47:20 +00:00
|
|
|
const char* result = ExtractGroupMembershipSignatures(signatures.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::extractGroupMembershipSignatures ExtractGroupMembershipSignatures", result);
|
2018-07-19 15:51:06 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, signatures, callbackId);
|
|
|
|
}
|
2018-08-20 11:05:51 +00:00
|
|
|
|
2018-11-02 13:48:45 +00:00
|
|
|
void RCTStatus::enableInstallation(QString installationId, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
|
|
|
QtConcurrent::run([&](QString installationId, double callbackId) {
|
|
|
|
const char* result = EnableInstallation(installationId.toUtf8().data());
|
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, installationId, callbackId);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RCTStatus::disableInstallation(QString installationId, double callbackId) {
|
|
|
|
Q_D(RCTStatus);
|
|
|
|
QtConcurrent::run([&](QString installationId, double callbackId) {
|
|
|
|
const char* result = DisableInstallation(installationId.toUtf8().data());
|
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, installationId, callbackId);
|
|
|
|
}
|
|
|
|
|
2018-07-23 15:21:31 +00:00
|
|
|
void RCTStatus::setAdjustResize() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::setAdjustPan() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::setSoftInputMode(int i) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::clearCookies() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RCTStatus::clearStorageAPIs() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-20 11:05:51 +00:00
|
|
|
void RCTStatus::callRPC(QString payload, double callbackId) {
|
2018-07-23 15:21:31 +00:00
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::callRPC call - payload:" << payload.left(128) << "callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString payload, double callbackId) {
|
|
|
|
const char* result = CallRPC(payload.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::callRPC CallRPC", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, payload, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 11:05:51 +00:00
|
|
|
void RCTStatus::callPrivateRPC(QString payload, double callbackId) {
|
2018-07-23 15:21:31 +00:00
|
|
|
Q_D(RCTStatus);
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::callPrivateRPC call - payload:" << payload.left(128) << "callbackId:" << callbackId;
|
2018-09-07 09:53:43 +00:00
|
|
|
QtConcurrent::run([&](QString payload, double callbackId) {
|
|
|
|
const char* result = CallPrivateRPC(payload.toUtf8().data());
|
2018-11-06 16:01:43 +00:00
|
|
|
logStatusGoResult("::callPrivateRPC CallPrivateRPC", result);
|
2018-09-07 09:53:43 +00:00
|
|
|
d->bridge->invokePromiseCallback(callbackId, QVariantList{result});
|
|
|
|
}, payload, callbackId);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RCTStatus::closeApplication() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RCTStatus::JSCEnabled() {
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::JSCEnabled call";
|
2018-07-23 15:21:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-16 19:51:48 +00:00
|
|
|
void RCTStatus::statusGoEventCallback(const char* event) {
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::statusGoEventCallback call - event: " << event;
|
2018-08-16 19:51:48 +00:00
|
|
|
RCTStatusPrivate::rctStatus->emitStatusGoEvent(event);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 19:51:48 +00:00
|
|
|
void RCTStatus::emitStatusGoEvent(QString event) {
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::emitStatusGoEvent call - event: " << event;
|
2018-08-16 19:51:48 +00:00
|
|
|
Q_EMIT statusGoEvent(event);
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 19:51:48 +00:00
|
|
|
void RCTStatus::onStatusGoEvent(QString event) {
|
2018-11-06 16:01:43 +00:00
|
|
|
qCDebug(RCTSTATUS) << "::onStatusGoEvent call - event: " << event.toUtf8().data();
|
2018-08-16 19:51:48 +00:00
|
|
|
RCTStatusPrivate::bridge->eventDispatcher()->sendDeviceEvent("gethEvent", QVariantMap{{"jsonEvent", event.toUtf8().data()}});
|
2018-07-23 15:21:31 +00:00
|
|
|
}
|
2018-09-14 16:52:14 +00:00
|
|
|
|
2018-11-06 16:01:43 +00:00
|
|
|
void RCTStatus::logStatusGoResult(const char* methodName, const char* result)
|
2018-09-14 16:52:14 +00:00
|
|
|
{
|
|
|
|
QJsonParseError jsonError;
|
|
|
|
QJsonDocument jsonDoc = QJsonDocument::fromJson(QString(result).toUtf8(), &jsonError);
|
2018-11-06 16:01:43 +00:00
|
|
|
if (jsonError.error != QJsonParseError::NoError) {
|
|
|
|
qCWarning(RCTSTATUS) << qUtf8Printable(jsonError.errorString());
|
|
|
|
return;
|
2018-09-14 16:52:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-06 16:01:43 +00:00
|
|
|
QString error = jsonDoc.toVariant().toMap().value("error").toString();
|
|
|
|
if (error.isEmpty()) {
|
|
|
|
qCDebug(RCTSTATUS) << methodName << "succeeded";
|
|
|
|
} else {
|
|
|
|
qCWarning(RCTSTATUS) << methodName << "- error:" << qUtf8Printable(error);
|
|
|
|
}
|
2018-09-14 16:52:14 +00:00
|
|
|
}
|