56 lines
1.6 KiB
Rust
56 lines
1.6 KiB
Rust
|
use std::{path::PathBuf, time::Duration};
|
||
|
|
||
|
use serde::Deserialize;
|
||
|
use serde_with::{serde_as, DisplayFromStr, DurationSeconds};
|
||
|
use tracing_subscriber::filter::LevelFilter;
|
||
|
|
||
|
#[derive(Deserialize)]
|
||
|
pub struct Config {
|
||
|
pub engine: EngineConfig,
|
||
|
pub cache: CacheConfig,
|
||
|
pub logger: LoggerConfig,
|
||
|
}
|
||
|
|
||
|
#[derive(Deserialize)]
|
||
|
pub struct EngineConfig {
|
||
|
/// The url that the instance of breeze is meant to be accessed from.
|
||
|
///
|
||
|
/// ex: https://picture.wtf would generate links like https://picture.wtf/p/abcdef.png
|
||
|
pub base_url: String,
|
||
|
|
||
|
/// Location on disk the uploads are to be saved to
|
||
|
pub save_path: PathBuf,
|
||
|
|
||
|
/// Authentication key for new uploads, will be required if this is specified. (optional)
|
||
|
pub upload_key: Option<String>,
|
||
|
}
|
||
|
|
||
|
#[serde_as]
|
||
|
#[derive(Deserialize)]
|
||
|
pub struct CacheConfig {
|
||
|
/// The maximum length in bytes that a file can be
|
||
|
/// before it skips cache (in seconds)
|
||
|
pub max_length: usize,
|
||
|
|
||
|
/// The amount of time a file can last inside the cache (in seconds)
|
||
|
#[serde_as(as = "DurationSeconds")]
|
||
|
pub upload_lifetime: Duration,
|
||
|
|
||
|
/// How often the cache is to be scanned for
|
||
|
/// expired entries (in seconds)
|
||
|
#[serde_as(as = "DurationSeconds")]
|
||
|
pub scan_freq: Duration,
|
||
|
|
||
|
/// How much memory the cache is allowed to use (in bytes)
|
||
|
pub mem_capacity: usize,
|
||
|
}
|
||
|
|
||
|
#[serde_as]
|
||
|
#[derive(Deserialize)]
|
||
|
pub struct LoggerConfig {
|
||
|
/// Minimum level a log must be for it to be shown.
|
||
|
/// This defaults to "warn" if not specified.
|
||
|
#[serde_as(as = "Option<DisplayFromStr>")]
|
||
|
pub level: Option<LevelFilter>,
|
||
|
}
|