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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*!********************************************************************
Audacity: A Digital Audio Editor
OAuthService.cpp
Dmitry Vedenko
**********************************************************************/
#include "OAuthService.h"
#include <cassert>
#include <cctype>
#include <rapidjson/document.h>
#include <rapidjson/writer.h>
#include "CodeConversions.h"
#include "Prefs.h"
#include "IResponse.h"
#include "NetworkManager.h"
#include "Request.h"
#include "ServiceConfig.h"
#include "NetworkUtils.h"
#include "UrlDecode.h"
#include "BasicUI.h"
#include "ExportUtils.h"
#include "StringUtils.h"
#include "UrlEncode.h"
namespace audacity::cloud::audiocom
{
namespace
{
StringSetting refreshToken { L"/cloud/audiocom/refreshToken", "" };
const std::string_view uriPrefix = "audacity://link";
const std::string_view usernamePrefix = "username=";
const std::string_view passwordPrefix = "password=";
const std::string_view tokenPrefix = "token=";
const std::string_view authClientPrefix = "authclient=";
const std::string_view responseTypePrefix = "response_type=";
const std::string_view clientIdPrefix = "client_id=";
const std::string_view authorizationCodePrefix = "authorization_code=";
const std::string_view codePrefix = "code=";
const std::string_view urlPrefix = "url=";
const std::string_view userPrefix = "user=";
const std::string_view instanceIdPrefix = "x-audacity-instance-id=";
void WriteClientFields(rapidjson::Document& document)
{
using namespace rapidjson;
const auto clientID = GetServiceConfig().GetOAuthClientID();
const auto clientSecret = GetServiceConfig().GetOAuthClientSecret();
document.AddMember(
"client_id",
Value(clientID.data(), clientID.size(), document.GetAllocator()),
document.GetAllocator());
document.AddMember(
"client_secret",
Value(clientSecret.data(), clientSecret.size(), document.GetAllocator()),
document.GetAllocator());
}
void WriteAccessFields(rapidjson::Document& document, std::string_view grantType, std::string_view scope)
{
using namespace rapidjson;
document.AddMember(
"grant_type", StringRef(grantType.data(), grantType.size()),
document.GetAllocator());
document.AddMember(
"scope", StringRef(scope.data(), scope.size()), document.GetAllocator());
}
void WriteCommonFields(
rapidjson::Document& document, std::string_view grantType, std::string_view scope)
{
WriteClientFields(document);
WriteAccessFields(document, grantType, scope);
}
template<typename Elem, typename First, typename ...Others>
void append(std::basic_string<Elem>& dest, First&& first, Others&& ...others)
{
dest.append(first);
if constexpr (sizeof...(others) != 0)
append(dest, std::forward<Others>(others)...);
}
template<typename First, typename ...Others>
auto concat(First&& first, Others&& ...others)
{
std::basic_string<typename First::value_type> dest(first);
append(dest, std::forward<Others>(others)...);
return dest;
}
} // namespace
void OAuthService::ValidateAuth(
std::function<void(std::string_view)> completedHandler, AudiocomTrace trace,
bool silent)
{
if (HasAccessToken() || !HasRefreshToken())
{
if (completedHandler)
completedHandler(GetAccessToken());
return;
}
AuthoriseRefreshToken(
GetServiceConfig(), trace, std::move(completedHandler), silent);
}
bool OAuthService::HandleLinkURI(
std::string_view uri, AudiocomTrace trace,
std::function<void(std::string_view)> completedHandler)
{
if (!IsPrefixedInsensitive(uri, uriPrefix))
{
if (completedHandler)
completedHandler({});
return false;
}
// It was observed, that sometimes link is passed as audacity://link/
// This is valid trace URI point of view, but we need to handle it separately
const auto argsStart = uri.find("?");
if (argsStart == std::string_view::npos)
{
if (completedHandler)
completedHandler({});
return false;
}
// Length is handled in IsPrefixed
auto args = uri.substr(argsStart + 1);
std::string_view token;
std::string_view username;
std::string_view password;
std::string_view authorizationCode;
auto useAudioComRedirectURI = false;
while (!args.empty())
{
const auto nextArg = args.find('&');
const auto arg = args.substr(0, nextArg);
args = nextArg == std::string_view::npos ? "" : args.substr(nextArg + 1);
if (IsPrefixed(arg, usernamePrefix))
username = arg.substr(usernamePrefix.length());
else if (IsPrefixed(arg, passwordPrefix))
password = arg.substr(passwordPrefix.length());
else if (IsPrefixed(arg, tokenPrefix))
token = arg.substr(tokenPrefix.length());
else if (IsPrefixed(arg, authorizationCodePrefix))
{
//authorization code was generated for audio.com, not audacity...
useAudioComRedirectURI = true;
authorizationCode = arg.substr(authorizationCodePrefix.length());
}
else if (IsPrefixed(arg, codePrefix))
authorizationCode = arg.substr(codePrefix.length());
}
// Some browsers (safari) add an extra trailing chars we don't need
size_t hashPos = authorizationCode.find('#');
if (hashPos != std::string::npos) {
authorizationCode = authorizationCode.substr(0, hashPos);
}
// We have a prioritized list of authorization methods
if (!authorizationCode.empty())
{
AuthoriseCode(
GetServiceConfig(), authorizationCode, useAudioComRedirectURI, trace,
std::move(completedHandler));
}
else if (!token.empty())
{
AuthoriseRefreshToken(
GetServiceConfig(), token, trace, std::move(completedHandler), false);
}
else if (!username.empty() && !password.empty())
{
AuthorisePassword(
GetServiceConfig(), audacity::UrlDecode(std::string(username)),
audacity::UrlDecode(std::string(password)), trace,
std::move(completedHandler));
}
else
{
if (completedHandler)
completedHandler({});
return false;
}
return true;
}
void OAuthService::UnlinkAccount(AudiocomTrace trace)
{
std::lock_guard<std::recursive_mutex> lock(mMutex);
mAccessToken.clear();
refreshToken.Write({});
gPrefs->Flush();
// Unlink account is expected to be called only
// on UI thread
Publish({ {}, {}, trace, false });
}
void OAuthService::AuthorisePassword(
const ServiceConfig& config, std::string_view userName,
std::string_view password, AudiocomTrace trace,
std::function<void(std::string_view)> completedHandler)
{
using namespace rapidjson;
Document document;
document.SetObject();
WriteCommonFields(document, "password", "all");
document.AddMember(
"username", StringRef(userName.data(), userName.size()),
document.GetAllocator());
document.AddMember(
"password", StringRef(password.data(), password.size()),
document.GetAllocator());
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
document.Accept(writer);
DoAuthorise(
config, { buffer.GetString(), buffer.GetSize() }, trace,
std::move(completedHandler), false);
}
void OAuthService::AuthoriseRefreshToken(
const ServiceConfig& config, std::string_view token, AudiocomTrace trace,
std::function<void(std::string_view)> completedHandler, bool silent)
{
using namespace rapidjson;
Document document;
document.SetObject();
WriteCommonFields(document, "refresh_token", "");
document.AddMember(
"refresh_token", StringRef(token.data(), token.size()),
document.GetAllocator());
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
document.Accept(writer);
DoAuthorise(
config, { buffer.GetString(), buffer.GetSize() }, trace,
std::move(completedHandler), silent);
}
void OAuthService::AuthoriseRefreshToken(
const ServiceConfig& config, AudiocomTrace trace,
std::function<void(std::string_view)> completedHandler, bool silent)
{
std::lock_guard<std::recursive_mutex> lock(mMutex);
AuthoriseRefreshToken(
config, audacity::ToUTF8(refreshToken.Read()), trace,
std::move(completedHandler), silent);
}
void OAuthService::AuthoriseCode(
const ServiceConfig& config, std::string_view authorizationCode, bool useAudioComRedirectURI,
AudiocomTrace trace, std::function<void(std::string_view)> completedHandler)
{
using namespace rapidjson;
Document document;
document.SetObject();
WriteCommonFields(document, "authorization_code", "all");
document.AddMember(
"code", StringRef(authorizationCode.data(), authorizationCode.size()),
document.GetAllocator());
const auto redirectURI = useAudioComRedirectURI ? config.GetOAuthRedirectURL() : std::string("audacity://link");
document.AddMember(
"redirect_uri", StringRef(redirectURI.data(), redirectURI.size()),
document.GetAllocator());
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
document.Accept(writer);
DoAuthorise(
config, { buffer.GetString(), buffer.GetSize() }, trace,
std::move(completedHandler), false);
}
bool OAuthService::HasAccessToken() const
{
return !GetAccessToken().empty();
}
bool OAuthService::HasRefreshToken() const
{
std::lock_guard<std::recursive_mutex> lock(mMutex);
return !refreshToken.Read().empty();
}
std::string OAuthService::GetAccessToken() const
{
std::lock_guard<std::recursive_mutex> lock(mMutex);
if (Clock::now() < mTokenExpirationTime)
return mAccessToken;
return {};
}
std::string OAuthService::MakeOAuthRequestURL(std::string_view authClientId)
{
using namespace audacity::network_manager;
return concat(
GetServiceConfig().GetAPIUrl("/auth/authorize?"),
authClientPrefix, authClientId, "&",
responseTypePrefix, "code", "&",
clientIdPrefix, GetServiceConfig().GetOAuthClientID(),
"&redirect_uri=audacity://link"
);
}
std::string OAuthService::MakeAudioComAuthorizeURL(std::string_view userId, std::string_view redirectUrl)
{
auto token = GetAccessToken();
// Remove token type from the token string
size_t pos = token.find(' ');
if (pos != std::string::npos) {
token = token.substr(pos + 1);
}
std::string url = concat(
GetServiceConfig().GetAuthWithRedirectURL(), "?",
tokenPrefix, token, "&",
userPrefix, userId, "&",
urlPrefix, audacity::UrlEncode(redirectUrl)
);
if (SendAnonymousUsageInfo->Read()) {
url += concat(std::string_view("&"), instanceIdPrefix, InstanceId->Read());
}
return url;
}
void OAuthService::Authorize(std::string_view email,
std::string_view password,
AuthSuccessCallback onSuccess,
AuthFailureCallback onFailure,
AudiocomTrace trace)
{
using namespace audacity::network_manager;
using rapidjson::StringRef;
rapidjson::Document document;
document.SetObject();
WriteCommonFields(document, "password", "all");
document.AddMember(
"username", StringRef(email.data(), email.size()),
document.GetAllocator());
document.AddMember(
"password", StringRef(password.data(), password.size()),
document.GetAllocator());
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
document.Accept(writer);
Request request(GetServiceConfig().GetAPIUrl("/auth/token"));
request.setHeader(common_headers::ContentType, common_content_types::ApplicationJson);
request.setHeader(common_headers::Accept, common_content_types::ApplicationJson);
SetOptionalHeaders(request);
auto response = NetworkManager::GetInstance().doPost(request, buffer.GetString(), buffer.GetSize());
response->setRequestFinishedCallback(
[response, this, trace,
onSuccess = std::move(onSuccess),
onFailure = std::move(onFailure)](auto) mutable
{
const auto httpCode = response->getHTTPCode();
const auto body = response->readAll<std::string>();
if(httpCode == 200)
ParseTokenResponse(body, std::move(onSuccess), std::move(onFailure), trace, false);
else
{
if(onFailure)
onFailure(httpCode, body);
SafePublish({ {}, body, trace, false, false });
}
});
}
void OAuthService::Register(std::string_view email,
std::string_view password,
AuthSuccessCallback successCallback,
AuthFailureCallback failureCallback,
AudiocomTrace trace)
{
using namespace audacity::network_manager;
using rapidjson::StringRef;
rapidjson::Document document;
document.SetObject();
WriteClientFields(document);
document.AddMember(
"email", StringRef(email.data(), email.size()),
document.GetAllocator());
document.AddMember(
"password", StringRef(password.data(), password.size()),
document.GetAllocator());
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
document.Accept(writer);
Request request(GetServiceConfig().GetAPIUrl("/auth/register"));
request.setHeader(common_headers::ContentType, common_content_types::ApplicationJson);
request.setHeader(common_headers::Accept, common_content_types::ApplicationJson);
SetOptionalHeaders(request);
auto response = NetworkManager::GetInstance().doPost(request, buffer.GetString(), buffer.GetSize());
response->setRequestFinishedCallback(
[response, this, trace,
successCallback = std::move(successCallback),
failureCallback = std::move(failureCallback)] (auto) mutable
{
const auto httpCode = response->getHTTPCode();
const auto body = response->readAll<std::string>();
if(httpCode == 200)
ParseTokenResponse(body, std::move(successCallback), std::move(failureCallback), trace, false);
else
{
if(failureCallback)
failureCallback(httpCode, body);
SafePublish({ {}, body, trace, false, false });
}
});
}
void OAuthService::DoAuthorise(
const ServiceConfig& config, std::string_view payload, AudiocomTrace trace,
AuthSuccessCallback completedHandler, bool silent)
{
using namespace audacity::network_manager;
Request request(config.GetAPIUrl("/auth/token"));
request.setHeader(
common_headers::ContentType, common_content_types::ApplicationJson);
request.setHeader(
common_headers::Accept, common_content_types::ApplicationJson);
SetOptionalHeaders(request);
auto response = NetworkManager::GetInstance().doPost(
request, payload.data(), payload.size());
response->setRequestFinishedCallback(
[response, this, handler = std::move(completedHandler), silent,
trace](auto) mutable {
const auto httpCode = response->getHTTPCode();
const auto body = response->readAll<std::string>();
if (httpCode != 200)
{
if (handler)
handler({});
// Token has expired?
if (httpCode == 422)
BasicUI::CallAfter([this, trace] { UnlinkAccount(trace); });
else
SafePublish({ {}, body, trace, false, silent });
return;
}
ParseTokenResponse(body, std::move(handler), {}, trace, silent);
});
}
void OAuthService::ParseTokenResponse(std::string_view body,
AuthSuccessCallback successCallback,
AuthFailureCallback failureCallback,
AudiocomTrace trace,
bool silent)
{
rapidjson::Document document;
document.Parse(body.data(), body.size());
if (!document.IsObject())
{
if (failureCallback)
failureCallback(200, body);
SafePublish({ {}, body, trace, false, silent });
return;
}
const auto tokenType = document["token_type"].GetString();
const auto accessToken = document["access_token"].GetString();
const auto expiresIn = document["expires_in"].GetInt64();
const auto newRefreshToken = document["refresh_token"].GetString();
{
std::lock_guard<std::recursive_mutex> lock(mMutex);
mAccessToken = std::string(tokenType) + " " + accessToken;
mTokenExpirationTime =
Clock::now() + std::chrono::seconds(expiresIn);
}
BasicUI::CallAfter(
[token = std::string(newRefreshToken)]()
{
// At this point access token is already written,
// only refresh token is updated.
refreshToken.Write(token);
gPrefs->Flush();
});
if (successCallback)
successCallback(mAccessToken);
// The callback only needs the access token, so invoke it immediately.
// Networking is thread safe
SafePublish({ mAccessToken, {}, trace, true, silent });
}
void OAuthService::SafePublish(const AuthStateChangedMessage& message)
{
BasicUI::CallAfter([this, message]() { Publish(message); });
}
OAuthService& GetOAuthService()
{
static OAuthService service;
return service;
}
namespace
{
class OAuthServiceSettingsResetHandler final : public PreferencesResetHandler
{
public:
void OnSettingResetBegin() override
{
}
void OnSettingResetEnd() override
{
GetOAuthService().UnlinkAccount(AudiocomTrace::ignore);
refreshToken.Invalidate();
}
};
static PreferencesResetHandler::Registration<OAuthServiceSettingsResetHandler>
resetHandler;
}
} // namespace audacity::cloud::audiocom
|