2022-12-09 15:31:47 +00:00
|
|
|
use crate::api_routes_websocket::websocket;
|
2022-11-19 04:33:54 +00:00
|
|
|
use actix_web::{guard, web, Error, HttpResponse, Result};
|
2021-03-25 19:30:15 +00:00
|
|
|
use lemmy_api::Perform;
|
2022-09-19 22:58:42 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-19 04:33:54 +00:00
|
|
|
comment::{
|
|
|
|
CreateComment,
|
|
|
|
CreateCommentLike,
|
|
|
|
CreateCommentReport,
|
|
|
|
DeleteComment,
|
|
|
|
EditComment,
|
|
|
|
GetComment,
|
|
|
|
GetComments,
|
|
|
|
ListCommentReports,
|
|
|
|
RemoveComment,
|
|
|
|
ResolveCommentReport,
|
|
|
|
SaveComment,
|
|
|
|
},
|
|
|
|
community::{
|
|
|
|
AddModToCommunity,
|
|
|
|
BanFromCommunity,
|
|
|
|
BlockCommunity,
|
|
|
|
CreateCommunity,
|
|
|
|
DeleteCommunity,
|
|
|
|
EditCommunity,
|
|
|
|
FollowCommunity,
|
|
|
|
GetCommunity,
|
|
|
|
HideCommunity,
|
|
|
|
ListCommunities,
|
|
|
|
RemoveCommunity,
|
|
|
|
TransferCommunity,
|
|
|
|
},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-11-19 04:33:54 +00:00
|
|
|
person::{
|
|
|
|
AddAdmin,
|
|
|
|
BanPerson,
|
|
|
|
BlockPerson,
|
|
|
|
ChangePassword,
|
|
|
|
DeleteAccount,
|
|
|
|
GetBannedPersons,
|
|
|
|
GetCaptcha,
|
|
|
|
GetPersonDetails,
|
|
|
|
GetPersonMentions,
|
|
|
|
GetReplies,
|
|
|
|
GetReportCount,
|
|
|
|
GetUnreadCount,
|
|
|
|
Login,
|
|
|
|
MarkAllAsRead,
|
|
|
|
MarkCommentReplyAsRead,
|
|
|
|
MarkPersonMentionAsRead,
|
|
|
|
PasswordChangeAfterReset,
|
|
|
|
PasswordReset,
|
|
|
|
Register,
|
|
|
|
SaveUserSettings,
|
|
|
|
VerifyEmail,
|
|
|
|
},
|
|
|
|
post::{
|
|
|
|
CreatePost,
|
|
|
|
CreatePostLike,
|
|
|
|
CreatePostReport,
|
|
|
|
DeletePost,
|
|
|
|
EditPost,
|
2022-12-12 11:17:10 +00:00
|
|
|
FeaturePost,
|
2022-11-19 04:33:54 +00:00
|
|
|
GetPost,
|
|
|
|
GetPosts,
|
|
|
|
GetSiteMetadata,
|
|
|
|
ListPostReports,
|
|
|
|
LockPost,
|
|
|
|
MarkPostAsRead,
|
|
|
|
RemovePost,
|
|
|
|
ResolvePostReport,
|
|
|
|
SavePost,
|
|
|
|
},
|
|
|
|
private_message::{
|
|
|
|
CreatePrivateMessage,
|
|
|
|
CreatePrivateMessageReport,
|
|
|
|
DeletePrivateMessage,
|
|
|
|
EditPrivateMessage,
|
|
|
|
GetPrivateMessages,
|
|
|
|
ListPrivateMessageReports,
|
|
|
|
MarkPrivateMessageAsRead,
|
|
|
|
ResolvePrivateMessageReport,
|
|
|
|
},
|
|
|
|
site::{
|
|
|
|
ApproveRegistrationApplication,
|
|
|
|
CreateSite,
|
|
|
|
EditSite,
|
|
|
|
GetModlog,
|
|
|
|
GetSite,
|
|
|
|
GetUnreadRegistrationApplicationCount,
|
|
|
|
LeaveAdmin,
|
|
|
|
ListRegistrationApplications,
|
|
|
|
PurgeComment,
|
|
|
|
PurgeCommunity,
|
|
|
|
PurgePerson,
|
|
|
|
PurgePost,
|
|
|
|
ResolveObject,
|
|
|
|
Search,
|
|
|
|
},
|
2022-12-09 15:31:47 +00:00
|
|
|
websocket::structs::{CommunityJoin, ModJoin, PostJoin, UserJoin},
|
2022-09-19 22:58:42 +00:00
|
|
|
};
|
2021-03-25 19:30:15 +00:00
|
|
|
use lemmy_api_crud::PerformCrud;
|
2022-11-28 14:29:33 +00:00
|
|
|
use lemmy_apub::{api::PerformApub, SendActivity};
|
2022-12-09 15:31:47 +00:00
|
|
|
use lemmy_utils::rate_limit::RateLimitCell;
|
2020-09-03 19:45:12 +00:00
|
|
|
use serde::Deserialize;
|
2020-01-15 15:37:25 +00:00
|
|
|
|
2022-11-16 19:06:22 +00:00
|
|
|
pub fn config(cfg: &mut web::ServiceConfig, rate_limit: &RateLimitCell) {
|
2020-04-20 03:59:07 +00:00
|
|
|
cfg.service(
|
2021-03-29 15:26:15 +00:00
|
|
|
web::scope("/api/v3")
|
2021-03-29 21:48:37 +00:00
|
|
|
// Websocket
|
2022-12-09 15:31:47 +00:00
|
|
|
.service(web::resource("/ws").to(websocket))
|
2020-04-20 03:59:07 +00:00
|
|
|
// Site
|
|
|
|
.service(
|
|
|
|
web::scope("/site")
|
|
|
|
.wrap(rate_limit.message())
|
2021-03-25 19:30:15 +00:00
|
|
|
.route("", web::get().to(route_get_crud::<GetSite>))
|
2020-04-20 03:59:07 +00:00
|
|
|
// Admin Actions
|
2021-03-25 19:30:15 +00:00
|
|
|
.route("", web::post().to(route_post_crud::<CreateSite>))
|
2022-06-22 20:24:54 +00:00
|
|
|
.route("", web::put().to(route_post_crud::<EditSite>)),
|
2020-04-20 03:59:07 +00:00
|
|
|
)
|
|
|
|
.service(
|
|
|
|
web::resource("/modlog")
|
|
|
|
.wrap(rate_limit.message())
|
|
|
|
.route(web::get().to(route_get::<GetModlog>)),
|
|
|
|
)
|
|
|
|
.service(
|
|
|
|
web::resource("/search")
|
2022-03-29 15:46:03 +00:00
|
|
|
.wrap(rate_limit.search())
|
2022-11-28 14:29:33 +00:00
|
|
|
.route(web::get().to(route_get_apub::<Search>)),
|
2020-04-20 03:59:07 +00:00
|
|
|
)
|
2021-07-20 07:00:20 +00:00
|
|
|
.service(
|
|
|
|
web::resource("/resolve_object")
|
|
|
|
.wrap(rate_limit.message())
|
2022-11-28 14:29:33 +00:00
|
|
|
.route(web::get().to(route_get_apub::<ResolveObject>)),
|
2021-07-20 07:00:20 +00:00
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
// Community
|
2020-04-20 17:31:22 +00:00
|
|
|
.service(
|
|
|
|
web::resource("/community")
|
|
|
|
.guard(guard::Post())
|
2020-04-20 18:05:07 +00:00
|
|
|
.wrap(rate_limit.register())
|
2021-03-25 19:30:15 +00:00
|
|
|
.route(web::post().to(route_post_crud::<CreateCommunity>)),
|
2020-04-20 17:31:22 +00:00
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
.service(
|
|
|
|
web::scope("/community")
|
|
|
|
.wrap(rate_limit.message())
|
2022-11-28 14:29:33 +00:00
|
|
|
.route("", web::get().to(route_get_apub::<GetCommunity>))
|
2021-03-25 19:30:15 +00:00
|
|
|
.route("", web::put().to(route_post_crud::<EditCommunity>))
|
2022-04-28 20:32:32 +00:00
|
|
|
.route("/hide", web::put().to(route_post::<HideCommunity>))
|
2021-03-25 19:30:15 +00:00
|
|
|
.route("/list", web::get().to(route_get_crud::<ListCommunities>))
|
2020-04-20 03:59:07 +00:00
|
|
|
.route("/follow", web::post().to(route_post::<FollowCommunity>))
|
2021-08-19 20:54:15 +00:00
|
|
|
.route("/block", web::post().to(route_post::<BlockCommunity>))
|
2021-03-25 19:30:15 +00:00
|
|
|
.route(
|
|
|
|
"/delete",
|
|
|
|
web::post().to(route_post_crud::<DeleteCommunity>),
|
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
// Mod Actions
|
2021-03-25 19:30:15 +00:00
|
|
|
.route(
|
|
|
|
"/remove",
|
|
|
|
web::post().to(route_post_crud::<RemoveCommunity>),
|
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
.route("/transfer", web::post().to(route_post::<TransferCommunity>))
|
|
|
|
.route("/ban_user", web::post().to(route_post::<BanFromCommunity>))
|
2020-09-15 19:26:47 +00:00
|
|
|
.route("/mod", web::post().to(route_post::<AddModToCommunity>))
|
2020-10-27 00:25:18 +00:00
|
|
|
.route("/join", web::post().to(route_post::<CommunityJoin>))
|
|
|
|
.route("/mod/join", web::post().to(route_post::<ModJoin>)),
|
2020-04-20 03:59:07 +00:00
|
|
|
)
|
|
|
|
// Post
|
|
|
|
.service(
|
|
|
|
// Handle POST to /post separately to add the post() rate limitter
|
|
|
|
web::resource("/post")
|
|
|
|
.guard(guard::Post())
|
|
|
|
.wrap(rate_limit.post())
|
2021-03-25 19:30:15 +00:00
|
|
|
.route(web::post().to(route_post_crud::<CreatePost>)),
|
2020-04-20 03:59:07 +00:00
|
|
|
)
|
|
|
|
.service(
|
|
|
|
web::scope("/post")
|
|
|
|
.wrap(rate_limit.message())
|
2021-03-25 19:30:15 +00:00
|
|
|
.route("", web::get().to(route_get_crud::<GetPost>))
|
|
|
|
.route("", web::put().to(route_post_crud::<EditPost>))
|
|
|
|
.route("/delete", web::post().to(route_post_crud::<DeletePost>))
|
|
|
|
.route("/remove", web::post().to(route_post_crud::<RemovePost>))
|
2021-11-23 14:15:43 +00:00
|
|
|
.route(
|
|
|
|
"/mark_as_read",
|
|
|
|
web::post().to(route_post::<MarkPostAsRead>),
|
|
|
|
)
|
2020-07-21 03:46:36 +00:00
|
|
|
.route("/lock", web::post().to(route_post::<LockPost>))
|
2022-12-12 11:17:10 +00:00
|
|
|
.route("/feature", web::post().to(route_post::<FeaturePost>))
|
2022-11-28 14:29:33 +00:00
|
|
|
.route("/list", web::get().to(route_get_apub::<GetPosts>))
|
2020-04-20 03:59:07 +00:00
|
|
|
.route("/like", web::post().to(route_post::<CreatePostLike>))
|
2020-09-15 19:26:47 +00:00
|
|
|
.route("/save", web::put().to(route_post::<SavePost>))
|
2020-10-13 23:32:35 +00:00
|
|
|
.route("/join", web::post().to(route_post::<PostJoin>))
|
2020-10-25 02:59:13 +00:00
|
|
|
.route("/report", web::post().to(route_post::<CreatePostReport>))
|
2020-11-04 02:15:11 +00:00
|
|
|
.route(
|
|
|
|
"/report/resolve",
|
|
|
|
web::put().to(route_post::<ResolvePostReport>),
|
|
|
|
)
|
2021-08-19 14:12:49 +00:00
|
|
|
.route("/report/list", web::get().to(route_get::<ListPostReports>))
|
|
|
|
.route(
|
|
|
|
"/site_metadata",
|
|
|
|
web::get().to(route_get::<GetSiteMetadata>),
|
|
|
|
),
|
2020-04-20 03:59:07 +00:00
|
|
|
)
|
|
|
|
// Comment
|
2021-11-11 20:40:25 +00:00
|
|
|
.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(route_post_crud::<CreateComment>)),
|
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
.service(
|
2020-10-25 02:59:13 +00:00
|
|
|
web::scope("/comment")
|
2020-04-20 03:59:07 +00:00
|
|
|
.wrap(rate_limit.message())
|
2021-11-23 15:53:48 +00:00
|
|
|
.route("", web::get().to(route_get_crud::<GetComment>))
|
2021-03-25 19:30:15 +00:00
|
|
|
.route("", web::put().to(route_post_crud::<EditComment>))
|
|
|
|
.route("/delete", web::post().to(route_post_crud::<DeleteComment>))
|
|
|
|
.route("/remove", web::post().to(route_post_crud::<RemoveComment>))
|
2020-07-21 01:37:44 +00:00
|
|
|
.route(
|
|
|
|
"/mark_as_read",
|
2022-07-30 03:55:59 +00:00
|
|
|
web::post().to(route_post::<MarkCommentReplyAsRead>),
|
2020-07-21 01:37:44 +00:00
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
.route("/like", web::post().to(route_post::<CreateCommentLike>))
|
2020-08-20 14:50:26 +00:00
|
|
|
.route("/save", web::put().to(route_post::<SaveComment>))
|
2022-11-28 14:29:33 +00:00
|
|
|
.route("/list", web::get().to(route_get_apub::<GetComments>))
|
2020-10-25 02:59:13 +00:00
|
|
|
.route("/report", web::post().to(route_post::<CreateCommentReport>))
|
2020-11-04 02:15:11 +00:00
|
|
|
.route(
|
|
|
|
"/report/resolve",
|
|
|
|
web::put().to(route_post::<ResolveCommentReport>),
|
|
|
|
)
|
|
|
|
.route(
|
|
|
|
"/report/list",
|
|
|
|
web::get().to(route_get::<ListCommentReports>),
|
|
|
|
),
|
2020-04-20 03:59:07 +00:00
|
|
|
)
|
2020-05-06 02:06:24 +00:00
|
|
|
// Private Message
|
|
|
|
.service(
|
|
|
|
web::scope("/private_message")
|
|
|
|
.wrap(rate_limit.message())
|
2021-03-25 19:30:15 +00:00
|
|
|
.route("/list", web::get().to(route_get_crud::<GetPrivateMessages>))
|
|
|
|
.route("", web::post().to(route_post_crud::<CreatePrivateMessage>))
|
|
|
|
.route("", web::put().to(route_post_crud::<EditPrivateMessage>))
|
2020-07-20 04:29:44 +00:00
|
|
|
.route(
|
|
|
|
"/delete",
|
2021-03-25 19:30:15 +00:00
|
|
|
web::post().to(route_post_crud::<DeletePrivateMessage>),
|
2020-07-20 04:29:44 +00:00
|
|
|
)
|
|
|
|
.route(
|
|
|
|
"/mark_as_read",
|
|
|
|
web::post().to(route_post::<MarkPrivateMessageAsRead>),
|
2022-09-19 22:58:42 +00:00
|
|
|
)
|
|
|
|
.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>),
|
2020-07-20 04:29:44 +00:00
|
|
|
),
|
2020-05-06 02:06:24 +00:00
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
// 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())
|
2021-03-25 19:30:15 +00:00
|
|
|
.route(web::post().to(route_post_crud::<Register>)),
|
2020-04-20 03:59:07 +00:00
|
|
|
)
|
2021-11-25 13:04:19 +00:00
|
|
|
.service(
|
|
|
|
// Handle captcha separately
|
|
|
|
web::resource("/user/get_captcha")
|
|
|
|
.wrap(rate_limit.post())
|
|
|
|
.route(web::get().to(route_get::<GetCaptcha>)),
|
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
// User actions
|
|
|
|
.service(
|
|
|
|
web::scope("/user")
|
|
|
|
.wrap(rate_limit.message())
|
2022-11-28 14:29:33 +00:00
|
|
|
.route("", web::get().to(route_get_apub::<GetPersonDetails>))
|
2021-03-10 22:33:55 +00:00
|
|
|
.route("/mention", web::get().to(route_get::<GetPersonMentions>))
|
2020-07-20 14:56:40 +00:00
|
|
|
.route(
|
|
|
|
"/mention/mark_as_read",
|
2021-03-10 22:33:55 +00:00
|
|
|
web::post().to(route_post::<MarkPersonMentionAsRead>),
|
2020-07-20 14:56:40 +00:00
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
.route("/replies", web::get().to(route_get::<GetReplies>))
|
2020-08-20 14:50:26 +00:00
|
|
|
.route("/join", web::post().to(route_post::<UserJoin>))
|
2020-04-20 03:59:07 +00:00
|
|
|
// Admin action. I don't like that it's in /user
|
2021-03-10 22:33:55 +00:00
|
|
|
.route("/ban", web::post().to(route_post::<BanPerson>))
|
2021-11-19 20:56:41 +00:00
|
|
|
.route("/banned", web::get().to(route_get::<GetBannedPersons>))
|
2021-08-19 20:54:15 +00:00
|
|
|
.route("/block", web::post().to(route_post::<BlockPerson>))
|
2020-04-20 03:59:07 +00:00
|
|
|
// Account actions. I don't like that they're in /user maybe /accounts
|
|
|
|
.route("/login", web::post().to(route_post::<Login>))
|
2020-04-20 04:47:20 +00:00
|
|
|
.route(
|
|
|
|
"/delete_account",
|
2021-03-25 19:30:15 +00:00
|
|
|
web::post().to(route_post_crud::<DeleteAccount>),
|
2020-04-20 04:47:20 +00:00
|
|
|
)
|
|
|
|
.route(
|
|
|
|
"/password_reset",
|
|
|
|
web::post().to(route_post::<PasswordReset>),
|
|
|
|
)
|
|
|
|
.route(
|
|
|
|
"/password_change",
|
2022-04-13 18:12:25 +00:00
|
|
|
web::post().to(route_post::<PasswordChangeAfterReset>),
|
2020-04-20 04:47:20 +00:00
|
|
|
)
|
2020-04-20 03:59:07 +00:00
|
|
|
// mark_all_as_read feels off being in this section as well
|
2020-04-20 04:47:20 +00:00
|
|
|
.route(
|
|
|
|
"/mark_all_as_read",
|
|
|
|
web::post().to(route_post::<MarkAllAsRead>),
|
|
|
|
)
|
|
|
|
.route(
|
|
|
|
"/save_user_settings",
|
|
|
|
web::put().to(route_post::<SaveUserSettings>),
|
2020-10-25 02:59:13 +00:00
|
|
|
)
|
2021-04-01 21:39:01 +00:00
|
|
|
.route(
|
|
|
|
"/change_password",
|
|
|
|
web::put().to(route_post::<ChangePassword>),
|
|
|
|
)
|
2021-10-16 10:43:41 +00:00
|
|
|
.route("/report_count", web::get().to(route_get::<GetReportCount>))
|
2021-12-15 19:49:59 +00:00
|
|
|
.route("/unread_count", web::get().to(route_get::<GetUnreadCount>))
|
2022-01-26 17:57:16 +00:00
|
|
|
.route("/verify_email", web::post().to(route_post::<VerifyEmail>))
|
|
|
|
.route("/leave_admin", web::post().to(route_post::<LeaveAdmin>)),
|
2020-04-20 03:59:07 +00:00
|
|
|
)
|
|
|
|
// Admin Actions
|
|
|
|
.service(
|
2021-12-15 19:49:59 +00:00
|
|
|
web::scope("/admin")
|
2020-04-20 03:59:07 +00:00
|
|
|
.wrap(rate_limit.message())
|
2021-12-15 19:49:59 +00:00
|
|
|
.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>),
|
|
|
|
),
|
2022-06-13 19:15:04 +00:00
|
|
|
)
|
|
|
|
.service(
|
|
|
|
web::scope("/admin/purge")
|
|
|
|
.wrap(rate_limit.message())
|
|
|
|
.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>)),
|
2020-04-20 03:59:07 +00:00
|
|
|
),
|
|
|
|
);
|
2020-01-15 15:37:25 +00:00
|
|
|
}
|
|
|
|
|
2022-11-28 14:29:33 +00:00
|
|
|
async fn perform<'a, Data>(
|
|
|
|
data: Data,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-04-19 22:08:25 +00:00
|
|
|
) -> Result<HttpResponse, Error>
|
2020-01-15 15:37:25 +00:00
|
|
|
where
|
2022-11-28 14:29:33 +00:00
|
|
|
Data: Perform
|
|
|
|
+ SendActivity<Response = <Data as Perform>::Response>
|
|
|
|
+ Clone
|
|
|
|
+ Deserialize<'a>
|
|
|
|
+ Send
|
|
|
|
+ 'static,
|
2020-01-15 15:37:25 +00:00
|
|
|
{
|
2022-11-28 14:29:33 +00:00
|
|
|
let res = data.perform(&context, None).await?;
|
|
|
|
SendActivity::send_activity(&data, &res, &context).await?;
|
|
|
|
Ok(HttpResponse::Ok().json(res))
|
2020-01-15 15:37:25 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
async fn route_get<'a, Data>(
|
2020-01-23 14:22:17 +00:00
|
|
|
data: web::Query<Data>,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-01-23 14:22:17 +00:00
|
|
|
) -> Result<HttpResponse, Error>
|
|
|
|
where
|
2022-11-28 14:29:33 +00:00
|
|
|
Data: Perform
|
|
|
|
+ SendActivity<Response = <Data as Perform>::Response>
|
|
|
|
+ Clone
|
|
|
|
+ Deserialize<'a>
|
|
|
|
+ Send
|
|
|
|
+ 'static,
|
2020-01-23 14:22:17 +00:00
|
|
|
{
|
2020-08-18 13:43:50 +00:00
|
|
|
perform::<Data>(data.0, context).await
|
2020-01-23 14:22:17 +00:00
|
|
|
}
|
|
|
|
|
2022-11-28 14:29:33 +00:00
|
|
|
async fn route_get_apub<'a, Data>(
|
|
|
|
data: web::Query<Data>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, Error>
|
|
|
|
where
|
|
|
|
Data: PerformApub
|
|
|
|
+ SendActivity<Response = <Data as PerformApub>::Response>
|
|
|
|
+ Clone
|
|
|
|
+ Deserialize<'a>
|
|
|
|
+ Send
|
|
|
|
+ 'static,
|
|
|
|
{
|
|
|
|
let res = data.perform(&context, None).await?;
|
|
|
|
SendActivity::send_activity(&data.0, &res, &context).await?;
|
|
|
|
Ok(HttpResponse::Ok().json(res))
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
async fn route_post<'a, Data>(
|
2020-01-23 14:22:17 +00:00
|
|
|
data: web::Json<Data>,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-01-23 14:22:17 +00:00
|
|
|
) -> Result<HttpResponse, Error>
|
2020-01-15 15:37:25 +00:00
|
|
|
where
|
2022-11-28 14:29:33 +00:00
|
|
|
Data: Perform
|
|
|
|
+ SendActivity<Response = <Data as Perform>::Response>
|
|
|
|
+ Clone
|
|
|
|
+ Deserialize<'a>
|
|
|
|
+ Send
|
|
|
|
+ 'static,
|
2020-01-15 15:37:25 +00:00
|
|
|
{
|
2020-08-18 13:43:50 +00:00
|
|
|
perform::<Data>(data.0, context).await
|
2020-01-15 15:37:25 +00:00
|
|
|
}
|
2021-03-25 19:30:15 +00:00
|
|
|
|
2022-11-28 14:29:33 +00:00
|
|
|
async fn perform_crud<'a, Data>(
|
|
|
|
data: Data,
|
2021-03-25 19:30:15 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, Error>
|
|
|
|
where
|
2022-11-28 14:29:33 +00:00
|
|
|
Data: PerformCrud
|
|
|
|
+ SendActivity<Response = <Data as PerformCrud>::Response>
|
|
|
|
+ Clone
|
|
|
|
+ Deserialize<'a>
|
|
|
|
+ Send
|
|
|
|
+ 'static,
|
2021-03-25 19:30:15 +00:00
|
|
|
{
|
2022-11-28 14:29:33 +00:00
|
|
|
let res = data.perform(&context, None).await?;
|
|
|
|
SendActivity::send_activity(&data, &res, &context).await?;
|
|
|
|
Ok(HttpResponse::Ok().json(res))
|
2021-03-25 19:30:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn route_get_crud<'a, Data>(
|
|
|
|
data: web::Query<Data>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, Error>
|
|
|
|
where
|
2022-11-28 14:29:33 +00:00
|
|
|
Data: PerformCrud
|
|
|
|
+ SendActivity<Response = <Data as PerformCrud>::Response>
|
|
|
|
+ Clone
|
|
|
|
+ Deserialize<'a>
|
|
|
|
+ Send
|
|
|
|
+ 'static,
|
2021-03-25 19:30:15 +00:00
|
|
|
{
|
|
|
|
perform_crud::<Data>(data.0, context).await
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn route_post_crud<'a, Data>(
|
|
|
|
data: web::Json<Data>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse, Error>
|
|
|
|
where
|
2022-11-28 14:29:33 +00:00
|
|
|
Data: PerformCrud
|
|
|
|
+ SendActivity<Response = <Data as PerformCrud>::Response>
|
|
|
|
+ Clone
|
|
|
|
+ Deserialize<'a>
|
|
|
|
+ Send
|
|
|
|
+ 'static,
|
2021-03-25 19:30:15 +00:00
|
|
|
{
|
|
|
|
perform_crud::<Data>(data.0, context).await
|
|
|
|
}
|