nheko/src/MatrixClient.cpp

45 lines
805 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: 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>
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
{
}
} // namespace http