-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathsetupwizardaccountbuilder.cpp
More file actions
198 lines (157 loc) · 5.61 KB
/
setupwizardaccountbuilder.cpp
File metadata and controls
198 lines (157 loc) · 5.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
* Copyright (C) Fabian Müller <fmueller@owncloud.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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 "setupwizardaccountbuilder.h"
#include "gui/guiutility.h"
#include "networkjobs/fetchuserinfojobfactory.h"
#include <QDir>
#include <QFileInfo>
namespace OCC::Wizard {
OAuth2AuthenticationStrategy::OAuth2AuthenticationStrategy(
const QString &token, const QString &refreshToken, const QVariantMap &dynamicRegistrationData, const IdToken &idToken)
: _token(token)
, _refreshToken(refreshToken)
, _dynamicRegistrationData(dynamicRegistrationData)
, _idToken(idToken)
{
}
HttpCredentialsGui *OAuth2AuthenticationStrategy::makeCreds()
{
Q_ASSERT(isValid());
return new HttpCredentialsGui(_token, _refreshToken);
}
bool OAuth2AuthenticationStrategy::isValid()
{
return !_token.isEmpty() && !_refreshToken.isEmpty();
}
FetchUserInfoJobFactory OAuth2AuthenticationStrategy::makeFetchUserInfoJobFactory(QNetworkAccessManager *nam)
{
return FetchUserInfoJobFactory::fromOAuth2Credentials(nam, _token);
}
const QVariantMap &OAuth2AuthenticationStrategy::dynamicRegistrationData() const
{
return _dynamicRegistrationData;
}
const IdToken &OAuth2AuthenticationStrategy::idToken() const
{
return _idToken;
}
SetupWizardAccountBuilder::SetupWizardAccountBuilder() = default;
void SetupWizardAccountBuilder::setServerUrl(const QUrl &serverUrl)
{
_serverUrl = serverUrl;
// to not keep credentials longer than necessary, we purge them whenever the URL is set
// for this reason, we also don't insert already-known credentials on the credentials pages when switching to them
_authenticationStrategy.reset();
}
QUrl SetupWizardAccountBuilder::serverUrl() const
{
return _serverUrl;
}
AccountPtr SetupWizardAccountBuilder::build() const
{
auto newAccountPtr = Account::create(QUuid::createUuid());
Q_ASSERT(!_serverUrl.isEmpty() && _serverUrl.isValid());
newAccountPtr->setUrl(_serverUrl);
if (!_webFingerSelectedInstance.isEmpty()) {
Q_ASSERT(_serverUrl.isValid());
newAccountPtr->setUrl(_webFingerSelectedInstance);
}
Q_ASSERT(hasValidCredentials());
// TODO: perhaps _authenticationStrategy->setUpAccountPtr(...) would be more elegant? no need for getters then
newAccountPtr->setCredentials(_authenticationStrategy->makeCreds());
newAccountPtr->credentials()->persist();
OAuth::persist(newAccountPtr, _authenticationStrategy->dynamicRegistrationData(), _authenticationStrategy->idToken(), _webFingerDesktopClientId);
newAccountPtr->setDavDisplayName(_displayName);
newAccountPtr->addApprovedCerts({ _customTrustedCaCertificates.begin(), _customTrustedCaCertificates.end() });
if (!_defaultSyncTargetDir.isEmpty()) {
newAccountPtr->setDefaultSyncRoot(_defaultSyncTargetDir);
if (!QFileInfo::exists(_defaultSyncTargetDir)) {
OC_ASSERT(QDir().mkpath(_defaultSyncTargetDir));
}
Utility::markDirectoryAsSyncRoot(_defaultSyncTargetDir, newAccountPtr->uuid());
}
return newAccountPtr;
}
bool SetupWizardAccountBuilder::hasValidCredentials() const
{
if (_authenticationStrategy == nullptr) {
return false;
}
return _authenticationStrategy->isValid();
}
QString SetupWizardAccountBuilder::displayName() const
{
return _displayName;
}
void SetupWizardAccountBuilder::setDisplayName(const QString &displayName)
{
_displayName = displayName;
}
void SetupWizardAccountBuilder::setAuthenticationStrategy(std::unique_ptr<OAuth2AuthenticationStrategy> &&strategy)
{
_authenticationStrategy = std::move(strategy);
}
void SetupWizardAccountBuilder::addCustomTrustedCaCertificate(const QSslCertificate &customTrustedCaCertificate)
{
_customTrustedCaCertificates.insert(customTrustedCaCertificate);
}
void SetupWizardAccountBuilder::clearCustomTrustedCaCertificates()
{
_customTrustedCaCertificates.clear();
}
OAuth2AuthenticationStrategy *SetupWizardAccountBuilder::authenticationStrategy() const
{
return _authenticationStrategy.get();
}
void SetupWizardAccountBuilder::setSyncTargetDir(const QString &syncTargetDir)
{
_defaultSyncTargetDir = syncTargetDir;
}
QString SetupWizardAccountBuilder::syncTargetDir() const
{
return _defaultSyncTargetDir;
}
void SetupWizardAccountBuilder::setWebFingerAuthenticationServerUrl(const QUrl &url)
{
_webFingerAuthenticationServerUrl = url;
}
QUrl SetupWizardAccountBuilder::webFingerAuthenticationServerUrl() const
{
return _webFingerAuthenticationServerUrl;
}
void SetupWizardAccountBuilder::setWebFingerDesktopClientId(const QString &clientId)
{
_webFingerDesktopClientId = clientId;
}
QString SetupWizardAccountBuilder::webFingerDesktopClientId() const
{
return _webFingerDesktopClientId;
}
void SetupWizardAccountBuilder::setWebFingerInstances(const QVector<QUrl> &instancesList)
{
_webFingerInstances = instancesList;
}
QVector<QUrl> SetupWizardAccountBuilder::webFingerInstances() const
{
return _webFingerInstances;
}
void SetupWizardAccountBuilder::setWebFingerSelectedInstance(const QUrl &instance)
{
_webFingerSelectedInstance = instance;
}
QUrl SetupWizardAccountBuilder::webFingerSelectedInstance() const
{
return _webFingerSelectedInstance;
}
}