2020-09-24 13:53:21 +00:00
|
|
|
use actix_web::*;
|
|
|
|
use http_signature_normalization_actix::digest::middleware::VerifyDigest;
|
|
|
|
use lemmy_apub::{
|
2020-10-12 14:10:09 +00:00
|
|
|
http::{
|
|
|
|
comment::get_apub_comment,
|
|
|
|
community::{get_apub_community_followers, get_apub_community_http, get_apub_community_outbox},
|
|
|
|
post::get_apub_post,
|
|
|
|
user::get_apub_user_http,
|
|
|
|
},
|
2020-07-28 16:08:28 +00:00
|
|
|
inbox::{community_inbox::community_inbox, shared_inbox::shared_inbox, user_inbox::user_inbox},
|
2020-07-10 18:15:41 +00:00
|
|
|
APUB_JSON_CONTENT_TYPE,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
2020-07-10 18:15:41 +00:00
|
|
|
use lemmy_utils::settings::Settings;
|
2020-07-13 13:55:55 +00:00
|
|
|
use sha2::{Digest, Sha256};
|
2019-12-31 12:55:33 +00:00
|
|
|
|
|
|
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
2020-03-18 21:09:00 +00:00
|
|
|
if Settings::get().federation.enabled {
|
2020-01-02 18:22:23 +00:00
|
|
|
println!("federation enabled, host is {}", Settings::get().hostname);
|
2020-07-13 13:55:55 +00:00
|
|
|
let digest_verifier = VerifyDigest::new(Sha256::new());
|
|
|
|
|
2020-01-02 18:22:23 +00:00
|
|
|
cfg
|
2020-04-21 20:45:01 +00:00
|
|
|
.service(
|
|
|
|
web::scope("/")
|
2020-04-22 18:56:31 +00:00
|
|
|
.guard(guard::Header("Accept", APUB_JSON_CONTENT_TYPE))
|
2020-04-21 20:45:01 +00:00
|
|
|
.route(
|
|
|
|
"/c/{community_name}",
|
|
|
|
web::get().to(get_apub_community_http),
|
|
|
|
)
|
|
|
|
.route(
|
|
|
|
"/c/{community_name}/followers",
|
|
|
|
web::get().to(get_apub_community_followers),
|
|
|
|
)
|
2020-07-24 15:07:33 +00:00
|
|
|
.route(
|
|
|
|
"/c/{community_name}/outbox",
|
|
|
|
web::get().to(get_apub_community_outbox),
|
|
|
|
)
|
2020-04-24 19:55:54 +00:00
|
|
|
.route("/u/{user_name}", web::get().to(get_apub_user_http))
|
2020-05-13 17:21:32 +00:00
|
|
|
.route("/post/{post_id}", web::get().to(get_apub_post))
|
|
|
|
.route("/comment/{comment_id}", web::get().to(get_apub_comment)),
|
2020-04-14 15:37:23 +00:00
|
|
|
)
|
2020-04-21 20:45:01 +00:00
|
|
|
// Inboxes dont work with the header guard for some reason.
|
2020-07-13 13:55:55 +00:00
|
|
|
.service(
|
|
|
|
web::resource("/c/{community_name}/inbox")
|
|
|
|
.wrap(digest_verifier.clone())
|
|
|
|
.route(web::post().to(community_inbox)),
|
|
|
|
)
|
|
|
|
.service(
|
|
|
|
web::resource("/u/{user_name}/inbox")
|
|
|
|
.wrap(digest_verifier.clone())
|
|
|
|
.route(web::post().to(user_inbox)),
|
|
|
|
)
|
|
|
|
.service(
|
|
|
|
web::resource("/inbox")
|
|
|
|
.wrap(digest_verifier)
|
|
|
|
.route(web::post().to(shared_inbox)),
|
|
|
|
);
|
2020-01-02 18:22:23 +00:00
|
|
|
}
|
2019-12-31 12:55:33 +00:00
|
|
|
}
|