blob: a497417779b5af69d2c8ff1f7c1c4c3aa3e7d67a (
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
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "jobs/basejob.h"
#include "converters.h"
#include <QtCore/QJsonObject>
namespace QMatrixClient
{
// Operations
class RegisterJob : public BaseJob
{
public:
explicit RegisterJob(const QString& kind = QStringLiteral("user"), const QJsonObject& auth = {}, bool bindEmail = false, const QString& username = {}, const QString& password = {}, const QString& deviceId = {}, const QString& initialDeviceDisplayName = {});
~RegisterJob() override;
// Result properties
const QString& userId() const;
const QString& accessToken() const;
const QString& homeServer() const;
const QString& deviceId() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
class RequestTokenToRegisterJob : public BaseJob
{
public:
explicit RequestTokenToRegisterJob(const QString& clientSecret, const QString& email, int sendAttempt, const QString& idServer = {});
};
class ChangePasswordJob : public BaseJob
{
public:
explicit ChangePasswordJob(const QString& newPassword, const QJsonObject& auth = {});
};
class RequestTokenToResetPasswordJob : public BaseJob
{
public:
explicit RequestTokenToResetPasswordJob();
/** Construct a URL out of baseUrl and usual parameters passed to
* RequestTokenToResetPasswordJob. This function can be used when
* a URL for RequestTokenToResetPasswordJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl);
};
class DeactivateAccountJob : public BaseJob
{
public:
explicit DeactivateAccountJob(const QJsonObject& auth = {});
};
class CheckUsernameAvailabilityJob : public BaseJob
{
public:
explicit CheckUsernameAvailabilityJob(const QString& username);
/** Construct a URL out of baseUrl and usual parameters passed to
* CheckUsernameAvailabilityJob. This function can be used when
* a URL for CheckUsernameAvailabilityJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& username);
~CheckUsernameAvailabilityJob() override;
// Result properties
bool available() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace QMatrixClient
|