668 lines
		
	
	
	
		
			23 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			668 lines
		
	
	
	
		
			23 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| # Pleroma: A lightweight social networking server
 | |
| # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
 | |
| # SPDX-License-Identifier: AGPL-3.0-only
 | |
| 
 | |
| defmodule Pleroma.Web.Router do
 | |
|   use Pleroma.Web, :router
 | |
| 
 | |
|   pipeline :browser do
 | |
|     plug(:accepts, ["html"])
 | |
|     plug(:fetch_session)
 | |
|   end
 | |
| 
 | |
|   pipeline :oauth do
 | |
|     plug(:fetch_session)
 | |
|     plug(Pleroma.Plugs.OAuthPlug)
 | |
|     plug(Pleroma.Plugs.UserEnabledPlug)
 | |
|   end
 | |
| 
 | |
|   pipeline :api do
 | |
|     plug(:accepts, ["json"])
 | |
|     plug(:fetch_session)
 | |
|     plug(Pleroma.Plugs.OAuthPlug)
 | |
|     plug(Pleroma.Plugs.BasicAuthDecoderPlug)
 | |
|     plug(Pleroma.Plugs.UserFetcherPlug)
 | |
|     plug(Pleroma.Plugs.SessionAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.LegacyAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.AuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.UserEnabledPlug)
 | |
|     plug(Pleroma.Plugs.SetUserSessionIdPlug)
 | |
|     plug(Pleroma.Plugs.EnsureUserKeyPlug)
 | |
|     plug(Pleroma.Plugs.IdempotencyPlug)
 | |
|   end
 | |
| 
 | |
|   pipeline :authenticated_api do
 | |
|     plug(:accepts, ["json"])
 | |
|     plug(:fetch_session)
 | |
|     plug(Pleroma.Plugs.OAuthPlug)
 | |
|     plug(Pleroma.Plugs.BasicAuthDecoderPlug)
 | |
|     plug(Pleroma.Plugs.UserFetcherPlug)
 | |
|     plug(Pleroma.Plugs.SessionAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.LegacyAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.AuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.UserEnabledPlug)
 | |
|     plug(Pleroma.Plugs.SetUserSessionIdPlug)
 | |
|     plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
 | |
|     plug(Pleroma.Plugs.IdempotencyPlug)
 | |
|   end
 | |
| 
 | |
|   pipeline :admin_api do
 | |
|     plug(:accepts, ["json"])
 | |
|     plug(:fetch_session)
 | |
|     plug(Pleroma.Plugs.OAuthPlug)
 | |
|     plug(Pleroma.Plugs.BasicAuthDecoderPlug)
 | |
|     plug(Pleroma.Plugs.UserFetcherPlug)
 | |
|     plug(Pleroma.Plugs.SessionAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.LegacyAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.AuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.AdminSecretAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.UserEnabledPlug)
 | |
|     plug(Pleroma.Plugs.SetUserSessionIdPlug)
 | |
|     plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
 | |
|     plug(Pleroma.Plugs.UserIsAdminPlug)
 | |
|     plug(Pleroma.Plugs.IdempotencyPlug)
 | |
|   end
 | |
| 
 | |
|   pipeline :mastodon_html do
 | |
|     plug(:accepts, ["html"])
 | |
|     plug(:fetch_session)
 | |
|     plug(Pleroma.Plugs.OAuthPlug)
 | |
|     plug(Pleroma.Plugs.BasicAuthDecoderPlug)
 | |
|     plug(Pleroma.Plugs.UserFetcherPlug)
 | |
|     plug(Pleroma.Plugs.SessionAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.LegacyAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.AuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.UserEnabledPlug)
 | |
|     plug(Pleroma.Plugs.SetUserSessionIdPlug)
 | |
|     plug(Pleroma.Plugs.EnsureUserKeyPlug)
 | |
|   end
 | |
| 
 | |
|   pipeline :pleroma_html do
 | |
|     plug(:accepts, ["html"])
 | |
|     plug(:fetch_session)
 | |
