2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
#include "MatrixClient.h"
|
2018-06-09 16:03:14 +03:00
|
|
|
|
|
|
|
#include <memory>
|
2021-01-23 02:30:45 +03:00
|
|
|
#include <set>
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2020-01-31 18:08:30 +03:00
|
|
|
#include <QMetaType>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "nlohmann/json.hpp"
|
|
|
|
#include <mtx/responses.hpp>
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(mtx::responses::Login)
|
|
|
|
Q_DECLARE_METATYPE(mtx::responses::Messages)
|
|
|
|
Q_DECLARE_METATYPE(mtx::responses::Notifications)
|
|
|
|
Q_DECLARE_METATYPE(mtx::responses::Rooms)
|
|
|
|
Q_DECLARE_METATYPE(mtx::responses::Sync)
|
|
|
|
Q_DECLARE_METATYPE(mtx::responses::JoinedGroups)
|
|
|
|
Q_DECLARE_METATYPE(mtx::responses::GroupProfile)
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(nlohmann::json)
|
|
|
|
Q_DECLARE_METATYPE(std::string)
|
|
|
|
Q_DECLARE_METATYPE(std::vector<std::string>)
|
|
|
|
Q_DECLARE_METATYPE(std::vector<QString>)
|
2021-01-23 02:30:45 +03:00
|
|
|
Q_DECLARE_METATYPE(std::set<QString>)
|
2020-01-31 18:08:30 +03:00
|
|
|
|
2018-05-08 18:43:56 +03:00
|
|
|
namespace {
|
2018-07-15 19:09:08 +03:00
|
|
|
auto client_ = std::make_shared<mtx::http::Client>();
|
2018-05-08 18:43:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace http {
|
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
mtx::http::Client *
|
2018-05-08 18:43:56 +03:00
|
|
|
client()
|
|
|
|
{
|
2018-07-15 19:09:08 +03:00
|
|
|
return client_.get();
|
2017-10-01 19:49:36 +03:00
|
|
|
}
|
2017-10-31 21:11:49 +03:00
|
|
|
|
2018-06-10 20:03:45 +03:00
|
|
|
bool
|
|
|
|
is_logged_in()
|
|
|
|
{
|
2018-07-15 19:09:08 +03:00
|
|
|
return !client_->access_token().empty();
|
2018-06-10 20:03:45 +03:00
|
|
|
}
|
|
|
|
|
2017-12-12 00:00:37 +03:00
|
|
|
void
|
2018-06-09 16:03:14 +03:00
|
|
|
init()
|
2018-03-17 22:23:46 +03:00
|
|
|
{
|
2018-06-09 16:03:14 +03:00
|
|
|
qRegisterMetaType<mtx::responses::Login>();
|
|
|
|
qRegisterMetaType<mtx::responses::Messages>();
|
|
|
|
qRegisterMetaType<mtx::responses::Notifications>();
|
|
|
|
qRegisterMetaType<mtx::responses::Rooms>();
|
|
|
|
qRegisterMetaType<mtx::responses::Sync>();
|
2018-07-14 12:08:16 +03:00
|
|
|
qRegisterMetaType<mtx::responses::JoinedGroups>();
|
|
|
|
qRegisterMetaType<mtx::responses::GroupProfile>();
|
2018-06-09 16:03:14 +03:00
|
|
|
qRegisterMetaType<std::string>();
|
2018-09-12 16:27:25 +03:00
|
|
|
qRegisterMetaType<nlohmann::json>();
|
2018-06-09 16:03:14 +03:00
|
|
|
qRegisterMetaType<std::vector<std::string>>();
|
2018-07-14 12:08:16 +03:00
|
|
|
qRegisterMetaType<std::vector<QString>>();
|
2018-07-25 16:34:54 +03:00
|
|
|
qRegisterMetaType<std::map<QString, bool>>("std::map<QString, bool>");
|
2021-01-23 02:30:45 +03:00
|
|
|
qRegisterMetaType<std::set<QString>>();
|
2018-03-17 22:23:46 +03:00
|
|
|
}
|
2018-05-05 16:38:41 +03:00
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
} // namespace http
|