forked from loafle/openapi-generator-original
* importContainerType = true * add unit test * disable MyImportTest * build all samples, add import exceptions * simplify code * delete myImportTest * generate docs * extend comment * remove inline comment
179 lines
7.2 KiB
C++
179 lines
7.2 KiB
C++
/**
|
|
* OpenAPI Petstore
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
#ifndef PFX_PFXUserApi_H
|
|
#define PFX_PFXUserApi_H
|
|
|
|
#include "PFXHelpers.h"
|
|
#include "PFXHttpRequest.h"
|
|
#include "PFXServerConfiguration.h"
|
|
#include "PFXOauth.h"
|
|
|
|
#include "PFXUser.h"
|
|
#include <QString>
|
|
|
|
#include <QObject>
|
|
#include <QByteArray>
|
|
#include <QStringList>
|
|
#include <QList>
|
|
#include <QNetworkAccessManager>
|
|
|
|
namespace test_namespace {
|
|
|
|
class PFXUserApi : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PFXUserApi(const int timeOut = 0);
|
|
~PFXUserApi();
|
|
|
|
void initializeServerConfigs();
|
|
int setDefaultServerValue(int serverIndex,const QString &operation, const QString &variable,const QString &val);
|
|
void setServerIndex(const QString &operation, int serverIndex);
|
|
void setApiKey(const QString &apiKeyName, const QString &apiKey);
|
|
void setBearerToken(const QString &token);
|
|
void setUsername(const QString &username);
|
|
void setPassword(const QString &password);
|
|
void setTimeOut(const int timeOut);
|
|
void setWorkingDirectory(const QString &path);
|
|
void setNetworkAccessManager(QNetworkAccessManager* manager);
|
|
int addServerConfiguration(const QString &operation, const QUrl &url, const QString &description = "", const QMap<QString, PFXServerVariable> &variables = QMap<QString, PFXServerVariable>());
|
|
void setNewServerForAllOperations(const QUrl &url, const QString &description = "", const QMap<QString, PFXServerVariable> &variables = QMap<QString, PFXServerVariable>());
|
|
void setNewServer(const QString &operation, const QUrl &url, const QString &description = "", const QMap<QString, PFXServerVariable> &variables = QMap<QString, PFXServerVariable>());
|
|
void addHeaders(const QString &key, const QString &value);
|
|
void enableRequestCompression();
|
|
void enableResponseCompression();
|
|
void abortRequests();
|
|
QString getParamStylePrefix(const QString &style);
|
|
QString getParamStyleSuffix(const QString &style);
|
|
QString getParamStyleDelimiter(const QString &style, const QString &name, bool isExplode);
|
|
|
|
/**
|
|
* @param[in] pfx_user PFXUser [required]
|
|
*/
|
|
void createUser(const PFXUser &pfx_user);
|
|
|
|
/**
|
|
* @param[in] pfx_user QList<PFXUser> [required]
|
|
*/
|
|
void createUsersWithArrayInput(const QList<PFXUser> &pfx_user);
|
|
|
|
/**
|
|
* @param[in] pfx_user QList<PFXUser> [required]
|
|
*/
|
|
void createUsersWithListInput(const QList<PFXUser> &pfx_user);
|
|
|
|
/**
|
|
* @param[in] username QString [required]
|
|
*/
|
|
void deleteUser(const QString &username);
|
|
|
|
/**
|
|
* @param[in] username QString [required]
|
|
*/
|
|
void getUserByName(const QString &username);
|
|
|
|
/**
|
|
* @param[in] username QString [required]
|
|
* @param[in] password QString [required]
|
|
*/
|
|
void loginUser(const QString &username, const QString &password);
|
|
|
|
|
|
void logoutUser();
|
|
|
|
/**
|
|
* @param[in] username QString [required]
|
|
* @param[in] pfx_user PFXUser [required]
|
|
*/
|
|
void updateUser(const QString &username, const PFXUser &pfx_user);
|
|
|
|
|
|
private:
|
|
QMap<QString,int> _serverIndices;
|
|
QMap<QString,QList<PFXServerConfiguration>> _serverConfigs;
|
|
QMap<QString, QString> _apiKeys;
|
|
QString _bearerToken;
|
|
QString _username;
|
|
QString _password;
|
|
int _timeOut;
|
|
QString _workingDirectory;
|
|
QNetworkAccessManager* _manager;
|
|
QMap<QString, QString> _defaultHeaders;
|
|
bool _isResponseCompressionEnabled;
|
|
bool _isRequestCompressionEnabled;
|
|
PFXHttpRequestInput _latestInput;
|
|
PFXHttpRequestWorker *_latestWorker;
|
|
QStringList _latestScope;
|
|
OauthCode _authFlow;
|
|
OauthImplicit _implicitFlow;
|
|
OauthCredentials _credentialFlow;
|
|
OauthPassword _passwordFlow;
|
|
int _OauthMethod = 0;
|
|
|
|
void createUserCallback(PFXHttpRequestWorker *worker);
|
|
void createUsersWithArrayInputCallback(PFXHttpRequestWorker *worker);
|
|
void createUsersWithListInputCallback(PFXHttpRequestWorker *worker);
|
|
void deleteUserCallback(PFXHttpRequestWorker *worker);
|
|
void getUserByNameCallback(PFXHttpRequestWorker *worker);
|
|
void loginUserCallback(PFXHttpRequestWorker *worker);
|
|
void logoutUserCallback(PFXHttpRequestWorker *worker);
|
|
void updateUserCallback(PFXHttpRequestWorker *worker);
|
|
|
|
signals:
|
|
|
|
void createUserSignal();
|
|
void createUsersWithArrayInputSignal();
|
|
void createUsersWithListInputSignal();
|
|
void deleteUserSignal();
|
|
void getUserByNameSignal(PFXUser summary);
|
|
void loginUserSignal(QString summary);
|
|
void logoutUserSignal();
|
|
void updateUserSignal();
|
|
|
|
void createUserSignalFull(PFXHttpRequestWorker *worker);
|
|
void createUsersWithArrayInputSignalFull(PFXHttpRequestWorker *worker);
|
|
void createUsersWithListInputSignalFull(PFXHttpRequestWorker *worker);
|
|
void deleteUserSignalFull(PFXHttpRequestWorker *worker);
|
|
void getUserByNameSignalFull(PFXHttpRequestWorker *worker, PFXUser summary);
|
|
void loginUserSignalFull(PFXHttpRequestWorker *worker, QString summary);
|
|
void logoutUserSignalFull(PFXHttpRequestWorker *worker);
|
|
void updateUserSignalFull(PFXHttpRequestWorker *worker);
|
|
|
|
void createUserSignalE(QNetworkReply::NetworkError error_type, QString error_str);
|
|
void createUsersWithArrayInputSignalE(QNetworkReply::NetworkError error_type, QString error_str);
|
|
void createUsersWithListInputSignalE(QNetworkReply::NetworkError error_type, QString error_str);
|
|
void deleteUserSignalE(QNetworkReply::NetworkError error_type, QString error_str);
|
|
void getUserByNameSignalE(PFXUser summary, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void loginUserSignalE(QString summary, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void logoutUserSignalE(QNetworkReply::NetworkError error_type, QString error_str);
|
|
void updateUserSignalE(QNetworkReply::NetworkError error_type, QString error_str);
|
|
|
|
void createUserSignalEFull(PFXHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void createUsersWithArrayInputSignalEFull(PFXHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void createUsersWithListInputSignalEFull(PFXHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void deleteUserSignalEFull(PFXHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void getUserByNameSignalEFull(PFXHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void loginUserSignalEFull(PFXHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void logoutUserSignalEFull(PFXHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
|
|
void updateUserSignalEFull(PFXHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
|
|
|
|
void abortRequestsSignal();
|
|
void allPendingRequestsCompleted();
|
|
|
|
public slots:
|
|
void tokenAvailable();
|
|
|
|
};
|
|
|
|
} // namespace test_namespace
|
|
#endif
|