blob: 05ec6a92b72872dae4440fd617256dd6e9029f53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
#include "MatrixClient.h"
#include <memory>
#include <QMetaType>
#include <QObject>
#include <QStandardPaths>
#include <QString>
#include <mtx/responses.hpp>
namespace http {
mtx::http::Client *
client()
{
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;
}();
return client_.get();
}
bool
is_logged_in()
{
return !client()->access_token().empty();
}
void
init()
{
}
} // namespace http
|