mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-23 10:25:56 +00:00
14dd513fc0
* Add option to search exclusively by post title (#5015) * Add option to search exclusively by post title * Address format issues * Remove duplicated 'removed' filter * Replace url_search with search_term * Build generic PostQuery before search match * Create default queries. Move title_only to Search struct. Rename Url to PostURL * Revert PostUrl to Url * Upgrading webmention to 0.6.0, removes native-tls (#4976) * Removing embedded pict-rs. (#5023) Some reasons for removing this: - Even as an optional dependency, it locks us to many specific versions of rust deps. - Pict-rs is a large app that can and should be run in on its own. - Violates the philosophy of separation of concerns. * Adding clearurls crate to clean tracking params from links and markdown. (#5018) * Adding clearurls crate to clean tracking params from links and markdown. - Thanks to @jenrdikw for creating this - Fixes #4905 * Upgrading to new version of clearurls * Fix clippy * Remove enable nsfw (#5017) * Remove `local_site.enable_nsfw` in favor of `site.content_warning` (fixes #4627) * cleanup usage of SiteView::read_local * test * uppercase * SSO Support (#4881) * Added OAUTH2 OIDC support * Fixes and improvements based on review feedback * use derive_new::new instead of TypedBuilder * merge migrations into a single file * fixes based on review feedback * remove unnecessary hostname_ui config * improvement based on review feedback * improvements based on review feedback * delete user oauth accounts at account deletion * fixes and improvements based on review feedback * removed auto_approve_application * support registration application with sso * improvements based on review feedback * making the TokenResponse an internal struct as it should be * remove duplicate struct * prevent oauth linking to unverified accounts * switched to manually entered username and removed the oauth name claim * fix cargo fmt * fix compile error * improvements based on review feedback * fixes and improvements based on review feedback --------- Co-authored-by: privacyguard <privacyguard@users.noreply.github.com> * Adding ability to restore content on user unban. (#4845) * Adding ability to restore content on user unban. - Fixes #4721 * Fixing api tests. * Fix package.json * Fixing lemmy-js-client dep. * Adding API test for restoring content. * Adding a default_comment_sort_type column for local_site and local_user. (#4469) * Adding a default_comment_sort_type column for local_site and local_user. - Renamed SortType to PostSortType in the DB and code. - Renamed references to default_sort_type to default_post_sort_type. - Fixes #4128 * Renaming migration to current date. * Simplifying PostSortType. * Simplify tests using default (#5026) * Feature/custom emoji and tagline views (#4580) * Add custom_emoji list route * Add tagline list route * Apply linting * Remove unecessary TaglineView * Add category filter for custom emoji * Add create tagline endpoint * Add update tagline endpoint * Add delete tagline endpoint * Format through lint.sh * Remove custom_emojis and taglines from site resource * Get random tagline on site requets * Impl Crud for Tagline Remove superfluous properties * Move tagline endpoints under /admin * Impl Crud for CustomEmoji * Remove delete from tagline and custom emoji impls * Check markdown for tagline * Validate markdown on tagline * Make content fields non optional Add error types for tagline validation * Use process_markdown instead of process_markdown_opt * Consolidate Tagline error types * Remove unecessary clone * Updat misleading comments * Remove local_site_id from tagline and custom_emoji * Update TaglineInserForm and TaglineUpdateForm * Add ignore_page_limits for custom emojis EmojiPicker needs to be able to retrieve all emojis in 1 call * Update custom_emoji_view Only keep get_all als helper function calling list with paging ignored Only order on category when filtering on category * Removing pointless get_all fn. * remove tagline length checks * make fields of TaglineInsertForm and TaglineUpdateForm mandatory * move emoji order statement * add comment for GetSiteResponse.tagline --------- Co-authored-by: Freakazoid182 <> Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Felix Ableitner <me@nutomic.com> * Add category to RSS feeds (fixes #3446) (#5030) * Unittest for Search by title only (#5033) * added test for search by title only * formatted rust files * Upgrading to rust 1.81 (#5032) * Remove TypedBuilder in favor of derive_new (fixes #4863) (#5020) * Remove TypedBuilder in favor of derive_new (fixes #4863) * fix * fix * Ignore zero values when setting rate limits (fixes #4280) (#5029) * Ignore zero values when setting rate limits (fixes #4280) Havent bothered to add an error message for such an uncommon case. * fmt * reorder, add test * Always save remote image data (#4875) * Always save remote image data * cleanup --------- Co-authored-by: Felix Ableitner <me@nutomic.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com> * Get rid of a lot of pointless mut form initializations. (#5037) * Get rid of a lot of pointless mut form initializations. - Fixes #5036 * Fix clippy. * Simplify handling of NotFound SQL errors (fixes #4633) (#5031) * Simplify handling of NotFound SQL errors (fixes #4633) * fmt * wip * compiling * clippy * api tests * fix * Adding saved_only, liked_only, and disliked_only filters to search. (#5034) * Adding saved_only, liked_only, and disliked_only filters to search. - Fixes #4547 * Removing duplicate Url return type for search (was actually post). - This now works like the post_title_only filter. * Address PR comments. * Add saved_only post_view test. * Removing a few more Result<bool> . (#4977) * Removing a few more Result<bool> . * Running taplo fmt. * Running fmt. * Adding email taken test. * Fixing tests. * Adding back in missing admin check. * Rename check_has_local_followers function. * Conditionally hide comments on nsfw posts (fixes #4237) (#5028) * Conditionally hide comments on nsfw posts (fixes #4237) * fix test * Post scheduling (fixes #234) (#5025) * Post scheduling (fixes #234) * clippy * replace map_err with inspect_err * ignore unpublished posts in read queries * add api test * fmt * add some checks * address some review comments * allow updating schedule time * rewrite scheduled task * fmt * machete * compare date in sql, more filters * check for community ban in sql * remove api test (scheduled task only runs every 10 mins) * remove mut * add index * remove Post::read impl * fmt * fix * correctly handle changes to schedule time * normal users can only schedule up to 10 posts * Remove redundant local_user.auto_expand setting. (#5041) - Fixes #4643 Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> * Add ability to search for Community by its description (or title only). (#5044) - This changes the post_title_only for Search to title_only, since its also used in the community query now. - Fixes #4785 * Cleanup remaining use of Result<bool, Error> (fixes #4862) (#5047) * Replace clippy allow annotation with expect (fixes #5012) (#5048) * Add skip_serialize_none to OAuth structs with option fields (#5046) * Add skip_serialize_none to OAuth structs with option fields * PR feedback * Remove serde and ts export from SSO db-only structs * Apply scheduled post limit to future posts instead of past posts, and verify this in test (#5054) * test scheduled_post_count * fix syntax error * fix formatting * fix argument order * fix user_scheduled_post_count function * Avoid breaking changes, keep response fields as deprecated (#5058) * Adding skip_serializing_none to another OAuth API request. (#5060) * Handle partial settings backup (fixes #4307) (#5063) * Handle partial settings backup (fixes #4307) * clippy * Avoid stack overflow when fetching nested comments, reduce max comment depth to 50 (#5009) * Avoid stack overflow when fetching deeply nested comments * add test case * reduce comment depth, add docs * decrease * reduce max comment depth to 50 * fmt * clippy * cleanup * Update Rust crate clap to v4.5.18 (#5066) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate reqwest to v0.12.8 (#5068) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate sitemap-rs to v0.2.2 (#5069) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate tracing-actix-web to v0.7.13 (#5070) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Changing renovate to run on the weekends. (#5067) - Lemmy builds take a long time, and the current schedule only runs for about 4 hours once a month, and renovate also rate-limits itself to ~ 2 per hour. This gives it a large enough window, without clogging up my runner machines. * Update Rust crate async-trait to v0.1.83 (#5065) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency @types/jest to v29.5.13 (#5071) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Attempt to fix test for fetching deeply nested comment (#5072) Co-authored-by: Dessalines <dessalines@users.noreply.github.com> * Add modlog entries for bulk removals. (#5050) * Add modlog entries for bulk removals. - Added unit tests for removal / restore to api_common/utils. - Fixes #4699 * Address PR comments. * Combining remove and restore functions. * Trigger build. * Trigger build 2. * Changing allow to expect. * Adding local site settings to reject federated upvotes or downvotes. (#5038) * Adding local site settings to reject federated upvotes or downvotes. - Should help defend against downvote spamming instances. - Fixes #4086 * Adding new vote mode types. * Simpler activitypub vote check. * Adding undo vote for failed vote mode check. * Update crates/api_common/src/utils.rs --------- Co-authored-by: Nutomic <me@nutomic.com> * Replace `clippy::unwrap_used` in tests (#5064) * Add LemmyResult to session_middleware tests * Add LemmyResult to inboxes tests * Add LemmyResult to slurs tests * Add LemmyResult to markdown tests * Add LemmyResult to rate_limiter tests * Add LemmyResult to error tests * Add LemmyResult to api_common utils tests * Add LemmyResult to request tests * Add LemmyResult to claims tests * Propagate registration_applications errors * Remove clippy::unwrap_used from community tests * Add LemmyResult to community_view tests * Add LemmyResult to db_schema post tests * Add LemmyResult to site_aggregates tests * Add LemmyResult to private_message tests * Add LemmyResult to activity tests * Add LemmyResult to federation_allowlist tests * Add LemmyResult to comment_aggregates tests * Add LemmyResult to post_report tests * Add LemmyResult to moderator tests * Add LemmyResult to community_aggregates tests * Add LemmyResult to person_aggregates tests * Add LemmyResult to language tests * Add LemmyResult to post_aggregates tests * Add LemmyResult to db_schema comment tests * Add LemmyResult to actor_language tests * Add LemmyResult to vote_view tests * Add LemmyResult to registration_application_view tests * Add LemmyResult to private_message_view tests * Add LemmyResult to private_message_report_view tests * Add LemmyResult to post_report_view tests * Add LemmyResult to comment_report_view tests * Add LemmyResult to sitemap tests * Replace .expect() with .unwrap() * Format code * Remove clippy::unwrap_used from activity tests * Add diesel result in db_schema tests * Format code * Map to_bytes() error to LemmyErrorType * Remove clippy::unwrap_used from error tests * Removing a few more unwraps, and cleaning up language code. * Replace map_err with unwrap_or_default * Replace ok_or with and_then --------- Co-authored-by: Dessalines <tyhou13@gmx.com> * Adding a get_random_community endpoint. (#5042) * Adding a get_random_community endpoint. - Fixes #4698 * Fixing issue from main. * Adding ListingType to the query. * More concise query filter. * Resolve links to remote posts into local URL (#5057) * move code to new file * rewrite markdown links (fixes #2987) * add missing file * add helper fn * also convert post.url * simplify search.rs * clippy * also rewrite user/community links in markdown * Call from apub handlers, cleanup * no network requests in test * clippy * fix tests * serial * test * no mut * add api test * fix api test * Update Rust crate clap to v4.5.19 (#5080) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate html2text to v0.12.6 (#5081) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate rustls to v0.23.14 (#5083) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update rust-futures monorepo to v0.3.31 (#5090) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate actix-web-prom to 0.9.0 (#5091) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate regex to v1.11.0 (#5093) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate serde_with to v3.10.0 (#5094) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate serde_with to v3.11.0 (#5095) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency ts-jest to v29.2.5 (#5089) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency typescript to v5.6.2 (#5098) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency eslint to v9.12.0 (#5097) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/dockerfile Docker tag to v1.10 (#5099) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update pnpm to v9.12.0 (#5100) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate reqwest to v0.12.8 (#5082) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency @types/node to v22.7.4 (#5096) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update tamasfe/taplo Docker tag to v0.9.3 (#5101) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update tmknom/prettier Docker tag to v3.2.5 (#5102) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Add test case for community.hidden in post_view (ref #5074) (#5106) * Resize post thumbnails (fixes #4053) (#5107) * Resize post thumbnails (fixes #4053) * 256px * Update typescript-eslint monorepo to v8.8.1 (#5103) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update renovate config (#5109) * Update renovate config * ignroe rust updates, run on first day of month * fix * Add community alphabetic sorting (#5056) * Started * Finished? Need to write tests * Formatting * Formatting * Formatting * Write tests * Formatting * Formatting * Formatting * Unnecessary lifetime * Safety * Unwrap * Formatting * Formatting * Fix local_only test * Formatting * Name consistency * Adding lower to community name sort. --------- Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com> * Support markdown sub/superscript, use external crate for spoilers (#5135) * Use external crate for spoiler tags * Also add other plugins * fix test * Remove comment_like.post_id column which is unnecessary (ref #5122) (#5134) * Allow admins to resolve removed or deleted objects via API (#5061) * Allow admins to resolve removed or deleted objects via API * Removing pointless TestUser. --------- Co-authored-by: Dessalines <tyhou13@gmx.com> * Remove individual user/community inboxes (#5124) * Remove endpoints for individual community/user inboxes fixes #4147 fixes #3928 * Remove shared_inbox_url columns * fmt * Fixing errors. --------- Co-authored-by: Carlos Cabello <carloscabello364@gmail.com> Co-authored-by: Nutomic <me@nutomic.com> Co-authored-by: privacyguard <92675882+privacyguard@users.noreply.github.com> Co-authored-by: privacyguard <privacyguard@users.noreply.github.com> Co-authored-by: Freakazoid182 <5238563+Freakazoid182@users.noreply.github.com> Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> Co-authored-by: leoseg <70430884+leoseg@users.noreply.github.com> Co-authored-by: Sander Saarend <sander@saarend.com> Co-authored-by: Joseph Silva <dull.bananas0@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: netbrum <130702882+netbrum@users.noreply.github.com> Co-authored-by: Steven Vergenz <1882376+stevenvergenz@users.noreply.github.com> Co-authored-by: Richard Schwab <gitrichardschwab-7a2qxq42kj@central-intelligence.agency>
429 lines
15 KiB
Rust
429 lines
15 KiB
Rust
use actix_web::{guard, web};
|
|
use lemmy_api::{
|
|
comment::{
|
|
distinguish::distinguish_comment,
|
|
like::like_comment,
|
|
list_comment_likes::list_comment_likes,
|
|
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,
|
|
random::get_random_community,
|
|
transfer::transfer_community,
|
|
},
|
|
local_user::{
|
|
add_admin::add_admin,
|
|
ban_person::ban_from_site,
|
|
block::block_person,
|
|
change_password::change_password,
|
|
change_password_after_reset::change_password_after_reset,
|
|
generate_totp_secret::generate_totp_secret,
|
|
get_captcha::get_captcha,
|
|
list_banned::list_banned_users,
|
|
list_logins::list_logins,
|
|
list_media::list_media,
|
|
login::login,
|
|
logout::logout,
|
|
notifications::{
|
|
list_mentions::list_mentions,
|
|
list_replies::list_replies,
|
|
mark_all_read::mark_all_notifications_read,
|
|
mark_mention_read::mark_person_mention_as_read,
|
|
mark_reply_read::mark_reply_as_read,
|
|
unread_count::unread_count,
|
|
},
|
|
report_count::report_count,
|
|
reset_password::reset_password,
|
|
save_settings::save_user_settings,
|
|
update_totp::update_totp,
|
|
validate_auth::validate_auth,
|
|
verify_email::verify_email,
|
|
},
|
|
post::{
|
|
feature::feature_post,
|
|
get_link_metadata::get_link_metadata,
|
|
hide::hide_post,
|
|
like::like_post,
|
|
list_post_likes::list_post_likes,
|
|
lock::lock_post,
|
|
mark_read::mark_post_as_read,
|
|
save::save_post,
|
|
},
|
|
post_report::{
|
|
create::create_post_report,
|
|
list::list_post_reports,
|
|
resolve::resolve_post_report,
|
|
},
|
|
private_message::mark_read::mark_pm_as_read,
|
|
private_message_report::{
|
|
create::create_pm_report,
|
|
list::list_pm_reports,
|
|
resolve::resolve_pm_report,
|
|
},
|
|
site::{
|
|
block::block_instance,
|
|
federated_instances::get_federated_instances,
|
|
leave_admin::leave_admin,
|
|
list_all_media::list_all_media,
|
|
mod_log::get_mod_log,
|
|
purge::{
|
|
comment::purge_comment,
|
|
community::purge_community,
|
|
person::purge_person,
|
|
post::purge_post,
|
|
},
|
|
registration_applications::{
|
|
approve::approve_registration_application,
|
|
get::get_registration_application,
|
|
list::list_registration_applications,
|
|
unread_count::get_unread_registration_application_count,
|
|
},
|
|
},
|
|
sitemap::get_sitemap,
|
|
};
|
|
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,
|
|
list::list_custom_emojis,
|
|
update::update_custom_emoji,
|
|
},
|
|
oauth_provider::{
|
|
create::create_oauth_provider,
|
|
delete::delete_oauth_provider,
|
|
update::update_oauth_provider,
|
|
},
|
|
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},
|
|
tagline::{
|
|
create::create_tagline,
|
|
delete::delete_tagline,
|
|
list::list_taglines,
|
|
update::update_tagline,
|
|
},
|
|
user::{
|
|
create::{authenticate_with_oauth, 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,
|
|
user_settings_backup::{export_settings, import_settings},
|
|
};
|
|
use lemmy_routes::images::image_proxy;
|
|
use lemmy_utils::rate_limit::RateLimitCell;
|
|
|
|
pub fn config(cfg: &mut web::ServiceConfig, rate_limit: &RateLimitCell) {
|
|
cfg.service(
|
|
web::scope("/api/v3")
|
|
.route("/image_proxy", web::get().to(image_proxy))
|
|
// 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))
|
|
.route("/block", web::post().to(block_instance)),
|
|
)
|
|
.service(
|
|
web::resource("/modlog")
|
|
.wrap(rate_limit.message())
|
|
.route(web::get().to(get_mod_log)),
|
|
)
|
|
.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("/random", web::get().to(get_random_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(transfer_community))
|
|
.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(get_federated_instances)),
|
|
)
|
|
// 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(mark_post_as_read))
|
|
.route("/hide", web::post().to(hide_post))
|
|
.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("/like/list", web::get().to(list_post_likes))
|
|
.route("/save", web::put().to(save_post))
|
|
.route("/report", web::post().to(create_post_report))
|
|
.route("/report/resolve", web::put().to(resolve_post_report))
|
|
.route("/report/list", web::get().to(list_post_reports))
|
|
.route("/site_metadata", web::get().to(get_link_metadata)),
|
|
)
|
|
// 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("/like/list", web::get().to(list_comment_likes))
|
|
.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(mark_pm_as_read))
|
|
.route("/report", web::post().to(create_pm_report))
|
|
.route("/report/resolve", web::put().to(resolve_pm_report))
|
|
.route("/report/list", web::get().to(list_pm_reports)),
|
|
)
|
|
// User
|
|
.service(
|
|
// Account action, I don't like that it's in /user maybe /accounts
|
|
// Handle /user/register separately to add the register() rate limiter
|
|
web::resource("/user/register")
|
|
.guard(guard::Post())
|
|
.wrap(rate_limit.register())
|
|
.route(web::post().to(register)),
|
|
)
|
|
// User
|
|
.service(
|
|
// Handle /user/login separately to add the register() rate limiter
|
|
// TODO: pretty annoying way to apply rate limits for register and login, we should
|
|
// group them under a common path so that rate limit is only applied once (eg under
|
|
// /account).
|
|
web::resource("/user/login")
|
|
.guard(guard::Post())
|
|
.wrap(rate_limit.register())
|
|
.route(web::post().to(login)),
|
|
)
|
|
.service(
|
|
web::resource("/user/password_reset")
|
|
.wrap(rate_limit.register())
|
|
.route(web::post().to(reset_password)),
|
|
)
|
|
.service(
|
|
// Handle captcha separately
|
|
web::resource("/user/get_captcha")
|
|
.wrap(rate_limit.post())
|
|
.route(web::get().to(get_captcha)),
|
|
)
|
|
.service(
|
|
web::resource("/user/export_settings")
|
|
.wrap(rate_limit.import_user_settings())
|
|
.route(web::get().to(export_settings)),
|
|
)
|
|
.service(
|
|
web::resource("/user/import_settings")
|
|
.wrap(rate_limit.import_user_settings())
|
|
.route(web::post().to(import_settings)),
|
|
)
|
|
// TODO, all the current account related actions under /user need to get moved here eventually
|
|
.service(
|
|
web::scope("/account")
|
|
.wrap(rate_limit.message())
|
|
.route("/list_media", web::get().to(list_media)),
|
|
)
|
|
// User actions
|
|
.service(
|
|
web::scope("/user")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::get().to(read_person))
|
|
.route("/mention", web::get().to(list_mentions))
|
|
.route(
|
|
"/mention/mark_as_read",
|
|
web::post().to(mark_person_mention_as_read),
|
|
)
|
|
.route("/replies", web::get().to(list_replies))
|
|
// Admin action. I don't like that it's in /user
|
|
.route("/ban", web::post().to(ban_from_site))
|
|
.route("/banned", web::get().to(list_banned_users))
|
|
.route("/block", web::post().to(block_person))
|
|
// TODO Account actions. I don't like that they're in /user maybe /accounts
|
|
.route("/logout", web::post().to(logout))
|
|
.route("/delete_account", web::post().to(delete_account))
|
|
.route(
|
|
"/password_change",
|
|
web::post().to(change_password_after_reset),
|
|
)
|
|
// TODO mark_all_as_read feels off being in this section as well
|
|
.route(
|
|
"/mark_all_as_read",
|
|
web::post().to(mark_all_notifications_read),
|
|
)
|
|
.route("/save_user_settings", web::put().to(save_user_settings))
|
|
.route("/change_password", web::put().to(change_password))
|
|
.route("/report_count", web::get().to(report_count))
|
|
.route("/unread_count", web::get().to(unread_count))
|
|
.route("/verify_email", web::post().to(verify_email))
|
|
.route("/leave_admin", web::post().to(leave_admin))
|
|
.route("/totp/generate", web::post().to(generate_totp_secret))
|
|
.route("/totp/update", web::post().to(update_totp))
|
|
.route("/list_logins", web::get().to(list_logins))
|
|
.route("/validate_auth", web::get().to(validate_auth)),
|
|
)
|
|
// Admin Actions
|
|
.service(
|
|
web::scope("/admin")
|
|
.wrap(rate_limit.message())
|
|
.route("/add", web::post().to(add_admin))
|
|
.route(
|
|
"/registration_application/count",
|
|
web::get().to(get_unread_registration_application_count),
|
|
)
|
|
.route(
|
|
"/registration_application/list",
|
|
web::get().to(list_registration_applications),
|
|
)
|
|
.route(
|
|
"/registration_application/approve",
|
|
web::put().to(approve_registration_application),
|
|
)
|
|
.route(
|
|
"/registration_application",
|
|
web::get().to(get_registration_application),
|
|
)
|
|
.route("/list_all_media", web::get().to(list_all_media))
|
|
.service(
|
|
web::scope("/purge")
|
|
.route("/person", web::post().to(purge_person))
|
|
.route("/community", web::post().to(purge_community))
|
|
.route("/post", web::post().to(purge_post))
|
|
.route("/comment", web::post().to(purge_comment)),
|
|
)
|
|
.service(
|
|
web::scope("/tagline")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::post().to(create_tagline))
|
|
.route("", web::put().to(update_tagline))
|
|
.route("/delete", web::post().to(delete_tagline))
|
|
.route("/list", web::get().to(list_taglines)),
|
|
),
|
|
)
|
|
.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))
|
|
.route("/list", web::get().to(list_custom_emojis)),
|
|
)
|
|
.service(
|
|
web::scope("/oauth_provider")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::post().to(create_oauth_provider))
|
|
.route("", web::put().to(update_oauth_provider))
|
|
.route("/delete", web::post().to(delete_oauth_provider)),
|
|
)
|
|
.service(
|
|
web::scope("/oauth")
|
|
.wrap(rate_limit.register())
|
|
.route("/authenticate", web::post().to(authenticate_with_oauth)),
|
|
),
|
|
);
|
|
cfg.service(
|
|
web::scope("/sitemap.xml")
|
|
.wrap(rate_limit.message())
|
|
.route("", web::get().to(get_sitemap)),
|
|
);
|
|
}
|