mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
161 lines
6.5 KiB
C++
161 lines
6.5 KiB
C++
//
|
|
// AccountServicesScriptingInterface.cpp
|
|
// interface/src/scripting
|
|
//
|
|
// Created by Thijs Wenker on 9/10/14.
|
|
// Copyright 2014 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 "AccountServicesScriptingInterface.h"
|
|
|
|
#include "AccountManager.h"
|
|
#include "Application.h"
|
|
#include "DiscoverabilityManager.h"
|
|
#include "ResourceCache.h"
|
|
|
|
AccountServicesScriptingInterface::AccountServicesScriptingInterface() {
|
|
auto accountManager = DependencyManager::get<AccountManager>();
|
|
connect(accountManager.data(), &AccountManager::usernameChanged, this, &AccountServicesScriptingInterface::onUsernameChanged);
|
|
connect(accountManager.data(), &AccountManager::logoutComplete, this, &AccountServicesScriptingInterface::loggedOut);
|
|
connect(accountManager.data(), &AccountManager::loginComplete, this, &AccountServicesScriptingInterface::connected);
|
|
|
|
_downloading = false;
|
|
QTimer* checkDownloadTimer = new QTimer(this);
|
|
connect(checkDownloadTimer, &QTimer::timeout, this, &AccountServicesScriptingInterface::checkDownloadInfo);
|
|
const int CHECK_DOWNLOAD_INTERVAL = MSECS_PER_SECOND / 2;
|
|
checkDownloadTimer->start(CHECK_DOWNLOAD_INTERVAL);
|
|
|
|
auto discoverabilityManager = DependencyManager::get<DiscoverabilityManager>();
|
|
connect(discoverabilityManager.data(), &DiscoverabilityManager::discoverabilityModeChanged,
|
|
this, &AccountServicesScriptingInterface::discoverabilityModeChanged);
|
|
|
|
_loggedIn = isLoggedIn();
|
|
emit loggedInChanged(_loggedIn);
|
|
}
|
|
|
|
AccountServicesScriptingInterface::~AccountServicesScriptingInterface() {
|
|
auto accountManager = DependencyManager::get<AccountManager>();
|
|
disconnect(accountManager.data(), &AccountManager::usernameChanged, this, &AccountServicesScriptingInterface::onUsernameChanged);
|
|
disconnect(accountManager.data(), &AccountManager::logoutComplete, this, &AccountServicesScriptingInterface::loggedOut);
|
|
disconnect(accountManager.data(), &AccountManager::loginComplete, this, &AccountServicesScriptingInterface::connected);
|
|
}
|
|
|
|
AccountServicesScriptingInterface* AccountServicesScriptingInterface::getInstance() {
|
|
static AccountServicesScriptingInterface sharedInstance;
|
|
return &sharedInstance;
|
|
}
|
|
|
|
const QString AccountServicesScriptingInterface::getUsername() const {
|
|
auto accountManager = DependencyManager::get<AccountManager>();
|
|
if (accountManager->isLoggedIn()) {
|
|
return accountManager->getAccountInfo().getUsername();
|
|
} else {
|
|
return "Unknown user";
|
|
}
|
|
}
|
|
|
|
bool AccountServicesScriptingInterface::isLoggedIn() {
|
|
auto accountManager = DependencyManager::get<AccountManager>();
|
|
return accountManager->isLoggedIn();
|
|
}
|
|
|
|
bool AccountServicesScriptingInterface::checkAndSignalForAccessToken() {
|
|
auto accountManager = DependencyManager::get<AccountManager>();
|
|
return accountManager->checkAndSignalForAccessToken();
|
|
}
|
|
|
|
void AccountServicesScriptingInterface::logOut() {
|
|
auto accountManager = DependencyManager::get<AccountManager>();
|
|
return accountManager->logout();
|
|
}
|
|
|
|
void AccountServicesScriptingInterface::loggedOut() {
|
|
emit AccountServicesScriptingInterface::disconnected(QString("logout"));
|
|
}
|
|
|
|
QString AccountServicesScriptingInterface::getFindableBy() const {
|
|
auto discoverabilityManager = DependencyManager::get<DiscoverabilityManager>();
|
|
return DiscoverabilityManager::findableByString(discoverabilityManager->getDiscoverabilityMode());
|
|
}
|
|
|
|
void AccountServicesScriptingInterface::setFindableBy(const QString& discoverabilityMode) {
|
|
auto discoverabilityManager = DependencyManager::get<DiscoverabilityManager>();
|
|
if (discoverabilityMode.toLower() == "none") {
|
|
discoverabilityManager->setDiscoverabilityMode(Discoverability::None);
|
|
} else if (discoverabilityMode.toLower() == "friends") {
|
|
discoverabilityManager->setDiscoverabilityMode(Discoverability::Friends);
|
|
} else if (discoverabilityMode.toLower() == "connections") {
|
|
discoverabilityManager->setDiscoverabilityMode(Discoverability::Connections);
|
|
} else if (discoverabilityMode.toLower() == "all") {
|
|
discoverabilityManager->setDiscoverabilityMode(Discoverability::All);
|
|
} else {
|
|
qDebug() << "GlobalServices setFindableBy called with an unrecognized value. Did not change discoverability.";
|
|
}
|
|
}
|
|
|
|
void AccountServicesScriptingInterface::discoverabilityModeChanged(Discoverability::Mode discoverabilityMode) {
|
|
emit findableByChanged(DiscoverabilityManager::findableByString(discoverabilityMode));
|
|
}
|
|
|
|
void AccountServicesScriptingInterface::onUsernameChanged(const QString& username) {
|
|
_loggedIn = (username != QString());
|
|
emit myUsernameChanged(username);
|
|
emit loggedInChanged(_loggedIn);
|
|
}
|
|
|
|
DownloadInfoResult::DownloadInfoResult() :
|
|
downloading(QList<float>()),
|
|
pending(0.0f)
|
|
{
|
|
}
|
|
|
|
QScriptValue DownloadInfoResultToScriptValue(QScriptEngine* engine, const DownloadInfoResult& result) {
|
|
QScriptValue object = engine->newObject();
|
|
|
|
QScriptValue array = engine->newArray(result.downloading.count());
|
|
for (int i = 0; i < result.downloading.count(); i += 1) {
|
|
array.setProperty(i, result.downloading[i]);
|
|
}
|
|
|
|
object.setProperty("downloading", array);
|
|
object.setProperty("pending", result.pending);
|
|
return object;
|
|
}
|
|
|
|
void DownloadInfoResultFromScriptValue(const QScriptValue& object, DownloadInfoResult& result) {
|
|
QList<QVariant> downloading = object.property("downloading").toVariant().toList();
|
|
result.downloading.clear();
|
|
for (int i = 0; i < downloading.count(); i += 1) {
|
|
result.downloading.append(downloading[i].toFloat());
|
|
}
|
|
|
|
result.pending = object.property("pending").toVariant().toFloat();
|
|
}
|
|
|
|
DownloadInfoResult AccountServicesScriptingInterface::getDownloadInfo() {
|
|
DownloadInfoResult result;
|
|
foreach(const auto& resource, ResourceCache::getLoadingRequests()) {
|
|
result.downloading.append(resource->getProgress() * 100.0f);
|
|
}
|
|
result.pending = ResourceCache::getPendingRequestCount();
|
|
return result;
|
|
}
|
|
|
|
void AccountServicesScriptingInterface::checkDownloadInfo() {
|
|
DownloadInfoResult downloadInfo = getDownloadInfo();
|
|
bool downloading = downloadInfo.downloading.count() > 0 || downloadInfo.pending > 0;
|
|
|
|
// Emit signal if downloading or have just finished.
|
|
if (downloading || _downloading) {
|
|
_downloading = downloading;
|
|
emit downloadInfoChanged(downloadInfo);
|
|
}
|
|
}
|
|
|
|
void AccountServicesScriptingInterface::updateDownloadInfo() {
|
|
emit downloadInfoChanged(getDownloadInfo());
|
|
}
|
|
|