2023-07-11 13:09:59 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::secret::Secret,
|
|
|
|
utils::{ActualDbPool, DbPool},
|
|
|
|
};
|
2022-11-28 14:29:33 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
rate_limit::RateLimitCell,
|
|
|
|
settings::{structs::Settings, SETTINGS},
|
|
|
|
};
|
|
|
|
use reqwest_middleware::ClientWithMiddleware;
|
2022-12-09 15:31:47 +00:00
|
|
|
use std::sync::Arc;
|
2022-11-28 14:29:33 +00:00
|
|
|
|
2023-03-21 15:03:05 +00:00
|
|
|
#[derive(Clone)]
|
2022-11-28 14:29:33 +00:00
|
|
|
pub struct LemmyContext {
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: ActualDbPool,
|
2023-03-21 15:03:05 +00:00
|
|
|
client: Arc<ClientWithMiddleware>,
|
|
|
|
secret: Arc<Secret>,
|
2022-11-28 14:29:33 +00:00
|
|
|
rate_limit_cell: RateLimitCell,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LemmyContext {
|
|
|
|
pub fn create(
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: ActualDbPool,
|
2022-11-28 14:29:33 +00:00
|
|
|
client: ClientWithMiddleware,
|
|
|
|
secret: Secret,
|
|
|
|
rate_limit_cell: RateLimitCell,
|
|
|
|
) -> LemmyContext {
|
|
|
|
LemmyContext {
|
|
|
|
pool,
|
2023-03-21 15:03:05 +00:00
|
|
|
client: Arc::new(client),
|
|
|
|
secret: Arc::new(secret),
|
2022-11-28 14:29:33 +00:00
|
|
|
rate_limit_cell,
|
|
|
|
}
|
|
|
|
}
|
2023-07-11 13:09:59 +00:00
|
|
|
pub fn pool(&self) -> DbPool<'_> {
|
|
|
|
DbPool::Pool(&self.pool)
|
|
|
|
}
|
|
|
|
pub fn inner_pool(&self) -> &ActualDbPool {
|
2022-11-28 14:29:33 +00:00
|
|
|
&self.pool
|
|
|
|
}
|
|
|
|
pub fn client(&self) -> &ClientWithMiddleware {
|
|
|
|
&self.client
|
|
|
|
}
|
|
|
|
pub fn settings(&self) -> &'static Settings {
|
|
|
|
&SETTINGS
|
|
|
|
}
|
|
|
|
pub fn secret(&self) -> &Secret {
|
|
|
|
&self.secret
|
|
|
|
}
|
2023-10-19 13:31:51 +00:00
|
|
|
pub fn rate_limit_cell(&self) -> &RateLimitCell {
|
2022-11-28 14:29:33 +00:00
|
|
|
&self.rate_limit_cell
|
|
|
|
}
|
|
|
|
}
|