2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 08:41:47 -07:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-17 10:09:58 -06:00
|
|
|
defmodule Pleroma.Web.Router do
|
|
|
|
use Pleroma.Web, :router
|
|
|
|
|
2019-03-11 11:37:26 -06:00
|
|
|
pipeline :browser do
|
|
|
|
plug(:accepts, ["html"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
end
|
|
|
|
|
2019-04-01 05:46:50 -06:00
|
|
|
pipeline :oauth do
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
|
|
|
end
|
|
|
|
|
2017-03-17 10:09:58 -06:00
|
|
|
pipeline :api do
|
2018-03-30 07:01:53 -06:00
|
|
|
plug(:accepts, ["json"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
2018-09-05 14:31:57 -06:00
|
|
|
plug(Pleroma.Plugs.LegacyAuthenticationPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
2018-09-05 13:57:56 -06:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
2019-06-26 05:42:49 -06:00
|
|
|
plug(Pleroma.Plugs.IdempotencyPlug)
|
2017-03-17 10:09:58 -06:00
|
|
|
end
|
|
|
|
|
2017-03-20 14:30:44 -06:00
|
|
|
pipeline :authenticated_api do
|
2018-03-30 07:01:53 -06:00
|
|
|
plug(:accepts, ["json"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
2018-09-05 14:31:57 -06:00
|
|
|
plug(Pleroma.Plugs.LegacyAuthenticationPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
2018-09-05 13:57:56 -06:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
|
2019-06-26 05:42:49 -06:00
|
|
|
plug(Pleroma.Plugs.IdempotencyPlug)
|
2017-03-21 14:09:20 -06:00
|
|
|
end
|
|
|
|
|
2018-10-02 10:38:16 -06:00
|
|
|
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)
|
2018-12-18 13:08:52 -07:00
|
|
|
plug(Pleroma.Plugs.AdminSecretAuthenticationPlug)
|
2018-10-02 10:38:16 -06:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
|
|
|
plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
|
|
|
|
plug(Pleroma.Plugs.UserIsAdminPlug)
|
2019-06-26 05:42:49 -06:00
|
|
|
plug(Pleroma.Plugs.IdempotencyPlug)
|
2018-10-02 10:38:16 -06:00
|
|
|
end
|
|
|
|
|
2017-11-12 06:23:05 -07:00
|
|
|
pipeline :mastodon_html do
|
2018-03-30 07:01:53 -06:00
|
|
|
plug(:accepts, ["html"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
2018-09-05 14:31:57 -06:00
|
|
|
plug(Pleroma.Plugs.LegacyAuthenticationPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
2018-09-05 13:57:56 -06:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
2017-11-12 06:23:05 -07:00
|
|
|
end
|
|
|
|
|
2018-01-18 09:42:44 -07:00
|
|
|
pipeline :pleroma_html do
|
2018-03-30 07:01:53 -06:00
|
|
|
plug(:accepts, ["html"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
2018-09-05 11:13:53 -06:00
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
2018-01-18 09:42:44 -07:00
|
|
|
end
|
|
|
|
|
2019-05-13 09:07:11 -06:00
|
|
|
pipeline :oauth_read_or_public do
|
2019-02-15 09:54:37 -07:00
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{
|
|
|
|
scopes: ["read"],
|
|
|
|
fallback: :proceed_unauthenticated
|
|
|
|
})
|
2019-05-13 09:07:11 -06:00
|
|
|
|
|
|
|
plug(Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug)
|
2019-02-15 09:54:37 -07:00
|
|
|
end
|
|
|
|
|
2019-02-09 07:09:08 -07:00
|
|
|
pipeline :oauth_read do
|
2019-02-15 09:54:37 -07:00
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["read"]})
|
2019-02-09 07:09:08 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :oauth_write do
|
2019-02-15 09:54:37 -07:00
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["write"]})
|
2019-02-09 07:09:08 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :oauth_follow do
|
2019-02-15 09:54:37 -07:00
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["follow"]})
|
2019-02-09 07:09:08 -07:00
|
|
|
end
|
|
|
|
|
2019-02-20 07:27:41 -07:00
|
|
|
pipeline :oauth_push do
|
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["push"]})
|
|
|
|
end
|
|
|
|
|
2017-04-17 05:44:41 -06:00
|
|
|
pipeline :well_known do
|
2018-06-15 14:01:17 -06:00
|
|
|
plug(:accepts, ["json", "jrd+json", "xml", "xrd+xml"])
|
2017-04-17 05:44:41 -06:00
|
|
|
end
|
|
|
|
|
2017-08-24 06:07:05 -06:00
|
|
|
pipeline :config do
|
2018-03-30 07:01:53 -06:00
|
|
|
plug(:accepts, ["json", "xml"])
|
2017-08-24 06:07:05 -06:00
|
|
|
end
|
|
|
|
|
2017-10-19 13:51:56 -06:00
|
|
|
pipeline :pleroma_api do
|
2018-03-30 07:01:53 -06:00
|
|
|
plug(:accepts, ["html", "json"])
|
2017-10-19 09:37:24 -06:00
|
|
|
end
|
|
|
|
|
2018-12-11 04:59:25 -07:00
|
|
|
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
|
|
|
|
|
2019-08-22 13:39:06 -06:00
|
|
|
pipeline :http_signature do
|
|
|
|
plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
|
|
|
|
end
|
|
|
|
|
2017-10-19 09:37:24 -06:00
|
|
|
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:pleroma_api)
|
2019-02-15 09:54:37 -07:00
|
|
|
|
2019-06-24 13:01:56 -06:00
|
|
|
get("/password_reset/:token", PasswordController, :reset, as: :reset_password)
|
|
|
|
post("/password_reset", PasswordController, :do_reset, as: :reset_password)
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/emoji", UtilController, :emoji)
|
2018-12-14 15:31:19 -07:00
|
|
|
get("/captcha", UtilController, :captcha)
|
2019-04-22 01:19:53 -06:00
|
|
|
get("/healthcheck", UtilController, :healthcheck)
|
2017-10-19 09:37:24 -06:00
|
|
|
end
|
|
|
|
|
2019-01-21 14:44:14 -07:00
|
|
|
scope "/api/pleroma", Pleroma.Web do
|
|
|
|
pipe_through(:pleroma_api)
|
|
|
|
post("/uploader_callback/:upload_path", UploaderController, :callback)
|
|
|
|
end
|
|
|
|
|
2018-10-02 10:38:16 -06:00
|
|
|
scope "/api/pleroma/admin", Pleroma.Web.AdminAPI do
|
2019-02-15 09:54:37 -07:00
|
|
|
pipe_through([:admin_api, :oauth_write])
|
|
|
|
|
2019-05-11 02:32:04 -06:00
|
|
|
post("/users/follow", AdminAPIController, :user_follow)
|
|
|
|
post("/users/unfollow", AdminAPIController, :user_unfollow)
|
2018-12-16 08:41:56 -07:00
|
|
|
|
2019-05-11 02:32:04 -06:00
|
|
|
delete("/users", AdminAPIController, :user_delete)
|
2019-05-17 00:35:31 -06:00
|
|
|
post("/users", AdminAPIController, :users_create)
|
2019-05-11 02:32:04 -06:00
|
|
|
patch("/users/:nickname/toggle_activation", AdminAPIController, :user_toggle_activation)
|
2018-12-06 10:06:50 -07:00
|
|
|
put("/users/tag", AdminAPIController, :tag_users)
|
2018-12-07 01:04:39 -07:00
|
|
|
delete("/users/tag", AdminAPIController, :untag_users)
|
2018-10-02 10:38:16 -06:00
|
|
|
|
2019-05-11 02:32:04 -06:00
|
|
|
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
|
|
|
|
)
|
|
|
|
|
|
|
|
put("/users/:nickname/activation_status", AdminAPIController, :set_activation_status)
|
2019-02-19 08:40:57 -07:00
|
|
|
|
2018-10-02 10:38:16 -06:00
|
|
|
post("/relay", AdminAPIController, :relay_follow)
|
|
|
|
delete("/relay", AdminAPIController, :relay_unfollow)
|
|
|
|
|
2019-05-11 02:32:04 -06:00
|
|
|
get("/users/invite_token", AdminAPIController, :get_invite_token)
|
|
|
|
get("/users/invites", AdminAPIController, :invites)
|
|
|
|
post("/users/revoke_invite", AdminAPIController, :revoke_invite)
|
|
|
|
post("/users/email_invite", AdminAPIController, :email_invite)
|
2018-12-13 08:23:05 -07:00
|
|
|
|
2019-05-11 02:32:04 -06:00
|
|
|
get("/users/:nickname/password_reset", AdminAPIController, :get_password_reset)
|
|
|
|
|
|
|
|
get("/users", AdminAPIController, :list_users)
|
|
|
|
get("/users/:nickname", AdminAPIController, :user_show)
|
2019-07-13 15:37:19 -06:00
|
|
|
get("/users/:nickname/statuses", AdminAPIController, :list_user_statuses)
|
2019-05-16 13:09:18 -06:00
|
|
|
|
|
|
|
get("/reports", AdminAPIController, :list_reports)
|
|
|
|
get("/reports/:id", AdminAPIController, :report_show)
|
|
|
|
put("/reports/:id", AdminAPIController, :report_update_state)
|
|
|
|
post("/reports/:id/respond", AdminAPIController, :report_respond)
|
|
|
|
|
|
|
|
put("/statuses/:id", AdminAPIController, :status_update)
|
|
|
|
delete("/statuses/:id", AdminAPIController, :status_delete)
|
2019-06-14 09:45:05 -06:00
|
|
|
|
|
|
|
get("/config", AdminAPIController, :config_show)
|
|
|
|
post("/config", AdminAPIController, :config_update)
|
2019-07-30 10:36:05 -06:00
|
|
|
get("/config/migrate_to_db", AdminAPIController, :migrate_to_db)
|
|
|
|
get("/config/migrate_from_db", AdminAPIController, :migrate_from_db)
|
2019-08-25 13:39:37 -06:00
|
|
|
|
|
|
|
get("/moderation_log", AdminAPIController, :list_log)
|
2018-10-02 10:38:16 -06:00
|
|
|
end
|
|
|
|
|
2018-01-18 09:42:44 -07:00
|
|
|
scope "/", Pleroma.Web.TwitterAPI do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:pleroma_html)
|
2019-02-15 09:54:37 -07:00
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
post("/main/ostatus", UtilController, :remote_subscribe)
|
2019-02-15 09:54:37 -07:00
|
|
|
get("/ostatus_subscribe", UtilController, :remote_follow)
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_follow)
|
|
|
|
post("/ostatus_subscribe", UtilController, :do_remote_follow)
|
|
|
|
end
|
2018-01-18 09:42:44 -07:00
|
|
|
end
|
|
|
|
|
2017-12-12 09:35:23 -07:00
|
|
|
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:authenticated_api)
|
2019-02-09 07:32:33 -07:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_write)
|
|
|
|
|
2019-09-13 00:09:35 -06:00
|
|
|
post("/change_email", UtilController, :change_email)
|
2019-02-09 07:32:33 -07:00
|
|
|
post("/change_password", UtilController, :change_password)
|
|
|
|
post("/delete_account", UtilController, :delete_account)
|
2019-03-28 05:52:09 -06:00
|
|
|
put("/notification_settings", UtilController, :update_notificaton_settings)
|
2019-03-04 05:55:11 -07:00
|
|
|
post("/disable_account", UtilController, :disable_account)
|
2019-02-09 07:32:33 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_follow)
|
|
|
|
|
|
|
|
post("/blocks_import", UtilController, :blocks_import)
|
|
|
|
post("/follow_import", UtilController, :follow_import)
|
|
|
|
end
|
2017-12-12 09:35:23 -07:00
|
|
|
end
|
|
|
|
|
2017-09-06 11:06:25 -06:00
|
|
|
scope "/oauth", Pleroma.Web.OAuth do
|
2019-04-01 05:46:50 -06:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth)
|
|
|
|
get("/authorize", OAuthController, :authorize)
|
|
|
|
end
|
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
post("/authorize", OAuthController, :create_authorization)
|
|
|
|
post("/token", OAuthController, :token_exchange)
|
2018-08-28 17:25:40 -06:00
|
|
|
post("/revoke", OAuthController, :token_revoke)
|
2019-03-20 01:35:31 -06:00
|
|
|
get("/registration_details", OAuthController, :registration_details)
|
2019-03-11 11:37:26 -06:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:browser)
|
|
|
|
|
2019-03-27 06:39:35 -06:00
|
|
|
get("/prepare_request", OAuthController, :prepare_request)
|
2019-03-11 11:37:26 -06:00
|
|
|
get("/:provider", OAuthController, :request)
|
|
|
|
get("/:provider/callback", OAuthController, :callback)
|
2019-03-20 01:35:31 -06:00
|
|
|
post("/register", OAuthController, :register)
|
2019-03-11 11:37:26 -06:00
|
|
|
end
|
2017-09-06 11:06:25 -06:00
|
|
|
end
|
|
|
|
|
2019-08-02 11:53:08 -06:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
|
|
|
scope [] do
|
2019-08-14 07:55:43 -06:00
|
|
|
pipe_through(:oauth_read)
|
2019-08-02 11:53:08 -06:00
|
|
|
get("/conversations/:id/statuses", PleromaAPIController, :conversation_statuses)
|
2019-08-12 05:58:04 -06:00
|
|
|
get("/conversations/:id", PleromaAPIController, :conversation)
|
2019-08-14 07:55:43 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_write)
|
2019-08-05 07:09:19 -06:00
|
|
|
patch("/conversations/:id", PleromaAPIController, :update_conversation)
|
2019-09-04 02:33:08 -06:00
|
|
|
post("/notifications/read", PleromaAPIController, :read_notification)
|
2019-08-02 11:53:08 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-06 11:06:25 -06:00
|
|
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:authenticated_api)
|
2017-09-06 11:06:25 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_read)
|
2018-05-26 10:03:32 -06:00
|
|
|
|
2019-02-15 09:54:37 -07:00
|
|
|
get("/accounts/verify_credentials", MastodonAPIController, :verify_credentials)
|
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/accounts/relationships", MastodonAPIController, :relationships)
|
2017-10-25 12:02:42 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/accounts/:id/lists", MastodonAPIController, :account_lists)
|
2019-04-01 17:53:25 -06:00
|
|
|
get("/accounts/:id/identity_proofs", MastodonAPIController, :empty_array)
|
2017-11-03 01:51:17 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/follow_requests", MastodonAPIController, :follow_requests)
|
|
|
|
get("/blocks", MastodonAPIController, :blocks)
|
2019-02-20 06:48:59 -07:00
|
|
|
get("/mutes", MastodonAPIController, :mutes)
|
2017-09-13 07:55:10 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/timelines/home", MastodonAPIController, :home_timeline)
|
|
|
|
get("/timelines/direct", MastodonAPIController, :dm_timeline)
|
2017-09-09 05:15:01 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/favourites", MastodonAPIController, :favourites)
|
|
|
|
get("/bookmarks", MastodonAPIController, :bookmarks)
|
2018-05-10 20:17:33 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
post("/notifications/clear", MastodonAPIController, :clear_notifications)
|
|
|
|
post("/notifications/dismiss", MastodonAPIController, :dismiss_notification)
|
|
|
|
get("/notifications", MastodonAPIController, :notifications)
|
|
|
|
get("/notifications/:id", MastodonAPIController, :get_notification)
|
2019-04-11 20:28:46 -06:00
|
|
|
delete("/notifications/destroy_multiple", MastodonAPIController, :destroy_multiple)
|
2017-09-17 05:09:49 -06:00
|
|
|
|
2019-03-28 03:39:10 -06:00
|
|
|
get("/scheduled_statuses", MastodonAPIController, :scheduled_statuses)
|
|
|
|
get("/scheduled_statuses/:id", MastodonAPIController, :show_scheduled_status)
|
|
|
|
|
2019-08-26 06:37:54 -06:00
|
|
|
get("/lists", ListController, :index)
|
|
|
|
get("/lists/:id", ListController, :show)
|
|
|
|
get("/lists/:id/accounts", ListController, :list_accounts)
|
2017-09-09 09:48:57 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/domain_blocks", MastodonAPIController, :domain_blocks)
|
2017-09-09 11:19:13 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/filters", MastodonAPIController, :get_filters)
|
2017-09-14 00:08:32 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/suggestions", MastodonAPIController, :suggestions)
|
2018-04-29 07:02:46 -06:00
|
|
|
|
2019-03-17 10:06:28 -06:00
|
|
|
get("/conversations", MastodonAPIController, :conversations)
|
2019-04-10 09:48:31 -06:00
|
|
|
post("/conversations/:id/read", MastodonAPIController, :conversation_read)
|
2019-03-17 10:06:28 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
get("/endorsements", MastodonAPIController, :empty_array)
|
|
|
|
end
|
2018-06-03 13:21:23 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_write)
|
2018-07-13 09:21:38 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
patch("/accounts/update_credentials", MastodonAPIController, :update_credentials)
|
2018-08-13 20:27:28 -06:00
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
post("/statuses", MastodonAPIController, :post_status)
|
|
|
|
delete("/statuses/:id", MastodonAPIController, :delete_status)
|
2018-09-18 03:56:46 -06:00
|
|
|
|
2019-02-17 04:07:35 -07:00
|
|
|
post("/statuses/:id/reblog", MastodonAPIController, :reblog_status)
|
|
|
|
post("/statuses/:id/unreblog", MastodonAPIController, :unreblog_status)
|
|
|
|
post("/statuses/:id/favourite", MastodonAPIController, :fav_status)
|
|
|
|
post("/statuses/:id/unfavourite", MastodonAPIController, :unfav_status)
|
|
|
|
post("/statuses/:id/pin", MastodonAPIController, :pin_status)
|
|
|
|
post("/statuses/:id/unpin", MastodonAPIController, :unpin_status)
|
|
|
|
post("/statuses/:id/bookmark", MastodonAPIController, :bookmark_status)
|
|
|
|
post("/statuses/:id/unbookmark", MastodonAPIController, :unbookmark_status)
|
|
|
|
post("/statuses/:id/mute", MastodonAPIController, :mute_conversation)
|
|
|
|
post("/statuses/:id/unmute", MastodonAPIController, :unmute_conversation)
|
2018-09-20 08:25:07 -06:00
|
|
|
|
2019-03-28 03:39:10 -06:00
|
|
|
put("/scheduled_statuses/:id", MastodonAPIController, :update_scheduled_status)
|
|
|
|
delete("/scheduled_statuses/:id", MastodonAPIController, :delete_scheduled_status)
|
|
|
|
|
2019-06-01 07:07:01 -06:00
|
|
|
post("/polls/:id/votes", MastodonAPIController, :poll_vote)
|
|
|
|
|
2019-02-09 07:32:33 -07:00
|
|
|
post("/media", MastodonAPIController, :upload)
|
|
|
|
put("/media/:id", MastodonAPIController, :update_media)
|
|
|
|
|
2019-08-26 06:37:54 -06:00
|
|
|
delete("/lists/:id", ListController, :delete)
|
|
|
|
post("/lists", ListController, :create)
|
|
|
|
put("/lists/:id", ListController, :update)
|
2019-02-09 07:32:33 -07:00
|
|
|
|
2019-08-26 06:37:54 -06:00
|
|
|
post("/lists/:id/accounts", ListController, :add_to_list)
|
|
|
|
delete("/lists/:id/accounts", ListController, :remove_from_list)
|
2019-02-09 07:32:33 -07:00
|
|
|
|
|
|
|
post("/filters", MastodonAPIController, :create_filter)
|
|
|
|
get("/filters/:id", MastodonAPIController, :get_filter)
|
|
|
|
put("/filters/:id", MastodonAPIController, :update_filter)
|
|
|
|
delete("/filters/:id", MastodonAPIController, :delete_filter)
|
2019-02-19 09:10:55 -07:00
|
|
|
|
2019-07-12 10:25:58 -06:00
|
|
|
patch("/pleroma/accounts/update_avatar", MastodonAPIController, :update_avatar)
|
|
|
|
patch("/pleroma/accounts/update_banner", MastodonAPIController, :update_banner)
|
|
|
|
patch("/pleroma/accounts/update_background", MastodonAPIController, :update_background)
|
|
|
|
|
2019-05-20 05:39:23 -06:00
|
|
|
get("/pleroma/mascot", MastodonAPIController, :get_mascot)
|
|
|
|
put("/pleroma/mascot", MastodonAPIController, :set_mascot)
|
|
|
|
|
2019-02-20 09:51:25 -07:00
|
|
|
post("/reports", MastodonAPIController, :reports)
|
2019-02-09 07:32:33 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_follow)
|
|
|
|
|
|
|
|
post("/follows", MastodonAPIController, :follow)
|
|
|
|
post("/accounts/:id/follow", MastodonAPIController, :follow)
|
|
|
|
|
|
|
|
post("/accounts/:id/unfollow", MastodonAPIController, :unfollow)
|
|
|
|
post("/accounts/:id/block", MastodonAPIController, :block)
|
|
|
|
post("/accounts/:id/unblock", MastodonAPIController, :unblock)
|
2019-02-20 06:48:59 -07:00
|
|
|
post("/accounts/:id/mute", MastodonAPIController, :mute)
|
|
|
|
post("/accounts/:id/unmute", MastodonAPIController, :unmute)
|
2019-02-09 07:32:33 -07:00
|
|
|
|
|
|
|
post("/follow_requests/:id/authorize", MastodonAPIController, :authorize_follow_request)
|
|
|
|
post("/follow_requests/:id/reject", MastodonAPIController, :reject_follow_request)
|
|
|
|
|
|
|
|
post("/domain_blocks", MastodonAPIController, :block_domain)
|
|
|
|
delete("/domain_blocks", MastodonAPIController, :unblock_domain)
|
2019-04-05 09:51:45 -06:00
|
|
|
|
|
|
|
post("/pleroma/accounts/:id/subscribe", MastodonAPIController, :subscribe)
|
|
|
|
post("/pleroma/accounts/:id/unsubscribe", MastodonAPIController, :unsubscribe)
|
2019-02-20 07:27:41 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_push)
|
2019-02-09 07:32:33 -07:00
|
|
|
|
2019-03-06 06:20:12 -07:00
|
|
|
post("/push/subscription", SubscriptionController, :create)
|
|
|
|
get("/push/subscription", SubscriptionController, :get)
|
|
|
|
put("/push/subscription", SubscriptionController, :update)
|
|
|
|
delete("/push/subscription", SubscriptionController, :delete)
|
2019-02-09 07:32:33 -07:00
|
|
|
end
|
2017-08-24 06:15:16 -06:00
|
|
|
end
|
|
|
|
|
2018-04-07 08:26:56 -06:00
|
|
|
scope "/api/web", Pleroma.Web.MastodonAPI do
|
2019-02-09 07:32:33 -07:00
|
|
|
pipe_through([:authenticated_api, :oauth_write])
|
2018-04-07 08:26:56 -06:00
|
|
|
|
|
|
|
put("/settings", MastodonAPIController, :put_settings)
|
|
|
|
end
|
|
|
|
|
2017-09-13 09:36:02 -06:00
|
|
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:api)
|
2019-02-15 09:54:37 -07:00
|
|
|
|
2019-05-13 12:35:45 -06:00
|
|
|
post("/accounts", MastodonAPIController, :account_register)
|
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/instance", MastodonAPIController, :masto_instance)
|
|
|
|
get("/instance/peers", MastodonAPIController, :peers)
|
|
|
|
post("/apps", MastodonAPIController, :create_app)
|
2019-03-26 12:42:03 -06:00
|
|
|
get("/apps/verify_credentials", MastodonAPIController, :verify_app_credentials)
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/custom_emojis", MastodonAPIController, :custom_emojis)
|
|
|
|
|
2019-01-13 16:06:55 -07:00
|
|
|
get("/statuses/:id/card", MastodonAPIController, :status_card)
|
2019-02-15 09:54:37 -07:00
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/statuses/:id/favourited_by", MastodonAPIController, :favourited_by)
|
|
|
|
get("/statuses/:id/reblogged_by", MastodonAPIController, :reblogged_by)
|
|
|
|
|
2018-06-04 09:44:08 -06:00
|
|
|
get("/trends", MastodonAPIController, :empty_array)
|
|
|
|
|
2019-06-14 05:39:57 -06:00
|
|
|
get("/accounts/search", SearchController, :account_search)
|
2019-04-18 11:44:25 -06:00
|
|
|
|
2019-07-28 14:30:10 -06:00
|
|
|
post(
|
|
|
|
"/pleroma/accounts/confirmation_resend",
|
|
|
|
MastodonAPIController,
|
|
|
|
:account_confirmation_resend
|
|
|
|
)
|
|
|
|
|
2019-02-15 09:54:37 -07:00
|
|
|
scope [] do
|
2019-05-13 09:07:11 -06:00
|
|
|
pipe_through(:oauth_read_or_public)
|
2019-02-15 09:54:37 -07:00
|
|
|
|
|
|
|
get("/timelines/public", MastodonAPIController, :public_timeline)
|
|
|
|
get("/timelines/tag/:tag", MastodonAPIController, :hashtag_timeline)
|
|
|
|
get("/timelines/list/:list_id", MastodonAPIController, :list_timeline)
|
|
|
|
|
2019-09-03 03:23:03 -06:00
|
|
|
get("/statuses", MastodonAPIController, :get_statuses)
|
2019-02-15 09:54:37 -07:00
|
|
|
get("/statuses/:id", MastodonAPIController, :get_status)
|
|
|
|
get("/statuses/:id/context", MastodonAPIController, :get_context)
|
|
|
|
|
2019-05-21 11:40:35 -06:00
|
|
|
get("/polls/:id", MastodonAPIController, :get_poll)
|
|
|
|
|
2019-02-15 09:54:37 -07:00
|
|
|
get("/accounts/:id/statuses", MastodonAPIController, :user_statuses)
|
|
|
|
get("/accounts/:id/followers", MastodonAPIController, :followers)
|
|
|
|
get("/accounts/:id/following", MastodonAPIController, :following)
|
|
|
|
get("/accounts/:id", MastodonAPIController, :user)
|
|
|
|
|
2019-06-14 05:39:57 -06:00
|
|
|
get("/search", SearchController, :search)
|
2019-04-22 20:47:43 -06:00
|
|
|
|
|
|
|
get("/pleroma/accounts/:id/favourites", MastodonAPIController, :user_favourites)
|
2019-02-15 09:54:37 -07:00
|
|
|
end
|
2017-09-13 09:36:02 -06:00
|
|
|
end
|
|
|
|
|
2018-06-13 10:21:59 -06:00
|
|
|
scope "/api/v2", Pleroma.Web.MastodonAPI do
|
2019-05-13 09:07:11 -06:00
|
|
|
pipe_through([:api, :oauth_read_or_public])
|
2019-06-14 05:39:57 -06:00
|
|
|
get("/search", SearchController, :search2)
|
2018-06-13 10:21:59 -06:00
|
|
|
end
|
|
|
|
|
2017-03-21 14:09:20 -06:00
|
|
|
scope "/api", Pleroma.Web do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:config)
|
2017-04-10 07:00:57 -06:00
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
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)
|
2019-01-23 04:40:57 -07:00
|
|
|
get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
|
2017-08-24 06:07:05 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/api", Pleroma.Web do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:api)
|
2017-04-20 04:53:53 -06:00
|
|
|
|
2018-12-20 03:41:30 -07:00
|
|
|
get(
|
|
|
|
"/account/confirm_email/:user_id/:token",
|
|
|
|
TwitterAPI.Controller,
|
|
|
|
:confirm_email,
|
|
|
|
as: :confirm_email
|
|
|
|
)
|
2018-11-14 12:33:23 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:authenticated_api)
|
2017-03-20 14:30:44 -06:00
|
|
|
|
2019-02-19 09:10:55 -07:00
|
|
|
get("/oauth_tokens", TwitterAPI.Controller, :oauth_tokens)
|
|
|
|
delete("/oauth_tokens/:id", TwitterAPI.Controller, :revoke_token)
|
2017-04-20 04:53:53 -06:00
|
|
|
|
2019-02-09 07:09:08 -07:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_read)
|
|
|
|
|
|
|
|
post("/qvitter/statuses/notifications/read", TwitterAPI.Controller, :notifications_read)
|
|
|
|
end
|
2017-03-17 10:09:58 -06:00
|
|
|
end
|
2017-04-17 05:44:41 -06:00
|
|
|
|
2019-07-17 11:34:57 -06:00
|
|
|
pipeline :ap_service_actor do
|
2019-02-20 13:45:40 -07:00
|
|
|
plug(:accepts, ["activity+json", "json"])
|
2018-08-06 02:13:05 -06:00
|
|
|
end
|
|
|
|
|
2017-04-18 10:41:51 -06:00
|
|
|
pipeline :ostatus do
|
2019-02-20 13:45:40 -07:00
|
|
|
plug(:accepts, ["html", "xml", "atom", "activity+json", "json"])
|
2017-04-18 10:41:51 -06:00
|
|
|
end
|
|
|
|
|
2018-12-10 05:25:33 -07:00
|
|
|
pipeline :oembed do
|
|
|
|
plug(:accepts, ["json", "xml"])
|
|
|
|
end
|
|
|
|
|
2017-04-20 02:16:06 -06:00
|
|
|
scope "/", Pleroma.Web do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:ostatus)
|
2017-04-18 10:41:51 -06:00
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/objects/:uuid", OStatus.OStatusController, :object)
|
|
|
|
get("/activities/:uuid", OStatus.OStatusController, :activity)
|
|
|
|
get("/notice/:id", OStatus.OStatusController, :notice)
|
2019-02-19 09:39:42 -07:00
|
|
|
get("/notice/:id/embed_player", OStatus.OStatusController, :notice_player)
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/users/:nickname/feed", OStatus.OStatusController, :feed)
|
|
|
|
get("/users/:nickname", OStatus.OStatusController, :feed_redirect)
|
2018-03-05 01:26:24 -07:00
|
|
|
|
2018-11-05 07:19:03 -07:00
|
|
|
post("/users/:nickname/salmon", OStatus.OStatusController, :salmon_incoming)
|
|
|
|
post("/push/hub/:nickname", Websub.WebsubController, :websub_subscription_request)
|
|
|
|
get("/push/subscriptions/:id", Websub.WebsubController, :websub_subscription_confirmation)
|
|
|
|
post("/push/subscriptions/:id", Websub.WebsubController, :websub_incoming)
|
2019-04-20 06:42:19 -06:00
|
|
|
|
|
|
|
get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
|
2017-04-18 10:41:51 -06:00
|
|
|
end
|
|
|
|
|
2017-12-11 02:37:22 -07:00
|
|
|
pipeline :activitypub do
|
2019-02-20 13:45:40 -07:00
|
|
|
plug(:accepts, ["activity+json", "json"])
|
2018-03-30 07:01:53 -06:00
|
|
|
plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
|
2019-07-18 09:38:45 -06:00
|
|
|
plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
|
2017-12-11 02:37:22 -07:00
|
|
|
end
|
|
|
|
|
2018-03-21 11:23:27 -06:00
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
# XXX: not really ostatus
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:ostatus)
|
2018-03-21 11:23:27 -06:00
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/users/:nickname/outbox", ActivityPubController, :outbox)
|
2019-01-11 15:34:32 -07:00
|
|
|
get("/objects/:uuid/likes", ActivityPubController, :object_likes)
|
2018-03-21 11:23:27 -06:00
|
|
|
end
|
|
|
|
|
2018-12-29 10:01:15 -07:00
|
|
|
pipeline :activitypub_client do
|
2019-02-20 13:45:40 -07:00
|
|
|
plug(:accepts, ["activity+json", "json"])
|
2018-12-29 10:01:15 -07:00
|
|
|
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])
|
|
|
|
|
2019-02-15 09:54:37 -07:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_read)
|
|
|
|
get("/api/ap/whoami", ActivityPubController, :whoami)
|
|
|
|
get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_write)
|
|
|
|
post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
|
|
|
|
end
|
2019-07-12 11:54:20 -06:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_read_or_public)
|
|
|
|
get("/users/:nickname/followers", ActivityPubController, :followers)
|
|
|
|
get("/users/:nickname/following", ActivityPubController, :following)
|
|
|
|
end
|
2018-12-29 10:01:15 -07:00
|
|
|
end
|
|
|
|
|
2019-07-20 21:52:06 -06:00
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
pipe_through(:activitypub)
|
|
|
|
post("/inbox", ActivityPubController, :inbox)
|
|
|
|
post("/users/:nickname/inbox", ActivityPubController, :inbox)
|
|
|
|
end
|
|
|
|
|
2018-11-05 07:19:03 -07:00
|
|
|
scope "/relay", Pleroma.Web.ActivityPub do
|
2019-07-17 11:34:57 -06:00
|
|
|
pipe_through(:ap_service_actor)
|
|
|
|
|
2018-11-05 07:19:03 -07:00
|
|
|
get("/", ActivityPubController, :relay)
|
2019-08-22 13:39:06 -06:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:http_signature)
|
|
|
|
post("/inbox", ActivityPubController, :inbox)
|
|
|
|
end
|
2019-08-21 21:57:55 -06:00
|
|
|
|
|
|
|
get("/following", ActivityPubController, :following, assigns: %{relay: true})
|
|
|
|
get("/followers", ActivityPubController, :followers, assigns: %{relay: true})
|
2019-07-17 11:34:57 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/internal/fetch", Pleroma.Web.ActivityPub do
|
|
|
|
pipe_through(:ap_service_actor)
|
|
|
|
|
|
|
|
get("/", ActivityPubController, :internal_fetch)
|
|
|
|
post("/inbox", ActivityPubController, :inbox)
|
2018-11-05 07:19:03 -07:00
|
|
|
end
|
2018-08-06 00:11:51 -06:00
|
|
|
|
2018-11-05 07:19:03 -07:00
|
|
|
scope "/.well-known", Pleroma.Web do
|
|
|
|
pipe_through(:well_known)
|
2017-04-17 05:44:41 -06:00
|
|
|
|
2018-11-05 07:19:03 -07:00
|
|
|
get("/host-meta", WebFinger.WebFingerController, :host_meta)
|
|
|
|
get("/webfinger", WebFinger.WebFingerController, :webfinger)
|
|
|
|
get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
|
|
|
|
end
|
2018-05-02 13:31:42 -06:00
|
|
|
|
2018-11-05 07:19:03 -07:00
|
|
|
scope "/nodeinfo", Pleroma.Web do
|
|
|
|
get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
|
2017-04-17 05:44:41 -06:00
|
|
|
end
|
2017-04-19 07:25:18 -06:00
|
|
|
|
2017-11-19 05:23:16 -07:00
|
|
|
scope "/", Pleroma.Web.MastodonAPI do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:mastodon_html)
|
2017-11-12 06:23:05 -07:00
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/web/login", MastodonAPIController, :login)
|
|
|
|
delete("/auth/sign_out", MastodonAPIController, :logout)
|
2019-02-15 09:54:37 -07:00
|
|
|
|
2019-07-16 15:44:50 -06:00
|
|
|
post("/auth/password", MastodonAPIController, :password_reset)
|
|
|
|
|
2019-02-15 09:54:37 -07:00
|
|
|
scope [] do
|
2019-07-29 10:17:22 -06:00
|
|
|
pipe_through(:oauth_read)
|
2019-02-15 09:54:37 -07:00
|
|
|
get("/web/*path", MastodonAPIController, :index)
|
|
|
|
end
|
2017-11-12 06:23:05 -07:00
|
|
|
end
|
|
|
|
|
2017-11-22 11:06:07 -07:00
|
|
|
pipeline :remote_media do
|
|
|
|
end
|
2018-03-30 07:01:53 -06:00
|
|
|
|
2017-11-22 11:06:07 -07:00
|
|
|
scope "/proxy/", Pleroma.Web.MediaProxy do
|
2018-03-30 07:01:53 -06:00
|
|
|
pipe_through(:remote_media)
|
2019-02-15 09:54:37 -07:00
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
get("/:sig/:url", MediaProxyController, :remote)
|
2018-11-13 07:58:02 -07:00
|
|
|
get("/:sig/:url/:filename", MediaProxyController, :remote)
|
2017-11-22 11:06:07 -07:00
|
|
|
end
|
|
|
|
|
2019-06-06 14:59:51 -06:00
|
|
|
if Pleroma.Config.get(:env) == :dev do
|
2018-12-11 04:59:25 -07:00
|
|
|
scope "/dev" do
|
|
|
|
pipe_through([:mailbox_preview])
|
|
|
|
|
|
|
|
forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
|
|
|
|
end
|
2017-11-22 11:06:07 -07:00
|
|
|
end
|
|
|
|
|
2019-05-17 10:21:11 -06:00
|
|
|
scope "/", Pleroma.Web.MongooseIM do
|
|
|
|
get("/user_exists", MongooseIMController, :user_exists)
|
|
|
|
get("/check_password", MongooseIMController, :check_password)
|
|
|
|
end
|
|
|
|
|
2017-04-19 07:25:18 -06:00
|
|
|
scope "/", Fallback do
|
2018-06-17 05:30:07 -06:00
|
|
|
get("/registration/:token", RedirectController, :registration_page)
|
2019-01-15 08:34:47 -07:00
|
|
|
get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
|
2019-05-20 19:40:29 -06:00
|
|
|
get("/api*path", RedirectController, :api_not_implemented)
|
2019-01-15 08:34:47 -07:00
|
|
|
get("/*path", RedirectController, :redirector)
|
2018-09-17 04:21:01 -06:00
|
|
|
|
|
|
|
options("/*path", RedirectController, :empty)
|
2017-04-19 07:25:18 -06:00
|
|
|
end
|
|
|
|
end
|