-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogleaccess_oauth2.cpp
273 lines (229 loc) · 9.58 KB
/
googleaccess_oauth2.cpp
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#include "googleaccess.h"
#include "../Lib/supportfunctions.h"
#include "configuration.h"
#include <QMessageBox>
#include <QNetworkReply>
#include <QEventLoop>
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QUrlQuery>
#include "account-googleaccess.h"
//
// Useful Links
//
// The oauth2 playground allows you to walk through all submissions
// accesses manually, and gives a good overview of how the protocols
// actually work:
//
// https://developers.google.com/oauthplayground/
//
// https://developers.google.com/google-apps/contacts/v3/?hl=ja#updating_contacts
//
// OAuth2 / Google - Network Access Helper Functions
//
// setupRToken - Sets the refresh token, previously generated with Authorise
// Authorise - allows user to log in and authorise use. Returns refresh token/email
// googleGetAccessToken - Retrieve the access token for the session
//
//
//=====================================================================================================
//
// Public - GoogleAccess - setupRToken
//
// Constructor, sets the refresh token which has been
// previously generated with Authorise.
//
void GoogleAccess::setupRToken(const QString& rt)
{
QStringList rtparts = rt.split(" ") ;
if (rtparts.size()==2) {
refreshtoken=rtparts.at(0) ;
username=rtparts.at(1) ;
}
}
//=====================================================================================================
//
// Public: GoogleAccess - Authorise
//
// Get the authorisation token, by popping up a dialog box to prompt the
// user to visit an authorisation url, and enter the response code.
//
// Returns a refresh_token, which is valid indefinately, and enables the app
// to gain access again and again without logging in.
//
QString GoogleAccess::Authorise()
{
QString resultstring ;
QString device_code ;
QString user_code ;
QString verification_url ;
QString expires_in ;
QString interval ;
refreshtoken="" ;
accesstoken="" ;
username="" ;
refreshtokenandusername="" ;
// Get the authorisation url and user code
{
QNetworkReply *reply ;
QEventLoop eventLoop ;
QNetworkAccessManager manager ;
QUrlQuery params ;
QUrl url("https://accounts.google.com/o/oauth2/device/code") ;
QNetworkRequest request(url) ;
params.addQueryItem("client_id", CLIENTID);
params.addQueryItem("scope", SCOPE);
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
QObject::connect(&manager, SIGNAL(finished(QNetworkReply *)), &eventLoop, SLOT(quit()));
reply = manager.post(request, params.query(QUrl::FullyEncoded).toUtf8());
eventLoop.exec() ;
//QNetworkReply::NetworkError err = reply->error() ;
//QString errstring = reply->errorString() ;
resultstring = reply->readAll() ;
device_code = ExtractParameter(resultstring, "device_code") ;
user_code = ExtractParameter(resultstring, "user_code") ;
verification_url = ExtractParameter(resultstring, "verification_url") ;
expires_in = ExtractParameter(resultstring, "expires_in") ;
interval = ExtractParameter(resultstring, "interval") ;
}
if (user_code.isEmpty()) {
QString errmsg = ExtractParameter(resultstring, "error_description") ;
addLog(QString("GoogleAccess::Authorise: Unable to authorise with Google. This is caused by either a network error (check your connection); incorrectly configured account-googleaccess.h (during compilation); or missing OpenSSL files - ssleay32.dll / libeay32.dll (Windows Clients): ") + errmsg) ;
errorOkDialog(NULL, "Contact Manager Error", QString( "Unable to connect. : ") + errmsg) ;
return refreshtokenandusername ;
}
// Prompt the user to authenticate, using the code
// TODO: Check errstring / resultstring and report
// particularly if SSL DLLs aren't working
QMessageBox mb ;
mb.setTextFormat(Qt::RichText) ;
mb.setTextInteractionFlags(Qt::TextBrowserInteraction) ;
QString str =
QString("<p>1. Copy the following code to the clipboard:</p>") +
QString("<p align=\"center\"><font size=\"+2\" color=\"blue\"><b>") + user_code + QString("</b></font></p>") +
QString("<p>2. Connect to <a href=\"") + verification_url + QString("\"><font size=\"+1\">") + verification_url + QString("</font></p>") +
QString("<p>3. Sign-in, and Paste the code when prompted</p>") +
QString("<p>4. Select <i>Allow</i> to enable Contact Manager to access your contacts / calendars</p>") +
QString("<p>5. And then press OK <i>below</i> to continue when complete</p>") ;
mb.setText(str) ;
if (!mb.exec()) {
return refreshtokenandusername ;
}
// Get the refresh and access tokens
{
QNetworkReply *reply ;
QEventLoop eventLoop ;
QNetworkAccessManager manager ;
QUrlQuery params ;
QUrl url("https://www.googleapis.com/oauth2/v4/token") ;
QNetworkRequest request(url) ;
params.addQueryItem("client_id", CLIENTID);
params.addQueryItem("client_secret", SECRET);
params.addQueryItem("code", device_code);
params.addQueryItem("grant_type", "http://oauth.net/grant_type/device/1.0");
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
QObject::connect(&manager, SIGNAL(finished(QNetworkReply *)), &eventLoop, SLOT(quit()));
reply = manager.post(request, params.query(QUrl::FullyEncoded).toUtf8());
eventLoop.exec() ;
resultstring = reply->readAll() ;
refreshtoken = ExtractParameter(resultstring, "refresh_token") ;
accesstoken = ExtractParameter(resultstring, "access_token") ;
}
// Get the username (i.e. the login email address)
{
QString result ;
result = googleGet("https://www.googleapis.com/oauth2/v3/userinfo") ;
username = ExtractParameter(result, "email") ;
}
if (username.isEmpty()) {
addLog("GoogleAccess::Authorise: Unable to authorise with Google. Network error or missing ssleay32.dll and libeay32.dll") ;
}
if (gConf->debugGoogleEnabled()) {
writeToFile(gConf->getDatabasePath() + "/googleauthenticationresponse.txt", QString("authentication:\n") + resultstring + QString("\nemail: ") + username) ;
}
refreshtokenandusername = refreshtoken + " " + username ;
return refreshtokenandusername ;
}
//=====================================================================================================
//
// Private: GoogleAccess - googleGetAccessToken
//
// Updates the access token, based on the authorisation token
//
void GoogleAccess::googleGetAccessToken()
{
QNetworkReply *reply ;
QEventLoop eventLoop ;
QNetworkAccessManager manager ;
QUrlQuery params ;
accesstoken="" ;
if (refreshtoken.isEmpty()) {
errorstatus="Google account not set up in File/Setup (invalid refresh token)" ;
return ;
}
QUrl url("https://accounts.google.com/o/oauth2/token") ;
QNetworkRequest request(url) ;
params.addQueryItem("client_id", CLIENTID);
params.addQueryItem("client_secret", SECRET);
params.addQueryItem("refresh_token", refreshtoken);
params.addQueryItem("grant_type", "refresh_token");
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
QObject::connect(&manager, SIGNAL(finished(QNetworkReply *)), &eventLoop, SLOT(quit()));
reply = manager.post(request, params.query(QUrl::FullyEncoded).toUtf8());
eventLoop.exec() ;
switch (reply->error()) {
case QNetworkReply::ConnectionRefusedError:
errorstatus="Connection Refused" ;
break ;
case QNetworkReply::RemoteHostClosedError:
errorstatus="Remote Host Closed Connection" ;
break ;
case QNetworkReply::HostNotFoundError:
errorstatus="Host accounts.google.com Not Found" ;
break ;
case QNetworkReply::UnknownServerError:
errorstatus="Unknown Server Error" ;
break ;
default:
QVariant replycode=reply->attribute(QNetworkRequest::HttpStatusCodeAttribute) ;
if (replycode.toInt()>=200 && replycode.toInt()<=299) {
QString resultstring = reply->readAll() ;
accesstoken = ExtractParameter(resultstring, "access_token") ;
if (accesstoken.isEmpty()) {
errorstatus="Google access token not found." ;
}
} else {
errorstatus="Error " + replycode.toString() ;
}
break ;
}
}
//=====================================================================================================
//
// Private: GoogleAccess - ExtractParameter
//
// Parse the supplied response, and extract the JSON parameter identified
//
QString GoogleAccess::ExtractParameter(QString Response, QString Parameter, int Occurrence)
{
QRegularExpression rx ;
QRegularExpressionMatch rem ;
QStringList records;
QString record ;
QString pattern ;
extracttokenresult="" ;
if (Response.isEmpty()) return extracttokenresult ;
// Remove \n and
// Extract the Occurrenceth set of {}
records = Response.replace("\n","").split("{") ;
int numrecords = records.size() ;
if (Occurrence>=(numrecords) || Occurrence<1) return extracttokenresult ;
record=records[Occurrence] ;
// Find "parameter" : "xxxx",
// Or "parameter" : "xxxx"}
pattern = "\"" + Parameter + "\" *: *\"(.*?)\"" ;
rx.setPattern(pattern) ;
rem = rx.match(Response) ;
if (rem.hasMatch()) extracttokenresult = rem.captured(1) ;
return extracttokenresult ;
}