2022-07-25 15:18:30 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 Citra Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2022-07-15 17:45:35 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "network/verify_user.h"
|
|
|
|
#include "web_service/web_backend.h"
|
|
|
|
|
|
|
|
namespace WebService {
|
|
|
|
|
2022-07-18 03:53:44 +00:00
|
|
|
std::string GetPublicKey(const std::string& host);
|
|
|
|
|
2022-07-15 17:45:35 +00:00
|
|
|
class VerifyUserJWT final : public Network::VerifyUser::Backend {
|
|
|
|
public:
|
|
|
|
VerifyUserJWT(const std::string& host);
|
|
|
|
~VerifyUserJWT() = default;
|
|
|
|
|
2022-07-25 15:08:20 +00:00
|
|
|
Network::VerifyUser::UserData LoadUserData(const std::string& verify_uid,
|
2022-07-15 17:45:35 +00:00
|
|
|
const std::string& token) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string pub_key;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace WebService
|