blob: 9def2377e69796ab2fb1622d57d08d1eca474e9b (
plain)
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "openid.h"
#include "converters.h"
#include <QtCore/QStringBuilder>
using namespace Quotient;
static const auto basePath = QStringLiteral("/_matrix/client/r0");
class RequestOpenIdTokenJob::Private {
public:
QString accessToken;
QString tokenType;
QString matrixServerName;
int expiresIn;
};
RequestOpenIdTokenJob::RequestOpenIdTokenJob(const QString& userId,
const QJsonObject& body)
: BaseJob(HttpVerb::Post, QStringLiteral("RequestOpenIdTokenJob"),
basePath % "/user/" % userId % "/openid/request_token")
, d(new Private)
{
setRequestData(Data(toJson(body)));
}
RequestOpenIdTokenJob::~RequestOpenIdTokenJob() = default;
const QString& RequestOpenIdTokenJob::accessToken() const
{
return d->accessToken;
}
const QString& RequestOpenIdTokenJob::tokenType() const { return d->tokenType; }
const QString& RequestOpenIdTokenJob::matrixServerName() const
{
return d->matrixServerName;
}
int RequestOpenIdTokenJob::expiresIn() const { return d->expiresIn; }
BaseJob::Status RequestOpenIdTokenJob::parseJson(const QJsonDocument& data)
{
auto json = data.object();
if (!json.contains("access_token"_ls))
return { IncorrectResponse,
"The key 'access_token' not found in the response" };
fromJson(json.value("access_token"_ls), d->accessToken);
if (!json.contains("token_type"_ls))
return { IncorrectResponse,
"The key 'token_type' not found in the response" };
fromJson(json.value("token_type"_ls), d->tokenType);
if (!json.contains("matrix_server_name"_ls))
return { IncorrectResponse,
"The key 'matrix_server_name' not found in the response" };
fromJson(json.value("matrix_server_name"_ls), d->matrixServerName);
if (!json.contains("expires_in"_ls))
return { IncorrectResponse,
"The key 'expires_in' not found in the response" };
fromJson(json.value("expires_in"_ls), d->expiresIn);
return Success;
}
|