summaryrefslogtreecommitdiffstats
path: root/src/web_service/web_backend.cpp
blob: 787b0fbcbd10d3cccf0f2a25a9c81cc51f3b4245 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include <cstdlib>
#include <string>
#include <thread>
#include <LUrlParser.h>
#include "common/logging/log.h"
#include "common/web_result.h"
#include "core/settings.h"
#include "web_service/web_backend.h"

namespace WebService {

constexpr std::array<const char, 1> API_VERSION{'1'};

constexpr u32 HTTP_PORT = 80;
constexpr u32 HTTPS_PORT = 443;

constexpr u32 TIMEOUT_SECONDS = 30;

Client::JWTCache Client::jwt_cache{};

Client::Client(const std::string& host, const std::string& username, const std::string& token)
    : host(host), username(username), token(token) {
    std::lock_guard<std::mutex> lock(jwt_cache.mutex);
    if (username == jwt_cache.username && token == jwt_cache.token) {
        jwt = jwt_cache.jwt;
    }
}

Common::WebResult Client::GenericJson(const std::string& method, const std::string& path,
                                      const std::string& data, const std::string& jwt,
                                      const std::string& username, const std::string& token) {
    if (cli == nullptr) {
        auto parsedUrl = LUrlParser::clParseURL::ParseURL(host);
        int port;
        if (parsedUrl.m_Scheme == "http") {
            if (!parsedUrl.GetPort(&port)) {
                port = HTTP_PORT;
            }
            cli =
                std::make_unique<httplib::Client>(parsedUrl.m_Host.c_str(), port, TIMEOUT_SECONDS);
        } else if (parsedUrl.m_Scheme == "https") {
            if (!parsedUrl.GetPort(&port)) {
                port = HTTPS_PORT;
            }
            cli = std::make_unique<httplib::SSLClient>(parsedUrl.m_Host.c_str(), port,
                                                       TIMEOUT_SECONDS);
        } else {
            LOG_ERROR(WebService, "Bad URL scheme {}", parsedUrl.m_Scheme);
            return Common::WebResult{Common::WebResult::Code::InvalidURL, "Bad URL scheme"};
        }
    }
    if (cli == nullptr) {
        LOG_ERROR(WebService, "Invalid URL {}", host + path);
        return Common::WebResult{Common::WebResult::Code::InvalidURL, "Invalid URL"};
    }

    httplib::Headers params;
    if (!jwt.empty()) {
        params = {
            {std::string("Authorization"), fmt::format("Bearer {}", jwt)},
        };
    } else if (!username.empty()) {
        params = {
            {std::string("x-username"), username},
            {std::string("x-token"), token},
        };
    }

    params.emplace(std::string("api-version"), std::string(API_VERSION.begin(), API_VERSION.end()));
    if (method != "GET") {
        params.emplace(std::string("Content-Type"), std::string("application/json"));
    };

    httplib::Request request;
    request.method = method;
    request.path = path;
    request.headers = params;
    request.body = data;

    httplib::Response response;

    if (!cli->send(request, response)) {
        LOG_ERROR(WebService, "{} to {} returned null", method, host + path);
        return Common::WebResult{Common::WebResult::Code::LibError, "Null response"};
    }

    if (response.status >= 400) {
        LOG_ERROR(WebService, "{} to {} returned error status code: {}", method, host + path,
                  response.status);
        return Common::WebResult{Common::WebResult::Code::HttpError,
                                 std::to_string(response.status)};
    }

    auto content_type = response.headers.find("content-type");

    if (content_type == response.headers.end()) {
        LOG_ERROR(WebService, "{} to {} returned no content", method, host + path);
        return Common::WebResult{Common::WebResult::Code::WrongContent, ""};
    }

    if (content_type->second.find("application/json") == std::string::npos &&
        content_type->second.find("text/html; charset=utf-8") == std::string::npos) {
        LOG_ERROR(WebService, "{} to {} returned wrong content: {}", method, host + path,
                  content_type->second);
        return Common::WebResult{Common::WebResult::Code::WrongContent, "Wrong content"};
    }
    return Common::WebResult{Common::WebResult::Code::Success, "", response.body};
}

void Client::UpdateJWT() {
    if (!username.empty() && !token.empty()) {
        auto result = GenericJson("POST", "/jwt/internal", "", "", username, token);
        if (result.result_code != Common::WebResult::Code::Success) {
            LOG_ERROR(WebService, "UpdateJWT failed");
        } else {
            std::lock_guard<std::mutex> lock(jwt_cache.mutex);
            jwt_cache.username = username;
            jwt_cache.token = token;
            jwt_cache.jwt = jwt = result.returned_data;
        }
    }
}

Common::WebResult Client::GenericJson(const std::string& method, const std::string& path,
                                      const std::string& data, bool allow_anonymous) {
    if (jwt.empty()) {
        UpdateJWT();
    }

    if (jwt.empty() && !allow_anonymous) {
        LOG_ERROR(WebService, "Credentials must be provided for authenticated requests");
        return Common::WebResult{Common::WebResult::Code::CredentialsMissing, "Credentials needed"};
    }

    auto result = GenericJson(method, path, data, jwt);
    if (result.result_string == "401") {
        // Try again with new JWT
        UpdateJWT();
        result = GenericJson(method, path, data, jwt);
    }

    return result;
}

} // namespace WebService