mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-12 23:44:01 +00:00
Nutomic
e8a52d3a5c
* Add markdown rule to add rel=nofollow for all links * Add markdown image rule to add local image proxy (fixes #1036) * comments * rewrite markdown image links working * add comment * perform markdown image processing in api/apub receivers * clippy * add db table to validate proxied links * rewrite link fields for avatar, banner etc * sql fmt * proxy links received over federation * add config option * undo post.url rewriting, move http route definition * add tests * proxy images through pictrs * testing * cleanup request.rs file * more cleanup (fixes #2611) * include url content type when sending post over apub (fixes #2611) * store post url content type in db * should be media_type * get rid of cache_remote_thumbnails setting, instead automatically take thumbnail from federation data if available. * fix tests * add setting disable_external_link_previews * federate post url as image depending on mime type * change setting again * machete * invert * support custom emoji * clippy * update defaults * add image proxy test, fix test * fix test * clippy * revert accidental changes * address review * clippy * Markdown link rule-dess (#4356) * Extracting opengraph_data to its own type. * A few additions for markdown-link-rule. --------- Co-authored-by: Nutomic <me@nutomic.com> * fix setting * use enum for image proxy setting * fix test configs * add config backwards compat * clippy * machete --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
115 lines
3 KiB
Rust
115 lines
3 KiB
Rust
use crate::request::client_builder;
|
|
use activitypub_federation::config::{Data, FederationConfig};
|
|
use anyhow::anyhow;
|
|
use lemmy_db_schema::{
|
|
source::secret::Secret,
|
|
utils::{build_db_pool_for_tests, ActualDbPool, DbPool},
|
|
};
|
|
use lemmy_utils::{
|
|
rate_limit::RateLimitCell,
|
|
settings::{structs::Settings, SETTINGS},
|
|
};
|
|
use reqwest::{Request, Response};
|
|
use reqwest_middleware::{ClientBuilder, ClientWithMiddleware, Middleware, Next};
|
|
use std::sync::Arc;
|
|
use task_local_extensions::Extensions;
|
|
|
|
#[derive(Clone)]
|
|
pub struct LemmyContext {
|
|
pool: ActualDbPool,
|
|
client: Arc<ClientWithMiddleware>,
|
|
secret: Arc<Secret>,
|
|
rate_limit_cell: RateLimitCell,
|
|
}
|
|
|
|
impl LemmyContext {
|
|
pub fn create(
|
|
pool: ActualDbPool,
|
|
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<'_> {
|
|
DbPool::Pool(&self.pool)
|
|
}
|
|
pub fn inner_pool(&self) -> &ActualDbPool {
|
|
&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 rate_limit_cell(&self) -> &RateLimitCell {
|
|
&self.rate_limit_cell
|
|
}
|
|
|
|
/// Initialize a context for use in tests, optionally blocks network requests.
|
|
///
|
|
/// Do not use this in production code.
|
|
pub async fn init_test_context() -> Data<LemmyContext> {
|
|
Self::build_test_context(true).await
|
|
}
|
|
|
|
/// Initialize a context for use in tests, with network requests allowed.
|
|
/// TODO: get rid of this if possible.
|
|
///
|
|
/// Do not use this in production code.
|
|
pub async fn init_test_context_with_networking() -> Data<LemmyContext> {
|
|
Self::build_test_context(false).await
|
|
}
|
|
|
|
async fn build_test_context(block_networking: bool) -> Data<LemmyContext> {
|
|
// call this to run migrations
|
|
let pool = build_db_pool_for_tests().await;
|
|
|
|
let client = client_builder(&SETTINGS).build().expect("build client");
|
|
|
|
let mut client = ClientBuilder::new(client);
|
|
if block_networking {
|
|
client = client.with(BlockedMiddleware);
|
|
}
|
|
let client = client.build();
|
|
let secret = Secret {
|
|
id: 0,
|
|
jwt_secret: String::new(),
|
|
};
|
|
|
|
let rate_limit_cell = RateLimitCell::with_test_config();
|
|
|
|
let context = LemmyContext::create(pool, client, secret, rate_limit_cell.clone());
|
|
let config = FederationConfig::builder()
|
|
.domain(context.settings().hostname.clone())
|
|
.app_data(context)
|
|
.build()
|
|
.await
|
|
.expect("build federation config");
|
|
config.to_request_data()
|
|
}
|
|
}
|
|
|
|
struct BlockedMiddleware;
|
|
|
|
/// A reqwest middleware which blocks all requests
|
|
#[async_trait::async_trait]
|
|
impl Middleware for BlockedMiddleware {
|
|
async fn handle(
|
|
&self,
|
|
_req: Request,
|
|
_extensions: &mut Extensions,
|
|
_next: Next<'_>,
|
|
) -> reqwest_middleware::Result<Response> {
|
|
Err(anyhow!("Network requests not allowed").into())
|
|
}
|
|
}
|