matrixion/src/MatrixClient.cpp

43 lines
761 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
2021-03-05 02:35:15 +03:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-04-06 02:06:42 +03:00
#include "MatrixClient.h"
#include <memory>
2017-04-06 02:06:42 +03:00
2020-01-31 18:08:30 +03:00
#include <QMetaType>
#include <QObject>
2022-11-20 05:51:44 +03:00
#include <QStandardPaths>
2020-01-31 18:08:30 +03:00
#include <QString>
#include <mtx/responses.hpp>
namespace http {
mtx::http::Client *
client()
{
2022-11-20 05:51:44 +03: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 01:22:33 +03:00
return client_.get();
}
bool
is_logged_in()
{
return !client()->access_token().empty();
}
2017-12-12 00:00:37 +03:00
void
init()
2018-03-17 22:23:46 +03:00
{
}
} // namespace http