mirror of
https://github.com/LemmyNet/activitypub-federation-rust
synced 2024-12-11 12:32:50 +00:00
76 lines
2.1 KiB
Rust
76 lines
2.1 KiB
Rust
use crate::{
|
|
objects::{person::DbUser, post::DbPost},
|
|
Error,
|
|
};
|
|
use activitypub_federation::config::{FederationConfig, UrlVerifier};
|
|
use anyhow::anyhow;
|
|
use async_trait::async_trait;
|
|
use std::sync::{Arc, Mutex};
|
|
use url::Url;
|
|
|
|
pub fn new_instance(
|
|
hostname: &str,
|
|
name: String,
|
|
) -> Result<FederationConfig<DatabaseHandle>, Error> {
|
|
let local_user = DbUser::new(hostname, name)?;
|
|
let database = Arc::new(Database {
|
|
users: Mutex::new(vec![local_user]),
|
|
posts: Mutex::new(vec![]),
|
|
});
|
|
let config = FederationConfig::builder()
|
|
.domain(hostname)
|
|
.app_data(database)
|
|
.debug(true)
|
|
.build()?;
|
|
Ok(config)
|
|
}
|
|
|
|
pub type DatabaseHandle = Arc<Database>;
|
|
|
|
/// Our "database" which contains all known posts users (local and federated)
|
|
pub struct Database {
|
|
pub users: Mutex<Vec<DbUser>>,
|
|
pub posts: Mutex<Vec<DbPost>>,
|
|
}
|
|
|
|
/// Use this to store your federation blocklist, or a database connection needed to retrieve it.
|
|
#[derive(Clone)]
|
|
struct MyUrlVerifier();
|
|
|
|
#[async_trait]
|
|
impl UrlVerifier for MyUrlVerifier {
|
|
async fn verify(&self, url: &Url) -> Result<(), &'static str> {
|
|
if url.domain() == Some("malicious.com") {
|
|
Err("malicious domain")
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn listen(config: &FederationConfig<DatabaseHandle>) -> Result<(), Error> {
|
|
if cfg!(feature = "actix-web") == cfg!(feature = "axum") {
|
|
panic!("Exactly one of features \"actix-web\" and \"axum\" must be enabled");
|
|
}
|
|
#[cfg(feature = "actix-web")]
|
|
crate::actix_web::http::listen(config)?;
|
|
#[cfg(feature = "axum")]
|
|
crate::axum::http::listen(config)?;
|
|
Ok(())
|
|
}
|
|
|
|
impl Database {
|
|
pub fn local_user(&self) -> DbUser {
|
|
let lock = self.users.lock().unwrap();
|
|
lock.first().unwrap().clone()
|
|
}
|
|
|
|
pub fn read_user(&self, name: &str) -> Result<DbUser, Error> {
|
|
let db_user = self.local_user();
|
|
if name == db_user.name {
|
|
Ok(db_user)
|
|
} else {
|
|
Err(anyhow!("Invalid user {name}").into())
|
|
}
|
|
}
|
|
}
|