mirror of https://github.com/LemmyNet/lemmy.git
47 lines
1014 B
Rust
47 lines
1014 B
Rust
use lemmy_db_schema::{source::secret::Secret, utils::DbPool};
|
|
use lemmy_utils::{
|
|
rate_limit::RateLimitCell,
|
|
settings::{structs::Settings, SETTINGS},
|
|
};
|
|
use reqwest_middleware::ClientWithMiddleware;
|
|
use std::sync::Arc;
|
|
|
|
#[derive(Clone)]
|
|
pub struct LemmyContext {
|
|
pool: DbPool,
|
|
client: Arc<ClientWithMiddleware>,
|
|
secret: Arc<Secret>,
|
|
rate_limit_cell: RateLimitCell,
|
|
}
|
|
|
|
impl LemmyContext {
|
|
pub fn create(
|
|
pool: DbPool,
|
|
client: ClientWithMiddleware,
|
|
secret: Secret,
|
|
rate_limit_cell: RateLimitCell,
|
|
) -> LemmyContext {
|
|
LemmyContext {
|
|
pool,
|
|
client: Arc::new(client),
|
|
secret: Arc::new(secret),
|
|
rate_limit_cell,
|
|
}
|
|
}
|
|
pub fn pool(&self) -> &DbPool {
|
|
&self.pool
|
|
}
|
|
pub fn client(&self) -> &ClientWithMiddleware {
|
|
&self.client
|
|
}
|
|
pub fn settings(&self) -> &'static Settings {
|
|
&SETTINGS
|
|
}
|
|
pub fn secret(&self) -> &Secret {
|
|
&self.secret
|
|
}
|
|
pub fn settings_updated_channel(&self) -> &RateLimitCell {
|
|
&self.rate_limit_cell
|
|
}
|
|
}
|