lemmy/server/src/apub/mod.rs

34 lines
781 B
Rust
Raw Normal View History

pub mod community;
pub mod post;
pub mod puller;
pub mod user;
use crate::Settings;
2020-03-16 13:30:25 -04:00
use actix_web::body::Body;
use actix_web::HttpResponse;
use std::fmt::Display;
use url::Url;
2020-03-16 13:30:25 -04:00
fn create_apub_response(json_data: String) -> HttpResponse<Body> {
HttpResponse::Ok()
.content_type("application/activity+json")
.body(json_data)
}
2020-03-11 13:26:58 -04:00
// TODO: this should take an enum community/user/post for `point`
// TODO: also not sure what exactly `value` should be (numeric id, name string, ...)
2020-03-16 13:30:25 -04:00
fn make_apub_endpoint<S: Display, T: Display>(point: S, value: T) -> Url {
Url::parse(&format!(
2020-02-29 12:38:47 -05:00
"{}://{}/federation/{}/{}",
get_apub_protocol_string(),
Settings::get().hostname,
point,
value
))
.unwrap()
}
2020-02-29 12:38:47 -05:00
2020-03-16 13:30:25 -04:00
fn get_apub_protocol_string() -> &'static str {
2020-02-29 12:38:47 -05:00
"http"
}