AccessKeyFetcher.cpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #include "AccessKeyFetcher.h"
  2. #include <cstring> // for strrchr
  3. #include <initializer_list> // for initializer_list
  4. #include <map> // for operator!=, operator==
  5. #include <type_traits> // for remove_extent_t
  6. #include <vector> // for vector
  7. #include "BellLogger.h" // for AbstractLogger
  8. #include "CSpotContext.h" // for Context
  9. #include "Logger.h" // for CSPOT_LOG
  10. #include "MercurySession.h" // for MercurySession, MercurySession::Res...
  11. #include "Packet.h" // for cspot
  12. #include "TimeProvider.h" // for TimeProvider
  13. #include "Utils.h" // for string_format
  14. #ifdef BELL_ONLY_CJSON
  15. #include "cJSON.h"
  16. #else
  17. #include "nlohmann/json.hpp" // for basic_json<>::object_t, basic_json
  18. #include "nlohmann/json_fwd.hpp" // for json
  19. #endif
  20. using namespace cspot;
  21. AccessKeyFetcher::AccessKeyFetcher(std::shared_ptr<cspot::Context> ctx) {
  22. this->ctx = ctx;
  23. }
  24. AccessKeyFetcher::~AccessKeyFetcher() {}
  25. bool AccessKeyFetcher::isExpired() {
  26. if (accessKey.empty()) {
  27. return true;
  28. }
  29. if (ctx->timeProvider->getSyncedTimestamp() > expiresAt) {
  30. return true;
  31. }
  32. return false;
  33. }
  34. void AccessKeyFetcher::getAccessKey(AccessKeyFetcher::Callback callback) {
  35. if (!isExpired()) {
  36. return callback(accessKey);
  37. }
  38. CSPOT_LOG(info, "Access token expired, fetching new one...");
  39. std::string url =
  40. string_format("hm://keymaster/token/authenticated?client_id=%s&scope=%s",
  41. CLIENT_ID.c_str(), SCOPES.c_str());
  42. auto timeProvider = this->ctx->timeProvider;
  43. ctx->session->execute(
  44. MercurySession::RequestType::GET, url,
  45. [this, timeProvider, callback](MercurySession::Response& res) {
  46. if (res.fail)
  47. return;
  48. char* accessKeyJson = (char*)res.parts[0].data();
  49. auto accessJSON = std::string(
  50. accessKeyJson, strrchr(accessKeyJson, '}') - accessKeyJson + 1);
  51. #ifdef BELL_ONLY_CJSON
  52. cJSON* jsonBody = cJSON_Parse(accessJSON.c_str());
  53. this->accessKey =
  54. cJSON_GetObjectItem(jsonBody, "accessToken")->valuestring;
  55. int expiresIn = cJSON_GetObjectItem(jsonBody, "expiresIn")->valueint;
  56. #else
  57. auto jsonBody = nlohmann::json::parse(accessJSON);
  58. this->accessKey = jsonBody["accessToken"];
  59. int expiresIn = jsonBody["expiresIn"];
  60. #endif
  61. expiresIn = expiresIn / 2; // Refresh token before it expires
  62. this->expiresAt =
  63. timeProvider->getSyncedTimestamp() + (expiresIn * 1000);
  64. #ifdef BELL_ONLY_CJSON
  65. callback(cJSON_GetObjectItem(jsonBody, "accessToken")->valuestring);
  66. cJSON_Delete(jsonBody);
  67. #else
  68. callback(jsonBody["accessToken"]);
  69. #endif
  70. });
  71. }