mirror of
https://github.com/transmission/transmission.git
synced 2025-12-12 20:35:49 +01:00
* refactor: replace Settings class with Serializable * Fields can now be declared as const static, so we only have to build this list once per class instead of once per iteration. * Add typesafe single-property getters & setters. * Split the converter registry into a generic standalone class. * refactor: make Serializable::Field::getter private refactor: make Serializable::Field::const_getter private * docs: tweak code comments * refactor: make Serializable::Field::Getter private refactor: make Serializable::Field::ConstGetter private refactor: make Serializable::Field::MemberStorage private * chore: fix readability-identifier-naming clang-tidy warnings * Update libtransmission/serializable.h Co-authored-by: Yat Ho <lagoho7@gmail.com> * Update libtransmission/serializable.h Co-authored-by: Yat Ho <lagoho7@gmail.com> * Update libtransmission/serializable.h Co-authored-by: Yat Ho <lagoho7@gmail.com> * fixup! Update libtransmission/serializable.h --------- Co-authored-by: Yat Ho <lagoho7@gmail.com>
202 lines
5.8 KiB
C++
202 lines
5.8 KiB
C++
// This file Copyright © Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#pragma once
|
|
|
|
#ifndef __TRANSMISSION__
|
|
#error only libtransmission should #include this header.
|
|
#endif
|
|
|
|
#include <array>
|
|
#include <cstddef> // size_t
|
|
#include <memory>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <vector>
|
|
|
|
#include "libtransmission/transmission.h"
|
|
|
|
#include "libtransmission/net.h"
|
|
#include "libtransmission/quark.h"
|
|
#include "libtransmission/serializable.h"
|
|
#include "libtransmission/utils-ev.h"
|
|
|
|
class tr_rpc_address;
|
|
struct tr_session;
|
|
struct tr_variant;
|
|
struct libdeflate_compressor;
|
|
|
|
namespace libtransmission
|
|
{
|
|
class Timer;
|
|
}
|
|
|
|
class tr_rpc_server
|
|
{
|
|
public:
|
|
class Settings final : public libtransmission::Serializable<Settings>
|
|
{
|
|
public:
|
|
Settings() = default;
|
|
|
|
explicit Settings(tr_variant const& src)
|
|
{
|
|
load(src);
|
|
}
|
|
|
|
// NB: When adding a field here, you must also add it to
|
|
// fields() if you want it to be in session-settings.json
|
|
bool authentication_required = false;
|
|
bool is_anti_brute_force_enabled = false;
|
|
bool is_enabled = false;
|
|
bool is_host_whitelist_enabled = true;
|
|
bool is_whitelist_enabled = true;
|
|
size_t anti_brute_force_limit = 100U;
|
|
std::string bind_address_str = "0.0.0.0";
|
|
std::string host_whitelist_str;
|
|
std::string salted_password;
|
|
std::string url = TR_DEFAULT_RPC_URL_STR;
|
|
std::string username;
|
|
std::string whitelist_str = TR_DEFAULT_RPC_WHITELIST;
|
|
tr_mode_t socket_mode = 0750;
|
|
tr_port port = tr_port::from_host(TrDefaultRpcPort);
|
|
|
|
private:
|
|
friend libtransmission::Serializable<Settings>;
|
|
|
|
static inline auto const fields = std::array<Field, 14U>{ {
|
|
{ TR_KEY_anti_brute_force_enabled, &Settings::is_anti_brute_force_enabled },
|
|
{ TR_KEY_anti_brute_force_threshold, &Settings::anti_brute_force_limit },
|
|
{ TR_KEY_rpc_authentication_required, &Settings::authentication_required },
|
|
{ TR_KEY_rpc_bind_address, &Settings::bind_address_str },
|
|
{ TR_KEY_rpc_enabled, &Settings::is_enabled },
|
|
{ TR_KEY_rpc_host_whitelist, &Settings::host_whitelist_str },
|
|
{ TR_KEY_rpc_host_whitelist_enabled, &Settings::is_host_whitelist_enabled },
|
|
{ TR_KEY_rpc_port, &Settings::port },
|
|
{ TR_KEY_rpc_password, &Settings::salted_password },
|
|
{ TR_KEY_rpc_socket_mode, &Settings::socket_mode },
|
|
{ TR_KEY_rpc_url, &Settings::url },
|
|
{ TR_KEY_rpc_username, &Settings::username },
|
|
{ TR_KEY_rpc_whitelist, &Settings::whitelist_str },
|
|
{ TR_KEY_rpc_whitelist_enabled, &Settings::is_whitelist_enabled },
|
|
} };
|
|
};
|
|
|
|
tr_rpc_server(tr_session* session, Settings&& settings);
|
|
~tr_rpc_server();
|
|
|
|
tr_rpc_server(tr_rpc_server&) = delete;
|
|
tr_rpc_server(tr_rpc_server&&) = delete;
|
|
tr_rpc_server& operator=(tr_rpc_server&) = delete;
|
|
tr_rpc_server& operator=(tr_rpc_server&&) = delete;
|
|
|
|
void load(Settings&& settings);
|
|
|
|
[[nodiscard]] constexpr Settings const& settings() const
|
|
{
|
|
return settings_;
|
|
}
|
|
|
|
[[nodiscard]] constexpr tr_port port() const noexcept
|
|
{
|
|
return settings_.port;
|
|
}
|
|
|
|
void set_port(tr_port port) noexcept;
|
|
|
|
[[nodiscard]] constexpr auto is_enabled() const noexcept
|
|
{
|
|
return settings_.is_enabled;
|
|
}
|
|
|
|
void set_enabled(bool is_enabled);
|
|
|
|
[[nodiscard]] constexpr auto is_whitelist_enabled() const noexcept
|
|
{
|
|
return settings_.is_whitelist_enabled;
|
|
}
|
|
|
|
constexpr void set_whitelist_enabled(bool is_whitelist_enabled) noexcept
|
|
{
|
|
settings_.is_whitelist_enabled = is_whitelist_enabled;
|
|
}
|
|
|
|
[[nodiscard]] constexpr auto const& whitelist() const noexcept
|
|
{
|
|
return settings_.whitelist_str;
|
|
}
|
|
|
|
void set_whitelist(std::string_view whitelist);
|
|
|
|
[[nodiscard]] constexpr auto const& username() const noexcept
|
|
{
|
|
return settings_.username;
|
|
}
|
|
|
|
void set_username(std::string_view username);
|
|
|
|
[[nodiscard]] constexpr auto is_password_enabled() const noexcept
|
|
{
|
|
return settings_.authentication_required;
|
|
}
|
|
|
|
void set_password_enabled(bool enabled);
|
|
|
|
[[nodiscard]] constexpr auto const& get_salted_password() const noexcept
|
|
{
|
|
return settings_.salted_password;
|
|
}
|
|
|
|
void set_password(std::string_view password) noexcept;
|
|
|
|
[[nodiscard]] constexpr auto is_anti_brute_force_enabled() const noexcept
|
|
{
|
|
return settings_.is_anti_brute_force_enabled;
|
|
}
|
|
|
|
void set_anti_brute_force_enabled(bool enabled) noexcept;
|
|
|
|
[[nodiscard]] constexpr auto get_anti_brute_force_limit() const noexcept
|
|
{
|
|
return settings_.anti_brute_force_limit;
|
|
}
|
|
|
|
constexpr void set_anti_brute_force_limit(int limit) noexcept
|
|
{
|
|
settings_.anti_brute_force_limit = limit;
|
|
}
|
|
|
|
std::unique_ptr<libdeflate_compressor, void (*)(libdeflate_compressor*)> compressor;
|
|
|
|
[[nodiscard]] constexpr auto const& url() const noexcept
|
|
{
|
|
return settings_.url;
|
|
}
|
|
|
|
void set_url(std::string_view url);
|
|
|
|
[[nodiscard]] std::string get_bind_address() const;
|
|
|
|
[[nodiscard]] constexpr auto socket_mode() const noexcept
|
|
{
|
|
return settings_.socket_mode;
|
|
}
|
|
|
|
Settings settings_;
|
|
|
|
std::vector<std::string> host_whitelist_;
|
|
std::vector<std::string> whitelist_;
|
|
std::string const web_client_dir_;
|
|
|
|
std::unique_ptr<tr_rpc_address> bind_address_;
|
|
|
|
std::unique_ptr<libtransmission::Timer> start_retry_timer;
|
|
libtransmission::evhelpers::evhttp_unique_ptr httpd;
|
|
tr_session* const session;
|
|
|
|
size_t login_attempts_ = 0U;
|
|
int start_retry_counter = 0;
|
|
};
|