2022-03-18 15:46:58 +00:00
|
|
|
use crate::protocol::{ImageObject, Source};
|
2021-10-22 16:21:26 +00:00
|
|
|
use html2md::parse_html;
|
2022-03-18 15:46:58 +00:00
|
|
|
use lemmy_apub_lib::verify::verify_domains_match;
|
|
|
|
use lemmy_utils::LemmyError;
|
|
|
|
use url::Url;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-10-18 21:36:44 +00:00
|
|
|
pub mod comment;
|
|
|
|
pub mod community;
|
2022-02-07 19:23:12 +00:00
|
|
|
pub mod instance;
|
2021-10-18 21:36:44 +00:00
|
|
|
pub mod person;
|
|
|
|
pub mod post;
|
|
|
|
pub mod private_message;
|
2020-12-08 17:38:48 +00:00
|
|
|
|
2021-10-28 21:17:59 +00:00
|
|
|
pub(crate) fn get_summary_from_string_or_source(
|
2021-10-22 16:21:26 +00:00
|
|
|
raw: &Option<String>,
|
|
|
|
source: &Option<Source>,
|
|
|
|
) -> Option<String> {
|
|
|
|
if let Some(source) = &source {
|
|
|
|
Some(source.content.clone())
|
|
|
|
} else {
|
|
|
|
raw.as_ref().map(|s| parse_html(s))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-18 15:46:58 +00:00
|
|
|
pub fn verify_image_domain_matches(a: &Url, b: &Option<ImageObject>) -> Result<(), LemmyError> {
|
|
|
|
if let Some(b) = b {
|
|
|
|
verify_domains_match(a, &b.url)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-21 17:25:35 +00:00
|
|
|
#[cfg(test)]
|
2021-10-26 10:47:26 +00:00
|
|
|
pub(crate) mod tests {
|
2021-10-21 17:25:35 +00:00
|
|
|
use actix::Actor;
|
|
|
|
use diesel::{
|
|
|
|
r2d2::{ConnectionManager, Pool},
|
|
|
|
PgConnection,
|
|
|
|
};
|
2022-03-03 18:54:33 +00:00
|
|
|
use lemmy_apub_lib::activity_queue::create_activity_queue;
|
2021-10-21 17:25:35 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
establish_unpooled_connection,
|
|
|
|
get_database_url_from_env,
|
|
|
|
source::secret::Secret,
|
|
|
|
};
|
|
|
|
use lemmy_utils::{
|
|
|
|
rate_limit::{rate_limiter::RateLimiter, RateLimit},
|
|
|
|
request::build_user_agent,
|
|
|
|
settings::structs::Settings,
|
2021-10-27 16:03:07 +00:00
|
|
|
LemmyError,
|
2021-10-21 17:25:35 +00:00
|
|
|
};
|
|
|
|
use lemmy_websocket::{chat_server::ChatServer, LemmyContext};
|
|
|
|
use reqwest::Client;
|
2021-12-06 22:54:34 +00:00
|
|
|
use reqwest_middleware::ClientBuilder;
|
2022-02-17 22:04:01 +00:00
|
|
|
use std::sync::Arc;
|
2021-10-21 17:25:35 +00:00
|
|
|
use tokio::sync::Mutex;
|
|
|
|
|
|
|
|
// TODO: would be nice if we didnt have to use a full context for tests.
|
|
|
|
// or at least write a helper function so this code is shared with main.rs
|
2022-03-03 18:54:33 +00:00
|
|
|
pub(crate) fn init_context() -> LemmyContext {
|
|
|
|
let client = reqwest::Client::new().into();
|
|
|
|
// activity queue isnt used in tests, so worker count makes no difference
|
|
|
|
let queue_manager = create_activity_queue(client, 4);
|
|
|
|
let activity_queue = queue_manager.queue_handle().clone();
|
2021-10-21 17:25:35 +00:00
|
|
|
// call this to run migrations
|
|
|
|
establish_unpooled_connection();
|
|
|
|
let settings = Settings::init().unwrap();
|
|
|
|
let rate_limiter = RateLimit {
|
|
|
|
rate_limiter: Arc::new(Mutex::new(RateLimiter::default())),
|
|
|
|
rate_limit_config: settings.rate_limit.to_owned().unwrap_or_default(),
|
|
|
|
};
|
|
|
|
let client = Client::builder()
|
|
|
|
.user_agent(build_user_agent(&settings))
|
|
|
|
.build()
|
|
|
|
.unwrap();
|
2021-12-06 22:54:34 +00:00
|
|
|
|
|
|
|
let client = ClientBuilder::new(client).build();
|
2021-10-21 17:25:35 +00:00
|
|
|
let secret = Secret {
|
|
|
|
id: 0,
|
|
|
|
jwt_secret: "".to_string(),
|
|
|
|
};
|
|
|
|
let db_url = match get_database_url_from_env() {
|
|
|
|
Ok(url) => url,
|
|
|
|
Err(_) => settings.get_database_url(),
|
|
|
|
};
|
|
|
|
let manager = ConnectionManager::<PgConnection>::new(&db_url);
|
|
|
|
let pool = Pool::builder()
|
|
|
|
.max_size(settings.database.pool_size)
|
|
|
|
.build(manager)
|
|
|
|
.unwrap_or_else(|_| panic!("Error connecting to {}", db_url));
|
|
|
|
async fn x() -> Result<String, LemmyError> {
|
|
|
|
Ok("".to_string())
|
|
|
|
}
|
|
|
|
let chat_server = ChatServer::startup(
|
|
|
|
pool.clone(),
|
|
|
|
rate_limiter,
|
|
|
|
|_, _, _, _| Box::pin(x()),
|
|
|
|
|_, _, _, _| Box::pin(x()),
|
|
|
|
client.clone(),
|
|
|
|
activity_queue.clone(),
|
|
|
|
settings.clone(),
|
|
|
|
secret.clone(),
|
|
|
|
)
|
|
|
|
.start();
|
|
|
|
LemmyContext::create(pool, chat_server, client, activity_queue, settings, secret)
|
|
|
|
}
|
|
|
|
}
|