mirror of https://github.com/LemmyNet/lemmy.git
400 lines
13 KiB
Rust
400 lines
13 KiB
Rust
use actix_web::{guard, web, Error, HttpResponse, Result};
|
|
use lemmy_api::{
|
|
comment::{distinguish::distinguish_comment, like::like_comment, save::save_comment},
|
|
comment_report::{
|
|
create::create_comment_report,
|
|
list::list_comment_reports,
|
|
resolve::resolve_comment_report,
|
|
},
|
|
community::{
|
|
add_mod::add_mod_to_community,
|
|
ban::ban_from_community,
|
|
block::block_community,
|
|
follow::follow_community,
|
|
hide::hide_community,
|
|
},
|
|
local_user::{ban_person::ban_from_site, notifications::mark_reply_read::mark_reply_as_read},
|
|
post::{feature::feature_post, like::like_post, lock::lock_post},
|
|
post_report::create::create_post_report,
|
|
Perform,
|
|
};
|
|
use lemmy_api_common::{
|
|
community::TransferCommunity,
|
|
context::LemmyContext,
|
|
person::{
|
|
AddAdmin,
|
|
BlockPerson,
|
|
ChangePassword,
|
|
GetBannedPersons,
|
|
GetCaptcha,
|
|
GetPersonMentions,
|
|
GetReplies,
|
|
GetReportCount,
|
|
GetUnreadCount,
|
|
Login,
|
|
MarkAllAsRead,
|
|
MarkPersonMentionAsRead,
|
|
PasswordChangeAfterReset,
|
|
PasswordReset,
|
|
SaveUserSettings,
|
|
VerifyEmail,
|
|
},
|
|
post::{GetSiteMetadata, ListPostReports, MarkPostAsRead, ResolvePostReport, SavePost},
|
|
private_message::{
|
|
CreatePrivateMessageReport,
|
|
ListPrivateMessageReports,
|
|
MarkPrivateMessageAsRead,
|
|
ResolvePrivateMessageReport,
|
|
},
|
|
site::{
|
|
ApproveRegistrationApplication,
|
|
GetFederatedInstances,
|
|
GetModlog,
|
|
GetUnreadRegistrationApplicationCount,
|
|
LeaveAdmin,
|
|
ListRegistrationApplications,
|
|
PurgeComment,
|
|
PurgeCommunity,
|
|
PurgePerson,
|
|
PurgePost,
|
|
},
|
|
};
|
|
use lemmy_api_crud::{
|
|
comment::{
|
|
create::create_comment,
|
|
delete::delete_comment,
|
|
read::get_comment,
|
|
remove::remove_comment,
|
|
update::update_comment,
|
|
},
|
|
community::{
|
|
create::create_community,
|
|
delete::delete_community,
|
|
list::list_communities,
|
|
remove::remove_community,
|
|
update::update_community,
|
|
},
|
|
custom_emoji::{
|
|
create::create_custom_emoji,
|
|
delete::delete_custom_emoji,
|
|
update::update_custom_emoji,
|
|
},
|
|
post::{
|
|
create::create_post,
|
|
delete::delete_post,
|
|
read::get_post,
|
|
remove::remove_post,
|
|
update::update_post,
|
|
},
|
|
private_message::{
|
|
create::create_private_message,
|
|
delete::delete_private_message,
|
|
read::get_private_message,
|
|
update::update_private_message,
|
|
},
|
|
site::{create::create_site, read::get_site, update::update_site},
|
|
user::{create::register, delete::delete_account},
|
|
};
|
|
use lemmy_apub::{
|
|
api::{
|
|
list_comments::list_comments,
|
|
list_posts::list_posts,
|
|
read_community::get_community,
|
|
read_person::read_person,
|
|
resolve_object::resolve_object,
|
|
search::search,
|
|
},
|
|
SendActivity,
|
|
};
|
|
use lemmy_utils::{rate_limit::RateLimitCell, spawn_try_task, SYNCHRONOUS_FEDERATION};
|
|
use serde::Deserialize;
|
|
|
|
pub fn config(cfg: &mut web::ServiceConfig, rate_limit: &RateLimitCell) {
|
|
cfg.service(
|
|
web::scope("/api/v3")
|
|
// Site
|
|
.service(
|
|
web::scope("/site")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::get().to(get_site))
|
|
// Admin Actions
|
|
.route("", web::post().to(create_site))
|
|
.route("", web::put().to(update_site)),
|
|
)
|
|
.service(
|
|
web::resource("/modlog")
|
|
.wrap(rate_limit.message())
|
|
.route(web::get().to(route_get::<GetModlog>)),
|
|
)
|
|
.service(
|
|
web::resource("/search")
|
|
.wrap(rate_limit.search())
|
|
.route(web::get().to(search)),
|
|
)
|
|
.service(
|
|
web::resource("/resolve_object")
|
|
.wrap(rate_limit.message())
|
|
.route(web::get().to(resolve_object)),
|
|
)
|
|
// Community
|
|
.service(
|
|
web::resource("/community")
|
|
.guard(guard::Post())
|
|
.wrap(rate_limit.register())
|
|
.route(web::post().to(create_community)),
|
|
)
|
|
.service(
|
|
web::scope("/community")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::get().to(get_community))
|
|
.route("", web::put().to(update_community))
|
|
.route("/hide", web::put().to(hide_community))
|
|
.route("/list", web::get().to(list_communities))
|
|
.route("/follow", web::post().to(follow_community))
|
|
.route("/block", web::post().to(block_community))
|
|
.route("/delete", web::post().to(delete_community))
|
|
// Mod Actions
|
|
.route("/remove", web::post().to(remove_community))
|
|
.route("/transfer", web::post().to(route_post::<TransferCommunity>))
|
|
.route("/ban_user", web::post().to(ban_from_community))
|
|
.route("/mod", web::post().to(add_mod_to_community)),
|
|
)
|
|
.service(
|
|
web::scope("/federated_instances")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::get().to(route_get::<GetFederatedInstances>)),
|
|
)
|
|
// Post
|
|
.service(
|
|
// Handle POST to /post separately to add the post() rate limitter
|
|
web::resource("/post")
|
|
.guard(guard::Post())
|
|
.wrap(rate_limit.post())
|
|
.route(web::post().to(create_post)),
|
|
)
|
|
.service(
|
|
web::scope("/post")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::get().to(get_post))
|
|
.route("", web::put().to(update_post))
|
|
.route("/delete", web::post().to(delete_post))
|
|
.route("/remove", web::post().to(remove_post))
|
|
.route(
|
|
"/mark_as_read",
|
|
web::post().to(route_post::<MarkPostAsRead>),
|
|
)
|
|
.route("/lock", web::post().to(lock_post))
|
|
.route("/feature", web::post().to(feature_post))
|
|
.route("/list", web::get().to(list_posts))
|
|
.route("/like", web::post().to(like_post))
|
|
.route("/save", web::put().to(route_post::<SavePost>))
|
|
.route("/report", web::post().to(create_post_report))
|
|
.route(
|
|
"/report/resolve",
|
|
web::put().to(route_post::<ResolvePostReport>),
|
|
)
|
|
.route("/report/list", web::get().to(route_get::<ListPostReports>))
|
|
.route(
|
|
"/site_metadata",
|
|
web::get().to(route_get::<GetSiteMetadata>),
|
|
),
|
|
)
|
|
// Comment
|
|
.service(
|
|
// Handle POST to /comment separately to add the comment() rate limitter
|
|
web::resource("/comment")
|
|
.guard(guard::Post())
|
|
.wrap(rate_limit.comment())
|
|
.route(web::post().to(create_comment)),
|
|
)
|
|
.service(
|
|
web::scope("/comment")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::get().to(get_comment))
|
|
.route("", web::put().to(update_comment))
|
|
.route("/delete", web::post().to(delete_comment))
|
|
.route("/remove", web::post().to(remove_comment))
|
|
.route("/mark_as_read", web::post().to(mark_reply_as_read))
|
|
.route("/distinguish", web::post().to(distinguish_comment))
|
|
.route("/like", web::post().to(like_comment))
|
|
.route("/save", web::put().to(save_comment))
|
|
.route("/list", web::get().to(list_comments))
|
|
.route("/report", web::post().to(create_comment_report))
|
|
.route("/report/resolve", web::put().to(resolve_comment_report))
|
|
.route("/report/list", web::get().to(list_comment_reports)),
|
|
)
|
|
// Private Message
|
|
.service(
|
|
web::scope("/private_message")
|
|
.wrap(rate_limit.message())
|
|
.route("/list", web::get().to(get_private_message))
|
|
.route("", web::post().to(create_private_message))
|
|
.route("", web::put().to(update_private_message))
|
|
.route("/delete", web::post().to(delete_private_message))
|
|
.route(
|
|
"/mark_as_read",
|
|
web::post().to(route_post::<MarkPrivateMessageAsRead>),
|
|
)
|
|
.route(
|
|
"/report",
|
|
web::post().to(route_post::<CreatePrivateMessageReport>),
|
|
)
|
|
.route(
|
|
"/report/resolve",
|
|
web::put().to(route_post::<ResolvePrivateMessageReport>),
|
|
)
|
|
.route(
|
|
"/report/list",
|
|
web::get().to(route_get::<ListPrivateMessageReports>),
|
|
),
|
|
)
|
|
// User
|
|
.service(
|
|
// Account action, I don't like that it's in /user maybe /accounts
|
|
// Handle /user/register separately to add the register() rate limitter
|
|
web::resource("/user/register")
|
|
.guard(guard::Post())
|
|
.wrap(rate_limit.register())
|
|
.route(web::post().to(register)),
|
|
)
|
|
.service(
|
|
// Handle captcha separately
|
|
web::resource("/user/get_captcha")
|
|
.wrap(rate_limit.post())
|
|
.route(web::get().to(route_get::<GetCaptcha>)),
|
|
)
|
|
// User actions
|
|
.service(
|
|
web::scope("/user")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::get().to(read_person))
|
|
.route("/mention", web::get().to(route_get::<GetPersonMentions>))
|
|
.route(
|
|
"/mention/mark_as_read",
|
|
web::post().to(route_post::<MarkPersonMentionAsRead>),
|
|
)
|
|
.route("/replies", web::get().to(route_get::<GetReplies>))
|
|
// Admin action. I don't like that it's in /user
|
|
.route("/ban", web::post().to(ban_from_site))
|
|
.route("/banned", web::get().to(route_get::<GetBannedPersons>))
|
|
.route("/block", web::post().to(route_post::<BlockPerson>))
|
|
// Account actions. I don't like that they're in /user maybe /accounts
|
|
.route("/login", web::post().to(route_post::<Login>))
|
|
.route("/delete_account", web::post().to(delete_account))
|
|
.route(
|
|
"/password_reset",
|
|
web::post().to(route_post::<PasswordReset>),
|
|
)
|
|
.route(
|
|
"/password_change",
|
|
web::post().to(route_post::<PasswordChangeAfterReset>),
|
|
)
|
|
// mark_all_as_read feels off being in this section as well
|
|
.route(
|
|
"/mark_all_as_read",
|
|
web::post().to(route_post::<MarkAllAsRead>),
|
|
)
|
|
.route(
|
|
"/save_user_settings",
|
|
web::put().to(route_post::<SaveUserSettings>),
|
|
)
|
|
.route(
|
|
"/change_password",
|
|
web::put().to(route_post::<ChangePassword>),
|
|
)
|
|
.route("/report_count", web::get().to(route_get::<GetReportCount>))
|
|
.route("/unread_count", web::get().to(route_get::<GetUnreadCount>))
|
|
.route("/verify_email", web::post().to(route_post::<VerifyEmail>))
|
|
.route("/leave_admin", web::post().to(route_post::<LeaveAdmin>)),
|
|
)
|
|
// Admin Actions
|
|
.service(
|
|
web::scope("/admin")
|
|
.wrap(rate_limit.message())
|
|
.route("/add", web::post().to(route_post::<AddAdmin>))
|
|
.route(
|
|
"/registration_application/count",
|
|
web::get().to(route_get::<GetUnreadRegistrationApplicationCount>),
|
|
)
|
|
.route(
|
|
"/registration_application/list",
|
|
web::get().to(route_get::<ListRegistrationApplications>),
|
|
)
|
|
.route(
|
|
"/registration_application/approve",
|
|
web::put().to(route_post::<ApproveRegistrationApplication>),
|
|
)
|
|
.service(
|
|
web::scope("/purge")
|
|
.route("/person", web::post().to(route_post::<PurgePerson>))
|
|
.route("/community", web::post().to(route_post::<PurgeCommunity>))
|
|
.route("/post", web::post().to(route_post::<PurgePost>))
|
|
.route("/comment", web::post().to(route_post::<PurgeComment>)),
|
|
),
|
|
)
|
|
.service(
|
|
web::scope("/custom_emoji")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::post().to(create_custom_emoji))
|
|
.route("", web::put().to(update_custom_emoji))
|
|
.route("/delete", web::post().to(delete_custom_emoji)),
|
|
),
|
|
);
|
|
}
|
|
|
|
async fn perform<'a, Data>(
|
|
data: Data,
|
|
context: web::Data<LemmyContext>,
|
|
apub_data: activitypub_federation::config::Data<LemmyContext>,
|
|
) -> Result<HttpResponse, Error>
|
|
where
|
|
Data: Perform
|
|
+ SendActivity<Response = <Data as Perform>::Response>
|
|
+ Clone
|
|
+ Deserialize<'a>
|
|
+ Send
|
|
+ 'static,
|
|
{
|
|
let res = data.perform(&context).await?;
|
|
let res_clone = res.clone();
|
|
let fed_task = async move { SendActivity::send_activity(&data, &res_clone, &apub_data).await };
|
|
if *SYNCHRONOUS_FEDERATION {
|
|
fed_task.await?;
|
|
} else {
|
|
spawn_try_task(fed_task);
|
|
}
|
|
Ok(HttpResponse::Ok().json(&res))
|
|
}
|
|
|
|
async fn route_get<'a, Data>(
|
|
data: web::Query<Data>,
|
|
context: web::Data<LemmyContext>,
|
|
apub_data: activitypub_federation::config::Data<LemmyContext>,
|
|
) -> Result<HttpResponse, Error>
|
|
where
|
|
Data: Perform
|
|
+ SendActivity<Response = <Data as Perform>::Response>
|
|
+ Clone
|
|
+ Deserialize<'a>
|
|
+ Send
|
|
+ 'static,
|
|
{
|
|
perform::<Data>(data.0, context, apub_data).await
|
|
}
|
|
|
|
async fn route_post<'a, Data>(
|
|
data: web::Json<Data>,
|
|
context: web::Data<LemmyContext>,
|
|
apub_data: activitypub_federation::config::Data<LemmyContext>,
|
|
) -> Result<HttpResponse, Error>
|
|
where
|
|
Data: Perform
|
|
+ SendActivity<Response = <Data as Perform>::Response>
|
|
+ Clone
|
|
+ Deserialize<'a>
|
|
+ Send
|
|
+ 'static,
|
|
{
|
|
perform::<Data>(data.0, context, apub_data).await
|
|
}
|