mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 20:15:15 +02:00
45 lines
No EOL
1.7 KiB
C++
45 lines
No EOL
1.7 KiB
C++
//
|
|
// WalletScriptingInterface.cpp
|
|
// interface/src/scripting
|
|
//
|
|
// Created by Zach Fox on 2017-09-29.
|
|
// Copyright 2017 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "WalletScriptingInterface.h"
|
|
|
|
CheckoutProxy::CheckoutProxy(QObject* qmlObject, QObject* parent) : QmlWrapper(qmlObject, parent) {
|
|
Q_ASSERT(QThread::currentThread() == qApp->thread());
|
|
}
|
|
|
|
WalletScriptingInterface::WalletScriptingInterface() {
|
|
|
|
}
|
|
|
|
void WalletScriptingInterface::refreshWalletStatus() {
|
|
auto wallet = DependencyManager::get<Wallet>();
|
|
wallet->getWalletStatus();
|
|
}
|
|
|
|
void WalletScriptingInterface::setWalletStatus(const uint& status) {
|
|
_walletStatus = status;
|
|
emit DependencyManager::get<Wallet>()->walletStatusResult(status);
|
|
}
|
|
|
|
void WalletScriptingInterface::proveAvatarEntityOwnershipVerification(const QUuid& entityID) {
|
|
QSharedPointer<ContextOverlayInterface> contextOverlayInterface = DependencyManager::get<ContextOverlayInterface>();
|
|
EntityItemProperties entityProperties = DependencyManager::get<EntityScriptingInterface>()->getEntityProperties(entityID,
|
|
contextOverlayInterface->getEntityPropertyFlags());
|
|
if (entityProperties.getClientOnly()) {
|
|
if (!entityID.isNull() && entityProperties.getCertificateID().length() > 0) {
|
|
contextOverlayInterface->requestOwnershipVerification(entityID);
|
|
} else {
|
|
qCDebug(entities) << "Failed to prove ownership of:" << entityID << "is null or not a certified item";
|
|
}
|
|
} else {
|
|
qCDebug(entities) << "Failed to prove ownership of:" << entityID << "is not an avatar entity";
|
|
}
|
|
} |