summary refs log tree commit diff
path: root/src/MatrixClient.cpp
blob: d3141efd24982d9c9b11f1abf7e27a2a84e1f726 (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
43
44
45
46
47
48
49
50
51
// 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>

#include "Logging.h"
#include "UserSettingsPage.h"

namespace http {

mtx::http::Client *
client()
{
    static auto client_ = [] {
        auto c = std::make_shared<mtx::http::Client>();

        // Disabled by default until CPU usage and reliability improves
        if (UserSettings::instance()->qsettings()->value("enable_http3").toBool()) {
            nhlog::net()->warn("Enabling http3 support. This is currently usually a worse "
                               "experience, so you are on your own.");
            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