|     plug(Pleroma.Plugs.OAuthPlug)
 | |
|     plug(Pleroma.Plugs.BasicAuthDecoderPlug)
 | |
|     plug(Pleroma.Plugs.UserFetcherPlug)
 | |
|     plug(Pleroma.Plugs.SessionAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.AuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.EnsureUserKeyPlug)
 | |
|   end
 | |
| 
 | |
|   pipeline :well_known do
 | |
|     plug(:accepts, ["json", "jrd+json", "xml", "xrd+xml"])
 | |
|   end
 | |
| 
 | |
|   pipeline :config do
 | |
|     plug(:accepts, ["json", "xml"])
 | |
|   end
 | |
| 
 | |
|   pipeline :pleroma_api do
 | |
|     plug(:accepts, ["html", "json"])
 | |
|   end
 | |
| 
 | |
|   pipeline :mailbox_preview do
 | |
|     plug(:accepts, ["html"])
 | |
| 
 | |
|     plug(:put_secure_browser_headers, %{
 | |
|       "content-security-policy" =>
 | |
|         "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' 'unsafe-eval'"
 | |
|     })
 | |
|   end
 | |
| 
 | |
|   pipeline :http_signature do
 | |
|     plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
 | |
|     plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
 | |
|   end
 | |
| 
 | |
|   scope "/api/pleroma", Pleroma.Web.TwitterAPI do
 | |
|     pipe_through(:pleroma_api)
 | |
| 
 | |
|     get("/password_reset/:token", PasswordController, :reset, as: :reset_password)
 | |
|     post("/password_reset", PasswordController, :do_reset, as: :reset_password)
 | |
|     get("/emoji", UtilController, :emoji)
 | |
|     get("/captcha", UtilController, :captcha)
 | |
|     get("/healthcheck", UtilController, :healthcheck)
 | |
|   end
 | |
| 
 | |
|   scope "/api/pleroma", Pleroma.Web do
 | |
|     pipe_through(:pleroma_api)
 | |
|     post("/uploader_callback/:upload_path", UploaderController, :callback)
 | |
|   end
 | |
| 
 | |
|   scope "/api/pleroma/admin", Pleroma.Web.AdminAPI do
 | |
|     pipe_through(:admin_api)
 | |
| 
 | |
|     post("/users/follow", AdminAPIController, :user_follow)
 | |
|     post("/users/unfollow", AdminAPIController, :user_unfollow)
 | |
| 
 | |
|     delete("/users", AdminAPIController, :user_delete)
 | |
|     post("/users", AdminAPIController, :users_create)
 | |
|     patch("/users/:nickname/toggle_activation", AdminAPIController, :user_toggle_activation)
 | |
|     patch("/users/activate", AdminAPIController, :user_activate)
 | |
|     patch("/users/deactivate", AdminAPIController, :user_deactivate)
 | |
|     put("/users/tag", AdminAPIController, :tag_users)
 | |
|     delete("/users/tag", AdminAPIController, :untag_users)
 | |
| 
 | |
|     get("/users/:nickname/permission_group", AdminAPIController, :right_get)
 | |
