2015-04-09 17:19:17 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Olivier Goffart <ogoffart@woboq.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
|
2016-10-25 12:00:07 +03:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2015-04-09 17:19:17 +03:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "accountmanager.h"
|
2017-08-16 09:36:52 +03:00
|
|
|
#include "configfile.h"
|
2015-04-17 18:56:17 +03:00
|
|
|
#include "sslerrordialog.h"
|
2015-07-16 15:21:51 +03:00
|
|
|
#include "proxyauthhandler.h"
|
2019-03-01 10:46:33 +03:00
|
|
|
#include "common/asserts.h"
|
2015-04-09 17:19:17 +03:00
|
|
|
#include <theme.h>
|
|
|
|
#include <creds/credentialsfactory.h>
|
|
|
|
#include <creds/abstractcredentials.h>
|
|
|
|
#include <cookiejar.h>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QNetworkAccessManager>
|
2018-01-21 21:50:40 +03:00
|
|
|
#include <QMessageBox>
|
|
|
|
#include "clientsideencryption.h"
|
2018-06-21 20:57:51 +03:00
|
|
|
#include "ui_mnemonicdialog.h"
|
2015-04-09 17:19:17 +03:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
static const char urlC[] = "url";
|
|
|
|
static const char authTypeC[] = "authType";
|
|
|
|
static const char userC[] = "user";
|
|
|
|
static const char httpUserC[] = "http_user";
|
2018-10-05 20:45:43 +03:00
|
|
|
static const char davUserC[] = "dav_user";
|
2015-04-09 17:19:17 +03:00
|
|
|
static const char caCertsKeyC[] = "CaCertificates";
|
2015-04-24 11:18:33 +03:00
|
|
|
static const char accountsC[] = "Accounts";
|
2015-09-03 07:23:19 +03:00
|
|
|
static const char versionC[] = "version";
|
2016-03-02 13:59:36 +03:00
|
|
|
static const char serverVersionC[] = "serverVersion";
|
2018-05-02 16:40:54 +03:00
|
|
|
|
|
|
|
// The maximum versions that this client can read
|
|
|
|
static const int maxAccountsVersion = 2;
|
|
|
|
static const int maxAccountVersion = 1;
|
2015-04-09 17:19:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace OCC {
|
|
|
|
|
2017-12-28 22:33:10 +03:00
|
|
|
Q_LOGGING_CATEGORY(lcAccountManager, "nextcloud.gui.account.manager", QtInfoMsg)
|
2017-05-09 15:24:11 +03:00
|
|
|
|
2015-04-09 17:19:17 +03:00
|
|
|
AccountManager *AccountManager::instance()
|
|
|
|
{
|
|
|
|
static AccountManager instance;
|
|
|
|
return &instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AccountManager::restore()
|
2015-04-23 16:42:18 +03:00
|
|
|
{
|
2018-05-14 15:37:48 +03:00
|
|
|
QStringList skipSettingsKeys;
|
|
|
|
backwardMigrationSettingsKeys(&skipSettingsKeys, &skipSettingsKeys);
|
|
|
|
|
2017-08-16 09:36:52 +03:00
|
|
|
auto settings = ConfigFile::settingsWithGroup(QLatin1String(accountsC));
|
2018-10-13 19:45:01 +03:00
|
|
|
if (settings->status() != QSettings::NoError || !settings->isWritable()) {
|
2017-03-30 14:46:20 +03:00
|
|
|
qCWarning(lcAccountManager) << "Could not read settings from" << settings->fileName()
|
2017-02-08 16:28:50 +03:00
|
|
|
<< settings->status();
|
|
|
|
return false;
|
|
|
|
}
|
2015-04-23 16:42:18 +03:00
|
|
|
|
2018-05-14 15:37:48 +03:00
|
|
|
if (skipSettingsKeys.contains(settings->group())) {
|
|
|
|
// Should not happen: bad container keys should have been deleted
|
|
|
|
qCWarning(lcAccountManager) << "Accounts structure is too new, ignoring";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-23 16:42:18 +03:00
|
|
|
// If there are no accounts, check the old format.
|
2015-09-03 07:23:19 +03:00
|
|
|
if (settings->childGroups().isEmpty()
|
|
|
|
&& !settings->contains(QLatin1String(versionC))) {
|
2017-02-08 16:28:50 +03:00
|
|
|
restoreFromLegacySettings();
|
|
|
|
return true;
|
2015-04-23 16:42:18 +03:00
|
|
|
}
|
|
|
|
|
2020-09-27 14:02:27 +03:00
|
|
|
for (const auto &accountId : settings->childGroups()) {
|
2015-04-23 16:42:18 +03:00
|
|
|
settings->beginGroup(accountId);
|
2018-05-14 15:37:48 +03:00
|
|
|
if (!skipSettingsKeys.contains(settings->group())) {
|
|
|
|
if (auto acc = loadAccountHelper(*settings)) {
|
|
|
|
acc->_id = accountId;
|
|
|
|
if (auto accState = AccountState::loadFromSettings(acc, *settings)) {
|
2019-03-01 10:46:33 +03:00
|
|
|
auto jar = qobject_cast<CookieJar*>(acc->_am->cookieJar());
|
|
|
|
ASSERT(jar);
|
|
|
|
if (jar)
|
|
|
|
jar->restore(acc->cookieJarPath());
|
2018-05-14 15:37:48 +03:00
|
|
|
addAccountState(accState);
|
|
|
|
}
|
2016-03-01 18:08:23 +03:00
|
|
|
}
|
2018-05-14 15:37:48 +03:00
|
|
|
} else {
|
|
|
|
qCInfo(lcAccountManager) << "Account" << accountId << "is too new, ignoring";
|
|
|
|
_additionalBlockedAccountIds.insert(accountId);
|
2015-04-23 16:42:18 +03:00
|
|
|
}
|
|
|
|
settings->endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-14 15:37:48 +03:00
|
|
|
void AccountManager::backwardMigrationSettingsKeys(QStringList *deleteKeys, QStringList *ignoreKeys)
|
2018-05-02 16:40:54 +03:00
|
|
|
{
|
|
|
|
auto settings = ConfigFile::settingsWithGroup(QLatin1String(accountsC));
|
|
|
|
const int accountsVersion = settings->value(QLatin1String(versionC)).toInt();
|
|
|
|
if (accountsVersion <= maxAccountsVersion) {
|
|
|
|
foreach (const auto &accountId, settings->childGroups()) {
|
|
|
|
settings->beginGroup(accountId);
|
|
|
|
const int accountVersion = settings->value(QLatin1String(versionC), 1).toInt();
|
|
|
|
if (accountVersion > maxAccountVersion) {
|
2018-05-14 15:37:48 +03:00
|
|
|
ignoreKeys->append(settings->group());
|
2018-05-02 16:40:54 +03:00
|
|
|
}
|
|
|
|
settings->endGroup();
|
|
|
|
}
|
|
|
|
} else {
|
2018-05-14 15:37:48 +03:00
|
|
|
deleteKeys->append(settings->group());
|
2018-05-02 16:40:54 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 16:42:18 +03:00
|
|
|
bool AccountManager::restoreFromLegacySettings()
|
2015-04-09 17:19:17 +03:00
|
|
|
{
|
2017-03-30 14:46:20 +03:00
|
|
|
qCInfo(lcAccountManager) << "Migrate: restoreFromLegacySettings, checking settings group"
|
2017-02-08 16:28:50 +03:00
|
|
|
<< Theme::instance()->appName();
|
|
|
|
|
2015-04-09 17:19:17 +03:00
|
|
|
// try to open the correctly themed settings
|
2017-08-16 09:36:52 +03:00
|
|
|
auto settings = ConfigFile::settingsWithGroup(Theme::instance()->appName());
|
2015-04-09 17:19:17 +03:00
|
|
|
|
|
|
|
// if the settings file could not be opened, the childKeys list is empty
|
2015-04-23 16:42:18 +03:00
|
|
|
// then try to load settings from a very old place
|
2015-04-09 17:19:17 +03:00
|
|
|
if (settings->childKeys().isEmpty()) {
|
|
|
|
// Now try to open the original ownCloud settings to see if they exist.
|
|
|
|
QString oCCfgFile = QDir::fromNativeSeparators(settings->fileName());
|
|
|
|
// replace the last two segments with ownCloud/owncloud.cfg
|
|
|
|
oCCfgFile = oCCfgFile.left(oCCfgFile.lastIndexOf('/'));
|
|
|
|
oCCfgFile = oCCfgFile.left(oCCfgFile.lastIndexOf('/'));
|
|
|
|
oCCfgFile += QLatin1String("/ownCloud/owncloud.cfg");
|
|
|
|
|
2017-03-30 14:46:20 +03:00
|
|
|
qCInfo(lcAccountManager) << "Migrate: checking old config " << oCCfgFile;
|
2015-04-09 17:19:17 +03:00
|
|
|
|
|
|
|
QFileInfo fi(oCCfgFile);
|
|
|
|
if (fi.isReadable()) {
|
2017-02-08 14:30:32 +03:00
|
|
|
std::unique_ptr<QSettings> oCSettings(new QSettings(oCCfgFile, QSettings::IniFormat));
|
2015-04-09 17:19:17 +03:00
|
|
|
oCSettings->beginGroup(QLatin1String("ownCloud"));
|
|
|
|
|
|
|
|
// Check the theme url to see if it is the same url that the oC config was for
|
|
|
|
QString overrideUrl = Theme::instance()->overrideServerUrl();
|
|
|
|
if (!overrideUrl.isEmpty()) {
|
|
|
|
if (overrideUrl.endsWith('/')) {
|
|
|
|
overrideUrl.chop(1);
|
|
|
|
}
|
|
|
|
QString oCUrl = oCSettings->value(QLatin1String(urlC)).toString();
|
|
|
|
if (oCUrl.endsWith('/')) {
|
|
|
|
oCUrl.chop(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// in case the urls are equal reset the settings object to read from
|
|
|
|
// the ownCloud settings object
|
2017-03-30 14:46:20 +03:00
|
|
|
qCInfo(lcAccountManager) << "Migrate oC config if " << oCUrl << " == " << overrideUrl << ":"
|
2015-04-23 16:42:18 +03:00
|
|
|
<< (oCUrl == overrideUrl ? "Yes" : "No");
|
2015-04-09 17:19:17 +03:00
|
|
|
if (oCUrl == overrideUrl) {
|
2017-02-08 14:30:32 +03:00
|
|
|
settings = std::move(oCSettings);
|
2015-04-09 17:19:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 16:42:18 +03:00
|
|
|
// Try to load the single account.
|
2015-04-09 17:19:17 +03:00
|
|
|
if (!settings->childKeys().isEmpty()) {
|
2016-03-01 18:08:23 +03:00
|
|
|
if (auto acc = loadAccountHelper(*settings)) {
|
2015-04-23 16:42:18 +03:00
|
|
|
addAccount(acc);
|
|
|
|
return true;
|
2015-04-09 17:19:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-06 13:49:18 +03:00
|
|
|
void AccountManager::save(bool saveCredentials)
|
2015-04-09 17:19:17 +03:00
|
|
|
{
|
2017-08-16 09:36:52 +03:00
|
|
|
auto settings = ConfigFile::settingsWithGroup(QLatin1String(accountsC));
|
2018-05-02 16:40:54 +03:00
|
|
|
settings->setValue(QLatin1String(versionC), maxAccountsVersion);
|
2020-09-27 14:02:27 +03:00
|
|
|
for (const auto &acc : qAsConst(_accounts)) {
|
2015-04-23 16:42:18 +03:00
|
|
|
settings->beginGroup(acc->account()->id());
|
2016-03-01 18:08:23 +03:00
|
|
|
saveAccountHelper(acc->account().data(), *settings, saveCredentials);
|
|
|
|
acc->writeToSettings(*settings);
|
2015-04-23 16:42:18 +03:00
|
|
|
settings->endGroup();
|
2015-04-17 18:56:17 +03:00
|
|
|
}
|
2015-09-17 14:48:05 +03:00
|
|
|
|
|
|
|
settings->sync();
|
2017-03-30 14:46:20 +03:00
|
|
|
qCInfo(lcAccountManager) << "Saved all account settings, status:" << settings->status();
|
2015-04-17 18:56:17 +03:00
|
|
|
}
|
|
|
|
|
2016-03-01 18:08:23 +03:00
|
|
|
void AccountManager::saveAccount(Account *a)
|
2015-08-14 12:31:01 +03:00
|
|
|
{
|
2020-07-08 16:49:27 +03:00
|
|
|
qCDebug(lcAccountManager) << "Saving account" << a->url().toString();
|
2017-08-16 09:36:52 +03:00
|
|
|
auto settings = ConfigFile::settingsWithGroup(QLatin1String(accountsC));
|
2015-08-14 12:31:01 +03:00
|
|
|
settings->beginGroup(a->id());
|
2016-03-01 18:08:23 +03:00
|
|
|
saveAccountHelper(a, *settings, false); // don't save credentials they might not have been loaded yet
|
2015-08-14 12:31:01 +03:00
|
|
|
settings->endGroup();
|
2015-09-17 14:48:05 +03:00
|
|
|
|
|
|
|
settings->sync();
|
2020-07-08 16:49:27 +03:00
|
|
|
qCDebug(lcAccountManager) << "Saved account settings, status:" << settings->status();
|
2015-08-14 12:31:01 +03:00
|
|
|
}
|
|
|
|
|
2016-03-01 18:08:23 +03:00
|
|
|
void AccountManager::saveAccountState(AccountState *a)
|
|
|
|
{
|
2020-07-08 16:49:27 +03:00
|
|
|
qCDebug(lcAccountManager) << "Saving account state" << a->account()->url().toString();
|
2017-08-16 09:36:52 +03:00
|
|
|
auto settings = ConfigFile::settingsWithGroup(QLatin1String(accountsC));
|
2016-03-01 18:08:23 +03:00
|
|
|
settings->beginGroup(a->account()->id());
|
|
|
|
a->writeToSettings(*settings);
|
|
|
|
settings->endGroup();
|
|
|
|
|
|
|
|
settings->sync();
|
2020-07-08 16:49:27 +03:00
|
|
|
qCDebug(lcAccountManager) << "Saved account state settings, status:" << settings->status();
|
2016-03-01 18:08:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void AccountManager::saveAccountHelper(Account *acc, QSettings &settings, bool saveCredentials)
|
2015-04-17 18:56:17 +03:00
|
|
|
{
|
2018-05-02 16:40:54 +03:00
|
|
|
settings.setValue(QLatin1String(versionC), maxAccountVersion);
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.setValue(QLatin1String(urlC), acc->_url.toString());
|
2018-10-05 20:45:43 +03:00
|
|
|
settings.setValue(QLatin1String(davUserC), acc->_davUser);
|
2016-03-02 13:59:36 +03:00
|
|
|
settings.setValue(QLatin1String(serverVersionC), acc->_serverVersion);
|
2015-04-09 17:19:17 +03:00
|
|
|
if (acc->_credentials) {
|
2015-08-06 13:49:18 +03:00
|
|
|
if (saveCredentials) {
|
|
|
|
// Only persist the credentials if the parameter is set, on migration from 1.8.x
|
|
|
|
// we want to save the accounts but not overwrite the credentials
|
|
|
|
// (This is easier than asynchronously fetching the credentials from keychain and then
|
|
|
|
// re-persisting them)
|
|
|
|
acc->_credentials->persist();
|
|
|
|
}
|
2020-09-27 14:02:27 +03:00
|
|
|
for (const auto &key : acc->_settingsMap.keys()) {
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.setValue(key, acc->_settingsMap.value(key));
|
2015-04-09 17:19:17 +03:00
|
|
|
}
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.setValue(QLatin1String(authTypeC), acc->_credentials->authType());
|
2015-04-09 17:19:17 +03:00
|
|
|
|
|
|
|
// HACK: Save http_user also as user
|
|
|
|
if (acc->_settingsMap.contains(httpUserC))
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.setValue(userC, acc->_settingsMap.value(httpUserC));
|
2015-04-09 17:19:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Save accepted certificates.
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.beginGroup(QLatin1String("General"));
|
2017-03-30 14:46:20 +03:00
|
|
|
qCInfo(lcAccountManager) << "Saving " << acc->approvedCerts().count() << " unknown certs.";
|
2015-04-09 17:19:17 +03:00
|
|
|
QByteArray certs;
|
2020-09-27 14:02:27 +03:00
|
|
|
for (const auto &cert : acc->approvedCerts()) {
|
2015-04-09 17:19:17 +03:00
|
|
|
certs += cert.toPem() + '\n';
|
|
|
|
}
|
|
|
|
if (!certs.isEmpty()) {
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.setValue(QLatin1String(caCertsKeyC), certs);
|
2015-04-09 17:19:17 +03:00
|
|
|
}
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.endGroup();
|
2015-04-09 17:19:17 +03:00
|
|
|
|
|
|
|
// Save cookies.
|
|
|
|
if (acc->_am) {
|
2020-05-18 21:54:23 +03:00
|
|
|
auto *jar = qobject_cast<CookieJar *>(acc->_am->cookieJar());
|
2015-04-09 17:19:17 +03:00
|
|
|
if (jar) {
|
2017-03-30 14:46:20 +03:00
|
|
|
qCInfo(lcAccountManager) << "Saving cookies." << acc->cookieJarPath();
|
2020-01-24 19:57:34 +03:00
|
|
|
if (!jar->save(acc->cookieJarPath()))
|
|
|
|
{
|
|
|
|
qCWarning(lcAccountManager) << "Failed to save cookies to" << acc->cookieJarPath();
|
|
|
|
}
|
2015-04-09 17:19:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 18:08:23 +03:00
|
|
|
AccountPtr AccountManager::loadAccountHelper(QSettings &settings)
|
2015-04-23 16:42:18 +03:00
|
|
|
{
|
2016-10-11 12:46:51 +03:00
|
|
|
auto urlConfig = settings.value(QLatin1String(urlC));
|
|
|
|
if (!urlConfig.isValid()) {
|
|
|
|
// No URL probably means a corrupted entry in the account settings
|
2017-03-30 14:46:20 +03:00
|
|
|
qCWarning(lcAccountManager) << "No URL for account " << settings.group();
|
2016-10-11 12:46:51 +03:00
|
|
|
return AccountPtr();
|
|
|
|
}
|
|
|
|
|
2015-07-16 15:21:51 +03:00
|
|
|
auto acc = createAccount();
|
2015-04-23 16:42:18 +03:00
|
|
|
|
2016-04-15 14:16:49 +03:00
|
|
|
QString authType = settings.value(QLatin1String(authTypeC)).toString();
|
2017-01-03 12:37:42 +03:00
|
|
|
|
|
|
|
// There was an account-type saving bug when 'skip folder config' was used
|
|
|
|
// See #5408. This attempts to fix up the "dummy" authType
|
|
|
|
if (authType == QLatin1String("dummy")) {
|
|
|
|
if (settings.contains(QLatin1String("http_user"))) {
|
|
|
|
authType = "http";
|
|
|
|
} else if (settings.contains(QLatin1String("shibboleth_shib_user"))) {
|
|
|
|
authType = "shibboleth";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-15 14:16:49 +03:00
|
|
|
QString overrideUrl = Theme::instance()->overrideServerUrl();
|
2016-06-28 15:27:00 +03:00
|
|
|
QString forceAuth = Theme::instance()->forceConfigAuthType();
|
|
|
|
if (!forceAuth.isEmpty() && !overrideUrl.isEmpty()) {
|
|
|
|
// If forceAuth is set, this might also mean the overrideURL has changed.
|
|
|
|
// See enterprise issues #1126
|
2016-04-15 14:16:49 +03:00
|
|
|
acc->setUrl(overrideUrl);
|
2016-06-28 15:27:00 +03:00
|
|
|
authType = forceAuth;
|
2016-04-15 14:16:49 +03:00
|
|
|
} else {
|
2016-10-11 12:46:51 +03:00
|
|
|
acc->setUrl(urlConfig.toUrl());
|
2016-04-15 14:16:49 +03:00
|
|
|
}
|
2017-01-11 11:30:59 +03:00
|
|
|
|
2018-11-02 11:49:43 +03:00
|
|
|
// Migrate to webflow
|
|
|
|
if (authType == QLatin1String("http")) {
|
|
|
|
authType = "webflow";
|
|
|
|
settings.setValue(QLatin1String(authTypeC), authType);
|
|
|
|
|
2020-09-27 14:02:27 +03:00
|
|
|
for (const QString &key : settings.childKeys()) {
|
2018-11-02 11:49:43 +03:00
|
|
|
if (!key.startsWith("http_"))
|
|
|
|
continue;
|
|
|
|
auto newkey = QString::fromLatin1("webflow_").append(key.mid(5));
|
|
|
|
settings.setValue(newkey, settings.value((key)));
|
|
|
|
settings.remove(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-30 14:46:20 +03:00
|
|
|
qCInfo(lcAccountManager) << "Account for" << acc->url() << "using auth type" << authType;
|
2017-01-11 11:30:59 +03:00
|
|
|
|
2016-03-02 13:59:36 +03:00
|
|
|
acc->_serverVersion = settings.value(QLatin1String(serverVersionC)).toString();
|
2021-08-11 16:18:22 +03:00
|
|
|
acc->_davUser = settings.value(QLatin1String(davUserC), "").toString();
|
2015-04-23 16:42:18 +03:00
|
|
|
|
|
|
|
// We want to only restore settings for that auth type and the user value
|
2015-04-24 11:18:33 +03:00
|
|
|
acc->_settingsMap.insert(QLatin1String(userC), settings.value(userC));
|
2016-04-15 14:16:49 +03:00
|
|
|
QString authTypePrefix = authType + "_";
|
2020-09-27 14:02:27 +03:00
|
|
|
for (const auto &key : settings.childKeys()) {
|
2015-04-23 16:42:18 +03:00
|
|
|
if (!key.startsWith(authTypePrefix))
|
|
|
|
continue;
|
2015-04-24 11:18:33 +03:00
|
|
|
acc->_settingsMap.insert(key, settings.value(key));
|
2015-04-23 16:42:18 +03:00
|
|
|
}
|
|
|
|
|
2016-04-15 14:16:49 +03:00
|
|
|
acc->setCredentials(CredentialsFactory::create(authType));
|
2015-04-23 16:42:18 +03:00
|
|
|
|
2017-01-02 10:34:02 +03:00
|
|
|
// now the server cert, it is in the general group
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.beginGroup(QLatin1String("General"));
|
2020-02-10 15:08:19 +03:00
|
|
|
const auto certs = QSslCertificate::fromData(settings.value(caCertsKeyC).toByteArray());
|
|
|
|
qCInfo(lcAccountManager) << "Restored: " << certs.count() << " unknown certs.";
|
|
|
|
acc->setApprovedCerts(certs);
|
2015-04-24 11:18:33 +03:00
|
|
|
settings.endGroup();
|
|
|
|
|
2015-04-23 16:42:18 +03:00
|
|
|
return acc;
|
|
|
|
}
|
|
|
|
|
2015-11-12 19:50:00 +03:00
|
|
|
AccountStatePtr AccountManager::account(const QString &name)
|
|
|
|
{
|
2020-09-27 14:02:27 +03:00
|
|
|
const auto it = std::find_if(_accounts.cbegin(), _accounts.cend(), [name](const auto &acc) {
|
|
|
|
return acc->account()->displayName() == name;
|
|
|
|
});
|
|
|
|
return it != _accounts.cend() ? *it : AccountStatePtr();
|
2015-11-12 19:50:00 +03:00
|
|
|
}
|
|
|
|
|
2015-04-27 18:43:07 +03:00
|
|
|
AccountState *AccountManager::addAccount(const AccountPtr &newAccount)
|
2015-04-17 18:56:17 +03:00
|
|
|
{
|
2015-04-24 08:02:51 +03:00
|
|
|
auto id = newAccount->id();
|
|
|
|
if (id.isEmpty() || !isAccountIdAvailable(id)) {
|
|
|
|
id = generateFreeAccountId();
|
|
|
|
}
|
|
|
|
newAccount->_id = id;
|
|
|
|
|
2016-03-01 18:08:23 +03:00
|
|
|
auto newAccountState = new AccountState(newAccount);
|
|
|
|
addAccountState(newAccountState);
|
|
|
|
return newAccountState;
|
2015-04-17 18:56:17 +03:00
|
|
|
}
|
|
|
|
|
2015-05-12 16:16:32 +03:00
|
|
|
void AccountManager::deleteAccount(AccountState *account)
|
|
|
|
{
|
|
|
|
auto it = std::find(_accounts.begin(), _accounts.end(), account);
|
|
|
|
if (it == _accounts.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto copy = *it; // keep a reference to the shared pointer so it does not delete it just yet
|
|
|
|
_accounts.erase(it);
|
2015-05-12 16:37:16 +03:00
|
|
|
|
2017-05-22 10:32:11 +03:00
|
|
|
// Forget account credentials, cookies
|
|
|
|
account->account()->credentials()->forgetSensitiveData();
|
2017-01-26 12:54:03 +03:00
|
|
|
QFile::remove(account->account()->cookieJarPath());
|
|
|
|
|
2017-08-16 09:36:52 +03:00
|
|
|
auto settings = ConfigFile::settingsWithGroup(QLatin1String(accountsC));
|
2015-05-12 16:37:16 +03:00
|
|
|
settings->remove(account->account()->id());
|
|
|
|
|
2017-12-20 17:35:23 +03:00
|
|
|
// Forget E2E keys
|
2021-01-19 17:09:38 +03:00
|
|
|
account->account()->e2e()->forgetSensitiveData(account->account());
|
2017-12-20 17:35:23 +03:00
|
|
|
|
2021-07-28 16:52:56 +03:00
|
|
|
account->account()->deleteAppToken();
|
|
|
|
|
2021-03-09 12:56:17 +03:00
|
|
|
emit accountSyncConnectionRemoved(account);
|
2015-07-03 12:13:19 +03:00
|
|
|
emit accountRemoved(account);
|
2015-05-12 16:16:32 +03:00
|
|
|
}
|
|
|
|
|
2015-07-16 15:21:51 +03:00
|
|
|
AccountPtr AccountManager::createAccount()
|
|
|
|
{
|
|
|
|
AccountPtr acc = Account::create();
|
|
|
|
acc->setSslErrorHandler(new SslDialogErrorHandler);
|
2017-09-20 11:14:48 +03:00
|
|
|
connect(acc.data(), &Account::proxyAuthenticationRequired,
|
|
|
|
ProxyAuthHandler::instance(), &ProxyAuthHandler::handleProxyAuthenticationRequired);
|
2018-01-21 21:50:40 +03:00
|
|
|
|
2015-07-16 15:21:51 +03:00
|
|
|
return acc;
|
|
|
|
}
|
|
|
|
|
2018-01-21 21:50:40 +03:00
|
|
|
void AccountManager::displayMnemonic(const QString& mnemonic)
|
|
|
|
{
|
2020-05-18 21:54:23 +03:00
|
|
|
auto *widget = new QDialog;
|
2018-06-21 20:57:51 +03:00
|
|
|
Ui_Dialog ui;
|
|
|
|
ui.setupUi(widget);
|
|
|
|
widget->setWindowTitle(tr("End to end encryption mnemonic"));
|
2018-11-17 13:36:16 +03:00
|
|
|
ui.label->setText(tr("To protect your Cryptographic Identity, we encrypt it with a mnemonic of 12 dictionary words. "
|
2018-06-21 20:57:51 +03:00
|
|
|
"Please note these down and keep them safe. "
|
|
|
|
"They will be needed to add other devices to your account (like your mobile phone or laptop)."));
|
|
|
|
ui.textEdit->setText(mnemonic);
|
|
|
|
ui.textEdit->focusWidget();
|
|
|
|
ui.textEdit->selectAll();
|
|
|
|
ui.textEdit->setAlignment(Qt::AlignCenter);
|
|
|
|
widget->exec();
|
|
|
|
widget->resize(widget->sizeHint());
|
2018-01-21 21:50:40 +03:00
|
|
|
}
|
2019-05-08 20:56:00 +03:00
|
|
|
|
2015-04-17 18:56:17 +03:00
|
|
|
void AccountManager::shutdown()
|
|
|
|
{
|
2020-09-27 14:02:27 +03:00
|
|
|
const auto accountsCopy = _accounts;
|
2015-04-17 18:56:17 +03:00
|
|
|
_accounts.clear();
|
2020-09-27 14:02:27 +03:00
|
|
|
for (const auto &acc : accountsCopy) {
|
2015-04-17 18:56:17 +03:00
|
|
|
emit accountRemoved(acc.data());
|
2019-07-24 14:56:21 +03:00
|
|
|
emit removeAccountFolders(acc.data());
|
2015-04-17 18:56:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-18 17:12:35 +03:00
|
|
|
QList<AccountStatePtr> AccountManager::accounts() const
|
|
|
|
{
|
|
|
|
return _accounts;
|
|
|
|
}
|
|
|
|
|
2015-04-24 08:02:51 +03:00
|
|
|
bool AccountManager::isAccountIdAvailable(const QString &id) const
|
|
|
|
{
|
2018-05-14 15:37:48 +03:00
|
|
|
if (_additionalBlockedAccountIds.contains(id))
|
|
|
|
return false;
|
|
|
|
|
2020-09-29 20:23:06 +03:00
|
|
|
return std::none_of(_accounts.cbegin(), _accounts.cend(), [id](const auto &acc) {
|
2020-09-27 14:02:27 +03:00
|
|
|
return acc->account()->id() == id;
|
|
|
|
});
|
2015-04-24 08:02:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
QString AccountManager::generateFreeAccountId() const
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
forever {
|
|
|
|
QString id = QString::number(i);
|
|
|
|
if (isAccountIdAvailable(id)) {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
2015-04-09 17:19:17 +03:00
|
|
|
|
2016-03-01 18:08:23 +03:00
|
|
|
void AccountManager::addAccountState(AccountState *accountState)
|
|
|
|
{
|
|
|
|
QObject::connect(accountState->account().data(),
|
2017-09-20 11:14:48 +03:00
|
|
|
&Account::wantsAccountSaved,
|
|
|
|
this, &AccountManager::saveAccount);
|
2016-03-01 18:08:23 +03:00
|
|
|
|
|
|
|
AccountStatePtr ptr(accountState);
|
|
|
|
_accounts << ptr;
|
|
|
|
emit accountAdded(accountState);
|
|
|
|
}
|
2015-04-23 15:47:31 +03:00
|
|
|
}
|