mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#ifndef GITEEIMAGEHOST_H
|
|
#define GITEEIMAGEHOST_H
|
|
|
|
#include "repoimagehost.h"
|
|
|
|
namespace vnotex
|
|
{
|
|
class GiteeImageHost : public RepoImageHost
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit GiteeImageHost(QObject *p_parent);
|
|
|
|
bool ready() const Q_DECL_OVERRIDE;
|
|
|
|
Type getType() const Q_DECL_OVERRIDE;
|
|
|
|
QJsonObject getConfig() const Q_DECL_OVERRIDE;
|
|
|
|
void setConfig(const QJsonObject &p_jobj) Q_DECL_OVERRIDE;
|
|
|
|
QString create(const QByteArray &p_data, const QString &p_path, QString &p_msg) Q_DECL_OVERRIDE;
|
|
|
|
bool remove(const QString &p_url, QString &p_msg) Q_DECL_OVERRIDE;
|
|
|
|
bool ownsUrl(const QString &p_url) const Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
vte::NetworkReply getRepoInfo(const QString &p_token, const QString &p_userName, const QString &p_repoName) const Q_DECL_OVERRIDE;
|
|
|
|
static vte::NetworkAccess::RawHeaderPairs prepareCommonHeaders();
|
|
|
|
static QString addAccessToken(const QString &p_token, QString p_url);
|
|
|
|
QString m_personalAccessToken;
|
|
|
|
QString m_userName;
|
|
|
|
QString m_repoName;
|
|
|
|
QString m_imageUrlPrefix;
|
|
|
|
static const QString c_apiUrl;
|
|
};
|
|
}
|
|
|
|
#endif // GITEEIMAGEHOST_H
|