nheko/src/MatrixClient.cpp

72 lines
1.9 KiB
C++
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
// SPDX-FileCopyrightText: 2023 Nheko Contributors
2021-03-05 00:35:15 +01:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-04-06 01:06:42 +02:00
#include "MatrixClient.h"
#include <memory>
#include <set>
2017-04-06 01:06:42 +02:00
2020-01-31 16:08:30 +01:00
#include <QMetaType>
#include <QObject>
2022-11-20 03:51:44 +01:00
#include <QStandardPaths>
2020-01-31 16:08:30 +01:00
#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)
2022-02-05 08:40:56 +01:00
Q_DECLARE_METATYPE(mtx::responses::StateEvents)
2020-01-31 16:08:30 +01:00
2021-12-28 20:09:08 +01:00
// Q_DECLARE_METATYPE(nlohmann::json)
2020-01-31 16:08:30 +01:00
Q_DECLARE_METATYPE(std::string)
Q_DECLARE_METATYPE(std::vector<std::string>)
Q_DECLARE_METATYPE(std::vector<QString>)
Q_DECLARE_METATYPE(std::set<QString>)
2020-01-31 16:08:30 +01:00
namespace http {
mtx::http::Client *
client()
{
2022-11-20 03:51:44 +01:00
static auto client_ = [] {
auto c = std::make_shared<mtx::http::Client>();
c->alt_svc_cache_path((QStandardPaths::writableLocation(QStandardPaths::CacheLocation) +
"/curl_alt_svc_cache.txt")
.toStdString());
return c;
}();
2021-09-18 00:22:33 +02:00
return client_.get();
}
bool
is_logged_in()
{
return !client()->access_token().empty();
}
2017-12-11 22:00:37 +01:00
void
init()
2018-03-17 20:23:46 +01:00
{
2021-09-18 00:22:33 +02:00
qRegisterMetaType<mtx::responses::Login>();
qRegisterMetaType<mtx::responses::Messages>();
qRegisterMetaType<mtx::responses::Notifications>();
qRegisterMetaType<mtx::responses::Rooms>();
qRegisterMetaType<mtx::responses::Sync>();
2022-02-05 08:40:56 +01:00
qRegisterMetaType<mtx::responses::StateEvents>();
2021-09-18 00:22:33 +02:00
qRegisterMetaType<std::string>();
2021-12-28 20:09:08 +01:00
// qRegisterMetaType<nlohmann::json>();
2021-09-18 00:22:33 +02:00
qRegisterMetaType<std::vector<std::string>>();
qRegisterMetaType<std::vector<QString>>();
qRegisterMetaType<std::map<QString, bool>>("std::map<QString, bool>");
qRegisterMetaType<std::set<QString>>();
2018-03-17 20:23:46 +01:00
}
} // namespace http