|     get("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_get)
 | |
| 
 | |
|     post("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_add)
 | |
| 
 | |
|     delete(
 | |
|       "/users/:nickname/permission_group/:permission_group",
 | |
|       AdminAPIController,
 | |
|       :right_delete
 | |
|     )
 | |
| 
 | |
|     post("/users/permission_group/:permission_group", AdminAPIController, :right_add_multiple)
 | |
| 
 | |
|     delete(
 | |
|       "/users/permission_group/:permission_group",
 | |
|       AdminAPIController,
 | |
|       :right_delete_multiple
 | |
|     )
 | |
| 
 | |
|     get("/relay", AdminAPIController, :relay_list)
 | |
|     post("/relay", AdminAPIController, :relay_follow)
 | |
|     delete("/relay", AdminAPIController, :relay_unfollow)
 | |
| 
 | |
|     post("/users/invite_token", AdminAPIController, :create_invite_token)
 | |
|     get("/users/invites", AdminAPIController, :invites)
 | |
|     post("/users/revoke_invite", AdminAPIController, :revoke_invite)
 | |
|     post("/users/email_invite", AdminAPIController, :email_invite)
 | |
| 
 | |
|     get("/users/:nickname/password_reset", AdminAPIController, :get_password_reset)
 | |
|     patch("/users/force_password_reset", AdminAPIController, :force_password_reset)
 | |
| 
 | |
|     get("/users", AdminAPIController, :list_users)
 | |
|     get("/users/:nickname", AdminAPIController, :user_show)
 | |
|     get("/users/:nickname/statuses", AdminAPIController, :list_user_statuses)
 | |
| 
 | |
|     get("/instances/:instance/statuses", AdminAPIController, :list_instance_statuses)
 | |
| 
 | |
|     patch("/users/confirm_email", AdminAPIController, :confirm_email)
 | |
|     patch("/users/resend_confirmation_email", AdminAPIController, :resend_confirmation_email)
 | |
| 
 | |
|     get("/reports", AdminAPIController, :list_reports)
 | |
|     get("/grouped_reports", AdminAPIController, :list_grouped_reports)
 | |
|     get("/reports/:id", AdminAPIController, :report_show)
 | |
|     patch("/reports", AdminAPIController, :reports_update)
 | |
|     post("/reports/:id/notes", AdminAPIController, :report_notes_create)
 | |
|     delete("/reports/:report_id/notes/:id", AdminAPIController, :report_notes_delete)
 | |
| 
 | |
|     put("/statuses/:id", AdminAPIController, :status_update)
 | |
|     delete("/statuses/:id", AdminAPIController, :status_delete)
 | |
| 
 | |
|     get("/config", AdminAPIController, :config_show)
 | |
|     post("/config", AdminAPIController, :config_update)
 | |
|     get("/config/migrate_to_db", AdminAPIController, :migrate_to_db)
 | |
|     get("/config/migrate_from_db", AdminAPIController, :migrate_from_db)
 | |
| 
 | |
|     get("/moderation_log", AdminAPIController, :list_log)
 | |
| 
 | |
|     post("/reload_emoji", AdminAPIController, :reload_emoji)
 | |
|   end
 | |
| 
 | |
|   scope "/api/pleroma/emoji", Pleroma.Web.PleromaAPI do
 | |
|     scope "/packs" do
 | |
|       # Modifying packs
 | |
|       pipe_through(:admin_api)
 | |
| 
 | |
|       post("/import_from_fs", EmojiAPIController, :import_from_fs)
 | |
| 
 | |
|       post("/:pack_name/update_file", EmojiAPIController, :update_file)
 | |
|       post("/:pack_name/update_metadata", EmojiAPIController, :update_metadata)
 | |
|       put("/:name", EmojiAPIController, :create)
 | |
|       delete("/:name", EmojiAPIController, :delete)
 | |
|       post("/download_from", EmojiAPIController, :download_from)
 | |
|       post("/list_from", EmojiAPIController, :list_from)
 | |
|     end
 | |
| 
 | |
|     scope "/packs" do
 | |
|       # Pack info / downloading
 | |
|       get("/", EmojiAPIController, :list_packs)
 | |
|       get("/:name/download_shared/", EmojiAPIController, :download_shared)
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web.TwitterAPI do
 | |
|     pipe_through(:pleroma_html)
 | |
| 
 | |
|     post("/main/ostatus", UtilController, :remote_subscribe)
 | |
|     get("/ostatus_subscribe", RemoteFollowController, :follow)
 | |
| 
 | |
|     post("/ostatus_subscribe", RemoteFollowController, :do_follow)
 | |
|   end
 | |
| 
 | |
|   scope "/api/pleroma", Pleroma.Web.TwitterAPI do
 | |
|     pipe_through(:authenticated_api)
 | |
| 
 | |
|     post("/change_email", UtilController, :change_email)
 | |
|     post("/change_password", UtilController, :change_password)
 | |
|     post("/delete_account", UtilController, :delete_account)
 | |
|     put("/notification_settings", UtilController, :update_notificaton_settings)
 | |
|     post("/disable_account", UtilController, :disable_account)
 | |
| 
 | |
|     post("/blocks_import", UtilController, :blocks_import)
 | |
|     post("/follow_import", UtilController, :follow_import)
 | |
|   end
 | |
| 
 | |
|   scope "/oauth", Pleroma.Web.OAuth do
 | |
|     scope [] do
 | |
|       pipe_through(:oauth)
 | |
|       get("/authorize", OAuthController, :authorize)
 | |
|     end
 | |
| 
 | |
|     post("/authorize", OAuthController, :create_authorization)
 | |
|     post("/token", OAuthController, :token_exchange)
 | |
|     post("/revoke", OAuthController, :token_revoke)
 | |
|     get("/registration_details", OAuthController, :registration_details)
 | |
| 
 | |
|     scope [] do
 | |
|       pipe_through(:browser)
 | |
| 
 | |
|       get("/prepare_request", OAuthController, :prepare_request)
 | |
|       get("/:provider", OAuthController, :request)
 | |
|       get("/:provider/callback", OAuthController, :callback)
 | |
|       post("/register", OAuthController, :register)
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
 | |
|     pipe_through(:api)
 | |
| 
 | |
|     get("/statuses/:id/emoji_reactions_by", PleromaAPIController, :emoji_reactions_by)
 | |
|   end
 | |
| 
 | |
|   scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
 | |
|     scope [] do
 | |
|       pipe_through(:authenticated_api)
 | |
| 
 | |
|       get("/conversations/:id/statuses", PleromaAPIController, :conversation_statuses)
 | |
|       get("/conversations/:id", PleromaAPIController, :conversation)
 | |
|       post("/conversations/read", PleromaAPIController, :read_conversations)
 | |
|     end
 | |
| 
 | |
|     scope [] do
 | |
|       pipe_through(:authenticated_api)
 | |
| 
 | |
|       patch("/conversations/:id", PleromaAPIController, :update_conversation)
 | |
|       post("/statuses/:id/react_with_emoji", PleromaAPIController, :react_with_emoji)
 | |
|       post("/statuses/:id/unreact_with_emoji", PleromaAPIController, :unreact_with_emoji)
 | |
|       post("/notifications/read", PleromaAPIController, :read_notification)
 | |
| 
 | |
|       patch("/accounts/update_avatar", AccountController, :update_avatar)
 | |
|       patch("/accounts/update_banner", AccountController, :update_banner)
 | |
|       patch("/accounts/update_background", AccountController, :update_background)
 | |
| 
 | |
|       get("/mascot", MascotController, :show)
 | |
|       put("/mascot", MascotController, :update)
 | |
| 
 | |
|       post("/scrobble", ScrobbleController, :new_scrobble)
 | |
|     end
 | |
| 
 | |
|     scope [] do
 | |
|       pipe_through(:api)
 | |
|       get("/accounts/:id/favourites", AccountController, :favourites)
 | |
|     end
 | |
| 
 | |
|     scope [] do
 | |
|       pipe_through(:authenticated_api)
 | |
| 
 | |
|       post("/accounts/:id/subscribe", AccountController, :subscribe)
 | |
|       post("/accounts/:id/unsubscribe", AccountController, :unsubscribe)
 | |
|     end
 | |
| 
 | |
|     post("/accounts/confirmation_resend", AccountController, :confirmation_resend)
 | |
|   end
 | |
| 
 | |
|   scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
 | |
|     pipe_through(:api)
 | |
|     get("/accounts/:id/scrobbles", ScrobbleController, :user_scrobbles)
 | |
|   end
 | |
| 
 | |
|   scope "/api/v1", Pleroma.Web.MastodonAPI do
 | |
|     pipe_through(:authenticated_api)
 | |
| 
 | |
|     get("/accounts/verify_credentials", AccountController, :verify_credentials)
 | |
| 
 | |
|     get("/accounts/relationships", AccountController, :relationships)
 | |
| 
 | |
|     get("/accounts/:id/lists", AccountController, :lists)
 | |
|     get("/accounts/:id/identity_proofs", MastodonAPIController, :empty_array)
 | |
| 
 | |
|     get("/follow_requests", FollowRequestController, :index)
 | |
|     get("/blocks", AccountController, :blocks)
 | |
|     get("/mutes", AccountController, :mutes)
 | |
| 
 | |
|     get("/timelines/home", TimelineController, :home)
 | |
|     get("/timelines/direct", TimelineController, :direct)
 | |
| 
 | |
|     get("/favourites", StatusController, :favourites)
 | |
|     get("/bookmarks", StatusController, :bookmarks)
 | |
| 
 | |
|     get("/notifications", NotificationController, :index)
 | |
|     get("/notifications/:id", NotificationController, :show)
 | |
|     post("/notifications/clear", NotificationController, :clear)
 | |
|     post("/notifications/dismiss", NotificationController, :dismiss)
 | |
|     delete("/notifications/destroy_multiple", NotificationController, :destroy_multiple)
 | |
| 
 | |
|     get("/scheduled_statuses", ScheduledActivityController, :index)
 | |
|     get("/scheduled_statuses/:id", ScheduledActivityController, :show)
 | |
| 
 | |
|     get("/lists", ListController, :index)
 | |
|     get("/lists/:id", ListController, :show)
 | |
|     get("/lists/:id/accounts", ListController, :list_accounts)
 | |
| 
 | |
|     get("/domain_blocks", DomainBlockController, :index)
 | |
| 
 | |
|     get("/filters", FilterController, :index)
 | |
| 
 | |
|     get("/suggestions", SuggestionController, :index)
 | |
| 
 | |
|     get("/conversations", ConversationController, :index)
 | |
|     post("/conversations/:id/read", ConversationController, :read)
 | |
| 
 | |
|     get("/endorsements", AccountController, :endorsements)
 | |
| 
 | |
|     patch("/accounts/update_credentials", AccountController, :update_credentials)
 | |
| 
 | |
|     post("/statuses", StatusController, :create)
 | |
|     delete("/statuses/:id", StatusController, :delete)
 | |
| 
 | |
|     post("/statuses/:id/reblog", StatusController, :reblog)
 | |
|     post("/statuses/:id/unreblog", StatusController, :unreblog)
 | |
|     post("/statuses/:id/favourite", StatusController, :favourite)
 | |
|     post("/statuses/:id/unfavourite", StatusController, :unfavourite)
 | |
|     post("/statuses/:id/pin", StatusController, :pin)
 | |
|     post("/statuses/:id/unpin", StatusController, :unpin)
 | |
|     post("/statuses/:id/bookmark", StatusController, :bookmark)
 | |
|     post("/statuses/:id/unbookmark", StatusController, :unbookmark)
 | |
|     post("/statuses/:id/mute", StatusController, :mute_conversation)
 | |
|     post("/statuses/:id/unmute", StatusController, :unmute_conversation)
 | |
| 
 | |
|     put("/scheduled_statuses/:id", ScheduledActivityController, :update)
 | |
|     delete("/scheduled_statuses/:id", ScheduledActivityController, :delete)
 | |
| 
 | |
|     post("/polls/:id/votes", PollController, :vote)
 | |
| 
 | |
|     post("/media", MediaController, :create)
 | |
|     put("/media/:id", MediaController, :update)
 | |
| 
 | |
|     delete("/lists/:id", ListController, :delete)
 | |
|     post("/lists", ListController, :create)
 | |
|     put("/lists/:id", ListController, :update)
 | |
| 
 | |
|     post("/lists/:id/accounts", ListController, :add_to_list)
 | |
|     delete("/lists/:id/accounts", ListController, :remove_from_list)
 | |
| 
 | |
|     post("/filters", FilterController, :create)
 | |
|     get("/filters/:id", FilterController, :show)
 | |
|     put("/filters/:id", FilterController, :update)
 | |
|     delete("/filters/:id", FilterController, :delete)
 | |
| 
 | |
|     post("/reports", ReportController, :create)
 | |
| 
 | |
|     post("/follows", AccountController, :follows)
 | |
|     post("/accounts/:id/follow", AccountController, :follow)
 | |
|     post("/accounts/:id/unfollow", AccountController, :unfollow)
 | |
|     post("/accounts/:id/block", AccountController, :block)
 | |
|     post("/accounts/:id/unblock", AccountController, :unblock)
 | |
|     post("/accounts/:id/mute", AccountController, :mute)
 | |
|     post("/accounts/:id/unmute", AccountController, :unmute)
 | |
| 
 | |
|     post("/follow_requests/:id/authorize", FollowRequestController, :authorize)
 | |
|     post("/follow_requests/:id/reject", FollowRequestController, :reject)
 | |
| 
 | |
|     post("/domain_blocks", DomainBlockController, :create)
 | |
|     delete("/domain_blocks", DomainBlockController, :delete)
 | |
| 
 | |
|     post("/push/subscription", SubscriptionController, :create)
 | |
|     get("/push/subscription", SubscriptionController, :get)
 | |
|     put("/push/subscription", SubscriptionController, :update)
 | |
|     delete("/push/subscription", SubscriptionController, :delete)
 | |
| 
 | |
|     get("/markers", MarkerController, :index)
 | |
|     post("/markers", MarkerController, :upsert)
 | |
|   end
 | |
| 
 | |
|   scope "/api/web", Pleroma.Web do
 | |
|     pipe_through(:authenticated_api)
 | |
| 
 | |
|     put("/settings", MastoFEController, :put_settings)
 | |
|   end
 | |
| 
 | |
|   scope "/api/v1", Pleroma.Web.MastodonAPI do
 | |
|     pipe_through(:api)
 | |
| 
 | |
|     post("/accounts", AccountController, :create)
 | |
|     get("/accounts/search", SearchController, :account_search)
 | |
| 
 | |
|     get("/instance", InstanceController, :show)
 | |
|     get("/instance/peers", InstanceController, :peers)
 | |
| 
 | |
|     post("/apps", AppController, :create)
 | |
|     get("/apps/verify_credentials", AppController, :verify_credentials)
 | |
| 
 | |
|     get("/statuses/:id/card", StatusController, :card)
 | |
|     get("/statuses/:id/favourited_by", StatusController, :favourited_by)
 | |
|     get("/statuses/:id/reblogged_by", StatusController, :reblogged_by)
 | |
| 
 | |
|     get("/custom_emojis", CustomEmojiController, :index)
 | |
| 
 | |
|     get("/trends", MastodonAPIController, :empty_array)
 | |
| 
 | |
|     get("/timelines/public", TimelineController, :public)
 | |
|     get("/timelines/tag/:tag", TimelineController, :hashtag)
 | |
|     get("/timelines/list/:list_id", TimelineController, :list)
 | |
| 
 | |
|     get("/statuses", StatusController, :index)
 | |
|     get("/statuses/:id", StatusController, :show)
 | |
|     get("/statuses/:id/context", StatusController, :context)
 | |
| 
 | |
|     get("/polls/:id", PollController, :show)
 | |
| 
 | |
|     get("/accounts/:id/statuses", AccountController, :statuses)
 | |
|     get("/accounts/:id/followers", AccountController, :followers)
 | |
|     get("/accounts/:id/following", AccountController, :following)
 | |
|     get("/accounts/:id", AccountController, :show)
 | |
| 
 | |
|     get("/search", SearchController, :search)
 | |
|   end
 | |
| 
 | |
|   scope "/api/v2", Pleroma.Web.MastodonAPI do
 | |
|     pipe_through(:api)
 | |
|     get("/search", SearchController, :search2)
 | |
|   end
 | |
| 
 | |
|   scope "/api", Pleroma.Web do
 | |
|     pipe_through(:config)
 | |
| 
 | |
|     get("/help/test", TwitterAPI.UtilController, :help_test)
 | |
|     post("/help/test", TwitterAPI.UtilController, :help_test)
 | |
|     get("/statusnet/config", TwitterAPI.UtilController, :config)
 | |
|     get("/statusnet/version", TwitterAPI.UtilController, :version)
 | |
|     get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
 | |
|   end
 | |
| 
 | |
|   scope "/api", Pleroma.Web do
 | |
|     pipe_through(:api)
 | |
| 
 | |
|     get(
 | |
|       "/account/confirm_email/:user_id/:token",
 | |
|       TwitterAPI.Controller,
 | |
|       :confirm_email,
 | |
|       as: :confirm_email
 | |
|     )
 | |
|   end
 | |
| 
 | |
|   scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
 | |
|     pipe_through(:authenticated_api)
 | |
| 
 | |
|     get("/oauth_tokens", TwitterAPI.Controller, :oauth_tokens)
 | |
|     delete("/oauth_tokens/:id", TwitterAPI.Controller, :revoke_token)
 | |
| 
 | |
|     post("/qvitter/statuses/notifications/read", TwitterAPI.Controller, :notifications_read)
 | |
|   end
 | |
| 
 | |
|   pipeline :ap_service_actor do
 | |
|     plug(:accepts, ["activity+json", "json"])
 | |
|   end
 | |
| 
 | |
|   pipeline :ostatus do
 | |
|     plug(:accepts, ["html", "xml", "atom", "activity+json", "json"])
 | |
|     plug(Pleroma.Plugs.StaticFEPlug)
 | |
|   end
 | |
| 
 | |
|   pipeline :oembed do
 | |
|     plug(:accepts, ["json", "xml"])
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web do
 | |
|     pipe_through(:ostatus)
 | |
|     pipe_through(:http_signature)
 | |
| 
 | |
|     get("/objects/:uuid", OStatus.OStatusController, :object)
 | |
|     get("/activities/:uuid", OStatus.OStatusController, :activity)
 | |
|     get("/notice/:id", OStatus.OStatusController, :notice)
 | |
|     get("/notice/:id/embed_player", OStatus.OStatusController, :notice_player)
 | |
| 
 | |
|     get("/users/:nickname/feed", Feed.UserController, :feed, as: :user_feed)
 | |
|     get("/users/:nickname", Feed.UserController, :feed_redirect, as: :user_feed)
 | |
| 
 | |
|     get("/tags/:tag", Feed.TagController, :feed, as: :tag_feed)
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web do
 | |
|     pipe_through(:browser)
 | |
|     get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
 | |
|   end
 | |
| 
 | |
|   pipeline :activitypub do
 | |
|     plug(:accepts, ["activity+json", "json"])
 | |
|     plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
 | |
|     plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web.ActivityPub do
 | |
|     # XXX: not really ostatus
 | |
|     pipe_through(:ostatus)
 | |
| 
 | |
|     get("/users/:nickname/outbox", ActivityPubController, :outbox)
 | |
|   end
 | |
| 
 | |
|   pipeline :activitypub_client do
 | |
|     plug(:accepts, ["activity+json", "json"])
 | |
|     plug(:fetch_session)
 | |
|     plug(Pleroma.Plugs.OAuthPlug)
 | |
|     plug(Pleroma.Plugs.BasicAuthDecoderPlug)
 | |
|     plug(Pleroma.Plugs.UserFetcherPlug)
 | |
|     plug(Pleroma.Plugs.SessionAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.LegacyAuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.AuthenticationPlug)
 | |
|     plug(Pleroma.Plugs.UserEnabledPlug)
 | |
|     plug(Pleroma.Plugs.SetUserSessionIdPlug)
 | |
|     plug(Pleroma.Plugs.EnsureUserKeyPlug)
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web.ActivityPub do
 | |
|     pipe_through([:activitypub_client])
 | |
| 
 | |
|     get("/api/ap/whoami", ActivityPubController, :whoami)
 | |
|     get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
 | |
| 
 | |
|     post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
 | |
|     post("/api/ap/upload_media", ActivityPubController, :upload_media)
 | |
| 
 | |
|     get("/users/:nickname/followers", ActivityPubController, :followers)
 | |
|     get("/users/:nickname/following", ActivityPubController, :following)
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web.ActivityPub do
 | |
|     pipe_through(:activitypub)
 | |
|     post("/inbox", ActivityPubController, :inbox)
 | |
|     post("/users/:nickname/inbox", ActivityPubController, :inbox)
 | |
|   end
 | |
| 
 | |
|   scope "/relay", Pleroma.Web.ActivityPub do
 | |
|     pipe_through(:ap_service_actor)
 | |
| 
 | |
|     get("/", ActivityPubController, :relay)
 | |
| 
 | |
|     scope [] do
 | |
|       pipe_through(:http_signature)
 | |
|       post("/inbox", ActivityPubController, :inbox)
 | |
|     end
 | |
| 
 | |
|     get("/following", ActivityPubController, :following, assigns: %{relay: true})
 | |
|     get("/followers", ActivityPubController, :followers, assigns: %{relay: true})
 | |
|   end
 | |
| 
 | |
|   scope "/internal/fetch", Pleroma.Web.ActivityPub do
 | |
|     pipe_through(:ap_service_actor)
 | |
| 
 | |
|     get("/", ActivityPubController, :internal_fetch)
 | |
|     post("/inbox", ActivityPubController, :inbox)
 | |
|   end
 | |
| 
 | |
|   scope "/.well-known", Pleroma.Web do
 | |
|     pipe_through(:well_known)
 | |
| 
 | |
|     get("/host-meta", WebFinger.WebFingerController, :host_meta)
 | |
|     get("/webfinger", WebFinger.WebFingerController, :webfinger)
 | |
|     get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
 | |
|   end
 | |
| 
 | |
|   scope "/nodeinfo", Pleroma.Web do
 | |
|     get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web do
 | |
|     pipe_through(:api)
 | |
| 
 | |
|     get("/web/manifest.json", MastoFEController, :manifest)
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web do
 | |
|     pipe_through(:mastodon_html)
 | |
| 
 | |
|     get("/web/login", MastodonAPI.AuthController, :login)
 | |
|     delete("/auth/sign_out", MastodonAPI.AuthController, :logout)
 | |
| 
 | |
|     post("/auth/password", MastodonAPI.AuthController, :password_reset)
 | |
| 
 | |
|     get("/web/*path", MastoFEController, :index)
 | |
|   end
 | |
| 
 | |
|   pipeline :remote_media do
 | |
|   end
 | |
| 
 | |
|   scope "/proxy/", Pleroma.Web.MediaProxy do
 | |
|     pipe_through(:remote_media)
 | |
| 
 | |
|     get("/:sig/:url", MediaProxyController, :remote)
 | |
|     get("/:sig/:url/:filename", MediaProxyController, :remote)
 | |
|   end
 | |
| 
 | |
|   if Pleroma.Config.get(:env) == :dev do
 | |
|     scope "/dev" do
 | |
|       pipe_through([:mailbox_preview])
 | |
| 
 | |
|       forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   scope "/", Pleroma.Web.MongooseIM do
 | |
|     get("/user_exists", MongooseIMController, :user_exists)
 | |
|     get("/check_password", MongooseIMController, :check_password)
 | |
|   end
 | |
| 
 | |
|   scope "/", Fallback do
 | |
|     get("/registration/:token", RedirectController, :registration_page)
 | |
|     get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
 | |
|     get("/api*path", RedirectController, :api_not_implemented)
 | |
|     get("/*path", RedirectController, :redirector)
 | |
| 
 | |
|     options("/*path", RedirectController, :empty)
 | |
|   end
 | |
| end
 | 
