PageRenderTime 52ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/qtnetworkauth/examples/oauth/redditclient/redditwrapper.cpp

https://bitbucket.org/lotiuss/qt-5.11.0
C++ | 133 lines | 71 code | 13 blank | 49 comment | 8 complexity | be8d87f6679128d7e219486e015eaca5 MD5 | raw file
Possible License(s): GPL-3.0, MPL-2.0, CC-BY-SA-3.0, LGPL-2.0, Unlicense, BSD-3-Clause, Apache-2.0, LGPL-3.0, MIT, WTFPL, GPL-2.0, MPL-2.0-no-copyleft-exception, AGPL-3.0, LGPL-2.1, BSD-2-Clause, 0BSD, JSON, ISC
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2017 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the Qt Network Auth module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:BSD$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** BSD License Usage
  18. ** Alternatively, you may use this file under the terms of the BSD license
  19. ** as follows:
  20. **
  21. ** "Redistribution and use in source and binary forms, with or without
  22. ** modification, are permitted provided that the following conditions are
  23. ** met:
  24. ** * Redistributions of source code must retain the above copyright
  25. ** notice, this list of conditions and the following disclaimer.
  26. ** * Redistributions in binary form must reproduce the above copyright
  27. ** notice, this list of conditions and the following disclaimer in
  28. ** the documentation and/or other materials provided with the
  29. ** distribution.
  30. ** * Neither the name of The Qt Company Ltd nor the names of its
  31. ** contributors may be used to endorse or promote products derived
  32. ** from this software without specific prior written permission.
  33. **
  34. **
  35. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  36. ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  37. ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  38. ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  39. ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41. ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  42. ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  43. ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  44. ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  45. ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
  46. **
  47. ** $QT_END_LICENSE$
  48. **
  49. ****************************************************************************/
  50. #include "redditwrapper.h"
  51. #include <QtGui>
  52. #include <QtCore>
  53. #include <QtNetworkAuth>
  54. const QUrl newUrl("https://oauth.reddit.com/new");
  55. const QUrl hotUrl("https://oauth.reddit.com/hot");
  56. const QUrl liveThreadsUrl("https://oauth.reddit.com/live/XXXX/about.json");
  57. RedditWrapper::RedditWrapper(QObject *parent) : QObject(parent)
  58. {
  59. auto replyHandler = new QOAuthHttpServerReplyHandler(1337, this);
  60. oauth2.setReplyHandler(replyHandler);
  61. oauth2.setAuthorizationUrl(QUrl("https://www.reddit.com/api/v1/authorize"));
  62. oauth2.setAccessTokenUrl(QUrl("https://www.reddit.com/api/v1/access_token"));
  63. oauth2.setScope("identity read");
  64. connect(&oauth2, &QOAuth2AuthorizationCodeFlow::statusChanged, [=](
  65. QAbstractOAuth::Status status) {
  66. if (status == QAbstractOAuth::Status::Granted)
  67. emit authenticated();
  68. });
  69. oauth2.setModifyParametersFunction([&](QAbstractOAuth::Stage stage, QVariantMap *parameters) {
  70. if (stage == QAbstractOAuth::Stage::RequestingAuthorization && isPermanent())
  71. parameters->insert("duration", "permanent");
  72. });
  73. connect(&oauth2, &QOAuth2AuthorizationCodeFlow::authorizeWithBrowser,
  74. &QDesktopServices::openUrl);
  75. }
  76. RedditWrapper::RedditWrapper(const QString &clientIdentifier, QObject *parent) :
  77. RedditWrapper(parent)
  78. {
  79. oauth2.setClientIdentifier(clientIdentifier);
  80. }
  81. QNetworkReply *RedditWrapper::requestHotThreads()
  82. {
  83. qDebug() << "Getting hot threads...";
  84. return oauth2.get(hotUrl);
  85. }
  86. bool RedditWrapper::isPermanent() const
  87. {
  88. return permanent;
  89. }
  90. void RedditWrapper::setPermanent(bool value)
  91. {
  92. permanent = value;
  93. }
  94. void RedditWrapper::grant()
  95. {
  96. oauth2.grant();
  97. }
  98. void RedditWrapper::subscribeToLiveUpdates()
  99. {
  100. qDebug() << "Susbscribing...";
  101. QNetworkReply *reply = oauth2.get(liveThreadsUrl);
  102. connect(reply, &QNetworkReply::finished, [=]() {
  103. reply->deleteLater();
  104. if (reply->error() != QNetworkReply::NoError) {
  105. qCritical() << "Reddit error:" << reply->errorString();
  106. return;
  107. }
  108. const auto json = reply->readAll();
  109. const auto document = QJsonDocument::fromJson(json);
  110. Q_ASSERT(document.isObject());
  111. const auto rootObject = document.object();
  112. const auto dataValue = rootObject.value("data");
  113. Q_ASSERT(dataValue.isObject());
  114. const auto dataObject = dataValue.toObject();
  115. const auto websocketUrlValue = dataObject.value("websocket_url");
  116. Q_ASSERT(websocketUrlValue.isString() && websocketUrlValue.toString().size());
  117. const QUrl websocketUrl(websocketUrlValue.toString());
  118. emit subscribed(websocketUrl);
  119. });
  120. }