pub struct Configuration {
    pub settings: RwLock<TorrustBackend>,
    pub config_path: Option<String>,
}
Expand description

The configuration service.

Fields§

§settings: RwLock<TorrustBackend>

The state of the configuration.

§config_path: Option<String>

The path to the configuration file. This is None if the configuration was loaded from the environment.

Implementations§

source§

impl Configuration

source

pub async fn load_from_file( config_path: &str ) -> Result<Configuration, ConfigError>

Loads the configuration from the configuration file.

Errors

This function will return an error no configuration in the CONFIG_PATH exists, and a new file is is created. This function will return an error if the config is not a valid TorrustConfig document.

source

pub fn load_from_env_var( config_env_var_name: &str ) -> Result<Configuration, ConfigError>

Loads the configuration from the environment variable. The whole configuration must be in the environment variable. It contains the same configuration as the configuration file with the same format.

Errors

Will return Err if the environment variable does not exist or has a bad configuration.

source

pub async fn save_to_file(&self, config_path: &str)

Returns the save to file of this Configuration.

source

pub async fn update_settings( &self, new_settings: TorrustBackend ) -> Result<(), ()>

Update the settings file based upon a supplied new_settings.

Errors

Todo: Make an error if the save fails.

Panics

Will panic if the configuration file path is not defined. That happens when the configuration was loaded from the environment variable.

source

pub async fn get_all(&self) -> TorrustBackend

source

pub async fn get_public(&self) -> ConfigurationPublic

source

pub async fn get_site_name(&self) -> String

source

pub async fn get_api_base_url(&self) -> Option<String>

Trait Implementations§

source§

impl Debug for Configuration

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Configuration

source§

fn default() -> Configuration

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more