bool QuotaInfo::canGetQuota() const { if (! _accountState || !_active) { return false; } AccountPtr account = _accountState->account(); return _accountState->isConnected() && account->credentials() && account->credentials()->ready(); }
void AbstractCredentialsWizardPage::cleanupPage() { // Reset the credentials when the 'Back' button is used. AccountPtr account = static_cast<OwncloudWizard *>(wizard())->account(); AbstractCredentials *creds = account->credentials(); if (creds && !qobject_cast<DummyCredentials *>(creds)) { account->setCredentials(new DummyCredentials); } }
void Application::slotLogout() { AccountState* ai = AccountStateManager::instance()->accountState(); if (ai) { AccountPtr a = ai->account(); // invalidate & forget token/password a->credentials()->invalidateToken(); // terminate all syncs and unload folders FolderMan *folderMan = FolderMan::instance(); folderMan->setSyncEnabled(false); folderMan->terminateSyncProcess(); ai->setSignedOut(true); // show result _gui->slotComputeOverallSyncStatus(); } }
void AbstractCredentialsWizardPage::cleanupPage() { // Reset the credentials when the 'Back' button is used. // Unfortunately this code is also run when the Wizard finishes // prematurely with 'Skip Folder Configuration'. Therefore we need to // avoid resetting credentials on active accounts. AccountPtr account = static_cast<OwncloudWizard*>(wizard())->account(); if (account == AccountManager::instance()->account()) return; AbstractCredentials *creds = account->credentials(); if (creds) { if (!creds->inherits("DummyCredentials")) { account->setCredentials(CredentialsFactory::create("dummy")); } } }