Moved account deletion stuff to somewhere that hopefully makes more sense
[akkoma] / lib / pleroma / web / router.ex
1 defmodule Pleroma.Web.Router do
2 use Pleroma.Web, :router
3
4 alias Pleroma.{Repo, User, Web.Router}
5
6 @instance Application.get_env(:pleroma, :instance)
7 @federating Keyword.get(@instance, :federating)
8 @public Keyword.get(@instance, :public)
9 @registrations_open Keyword.get(@instance, :registrations_open)
10
11 def user_fetcher(username) do
12 {:ok, Repo.get_by(User, %{nickname: username})}
13 end
14
15 pipeline :api do
16 plug(:accepts, ["json"])
17 plug(:fetch_session)
18 plug(Pleroma.Plugs.OAuthPlug)
19 plug(Pleroma.Plugs.AuthenticationPlug, %{fetcher: &Router.user_fetcher/1, optional: true})
20 end
21
22 pipeline :authenticated_api do
23 plug(:accepts, ["json"])
24 plug(:fetch_session)
25 plug(Pleroma.Plugs.OAuthPlug)
26 plug(Pleroma.Plugs.AuthenticationPlug, %{fetcher: &Router.user_fetcher/1})
27 end
28
29 pipeline :mastodon_html do
30 plug(:accepts, ["html"])
31 plug(:fetch_session)
32 plug(Pleroma.Plugs.OAuthPlug)
33 plug(Pleroma.Plugs.AuthenticationPlug, %{fetcher: &Router.user_fetcher/1, optional: true})
34 end
35
36 pipeline :pleroma_html do
37 plug(:accepts, ["html"])
38 plug(:fetch_session)
39 plug(Pleroma.Plugs.OAuthPlug)
40 plug(Pleroma.Plugs.AuthenticationPlug, %{fetcher: &Router.user_fetcher/1, optional: true})
41 end
42
43 pipeline :well_known do
44 plug(:accepts, ["xml", "xrd+xml", "json", "jrd+json"])
45 end
46
47 pipeline :config do
48 plug(:accepts, ["json", "xml"])
49 end
50
51 pipeline :oauth do
52 plug(:accepts, ["html", "json"])
53 end
54
55 pipeline :pleroma_api do
56 plug(:accepts, ["html", "json"])
57 end
58
59 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
60 pipe_through(:pleroma_api)
61 get("/password_reset/:token", UtilController, :show_password_reset)
62 post("/password_reset", UtilController, :password_reset)
63 get("/emoji", UtilController, :emoji)
64 end
65
66 scope "/", Pleroma.Web.TwitterAPI do
67 pipe_through(:pleroma_html)
68 get("/ostatus_subscribe", UtilController, :remote_follow)
69 post("/ostatus_subscribe", UtilController, :do_remote_follow)
70 post("/main/ostatus", UtilController, :remote_subscribe)
71 end
72
73 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
74 pipe_through(:authenticated_api)
75 post("/follow_import", UtilController, :follow_import)
76 post("/delete_account", UtilController, :delete_account)
77 end
78
79 scope "/oauth", Pleroma.Web.OAuth do
80 get("/authorize", OAuthController, :authorize)
81 post("/authorize", OAuthController, :create_authorization)
82 post("/token", OAuthController, :token_exchange)
83 end
84
85 scope "/api/v1", Pleroma.Web.MastodonAPI do
86 pipe_through(:authenticated_api)
87
88 patch("/accounts/update_credentials", MastodonAPIController, :update_credentials)
89 get("/accounts/verify_credentials", MastodonAPIController, :verify_credentials)
90 get("/accounts/relationships", MastodonAPIController, :relationships)
91 get("/accounts/search", MastodonAPIController, :account_search)
92 post("/accounts/:id/follow", MastodonAPIController, :follow)
93 post("/accounts/:id/unfollow", MastodonAPIController, :unfollow)
94 post("/accounts/:id/block", MastodonAPIController, :block)
95 post("/accounts/:id/unblock", MastodonAPIController, :unblock)
96 post("/accounts/:id/mute", MastodonAPIController, :relationship_noop)
97 post("/accounts/:id/unmute", MastodonAPIController, :relationship_noop)
98
99 post("/follows", MastodonAPIController, :follow)
100
101 get("/blocks", MastodonAPIController, :blocks)
102
103 get("/domain_blocks", MastodonAPIController, :empty_array)
104 get("/follow_requests", MastodonAPIController, :empty_array)
105 get("/mutes", MastodonAPIController, :empty_array)
106 get("/lists", MastodonAPIController, :empty_array)
107
108 get("/timelines/home", MastodonAPIController, :home_timeline)
109
110 get("/favourites", MastodonAPIController, :favourites)
111
112 post("/statuses", MastodonAPIController, :post_status)
113 delete("/statuses/:id", MastodonAPIController, :delete_status)
114
115 post("/statuses/:id/reblog", MastodonAPIController, :reblog_status)
116 post("/statuses/:id/unreblog", MastodonAPIController, :unreblog_status)
117 post("/statuses/:id/favourite", MastodonAPIController, :fav_status)
118 post("/statuses/:id/unfavourite", MastodonAPIController, :unfav_status)
119
120 post("/notifications/clear", MastodonAPIController, :clear_notifications)
121 post("/notifications/dismiss", MastodonAPIController, :dismiss_notification)
122 get("/notifications", MastodonAPIController, :notifications)
123 get("/notifications/:id", MastodonAPIController, :get_notification)
124
125 post("/media", MastodonAPIController, :upload)
126 end
127
128 scope "/api/web", Pleroma.Web.MastodonAPI do
129 pipe_through(:authenticated_api)
130
131 put("/settings", MastodonAPIController, :put_settings)
132 end
133
134 scope "/api/v1", Pleroma.Web.MastodonAPI do
135 pipe_through(:api)
136 get("/instance", MastodonAPIController, :masto_instance)
137 get("/instance/peers", MastodonAPIController, :peers)
138 post("/apps", MastodonAPIController, :create_app)
139 get("/custom_emojis", MastodonAPIController, :custom_emojis)
140
141 get("/timelines/public", MastodonAPIController, :public_timeline)
142 get("/timelines/tag/:tag", MastodonAPIController, :hashtag_timeline)
143
144 get("/statuses/:id", MastodonAPIController, :get_status)
145 get("/statuses/:id/context", MastodonAPIController, :get_context)
146 get("/statuses/:id/card", MastodonAPIController, :empty_object)
147 get("/statuses/:id/favourited_by", MastodonAPIController, :favourited_by)
148 get("/statuses/:id/reblogged_by", MastodonAPIController, :reblogged_by)
149
150 get("/accounts/:id/statuses", MastodonAPIController, :user_statuses)
151 get("/accounts/:id/followers", MastodonAPIController, :followers)
152 get("/accounts/:id/following", MastodonAPIController, :following)
153 get("/accounts/:id", MastodonAPIController, :user)
154
155 get("/search", MastodonAPIController, :search)
156 end
157
158 scope "/api", Pleroma.Web do
159 pipe_through(:config)
160
161 get("/help/test", TwitterAPI.UtilController, :help_test)
162 post("/help/test", TwitterAPI.UtilController, :help_test)
163 get("/statusnet/config", TwitterAPI.UtilController, :config)
164 get("/statusnet/version", TwitterAPI.UtilController, :version)
165 end
166
167 scope "/api", Pleroma.Web do
168 pipe_through(:api)
169
170 get("/statuses/user_timeline", TwitterAPI.Controller, :user_timeline)
171 get("/qvitter/statuses/user_timeline", TwitterAPI.Controller, :user_timeline)
172 get("/users/show", TwitterAPI.Controller, :show_user)
173
174 get("/statuses/followers", TwitterAPI.Controller, :followers)
175 get("/statuses/friends", TwitterAPI.Controller, :friends)
176 get("/statuses/show/:id", TwitterAPI.Controller, :fetch_status)
177 get("/statusnet/conversation/:id", TwitterAPI.Controller, :fetch_conversation)
178
179 if @registrations_open do
180 post("/account/register", TwitterAPI.Controller, :register)
181 end
182
183 get("/search", TwitterAPI.Controller, :search)
184 get("/statusnet/tags/timeline/:tag", TwitterAPI.Controller, :public_and_external_timeline)
185 end
186
187 scope "/api", Pleroma.Web do
188 if @public do
189 pipe_through(:api)
190 else
191 pipe_through(:authenticated_api)
192 end
193
194 get("/statuses/public_timeline", TwitterAPI.Controller, :public_timeline)
195
196 get(
197 "/statuses/public_and_external_timeline",
198 TwitterAPI.Controller,
199 :public_and_external_timeline
200 )
201
202 get("/statuses/networkpublic_timeline", TwitterAPI.Controller, :public_and_external_timeline)
203 end
204
205 scope "/api", Pleroma.Web do
206 pipe_through(:authenticated_api)
207
208 get("/account/verify_credentials", TwitterAPI.Controller, :verify_credentials)
209 post("/account/verify_credentials", TwitterAPI.Controller, :verify_credentials)
210
211 post("/account/update_profile", TwitterAPI.Controller, :update_profile)
212 post("/account/update_profile_banner", TwitterAPI.Controller, :update_banner)
213 post("/qvitter/update_background_image", TwitterAPI.Controller, :update_background)
214
215 post(
216 "/account/most_recent_notification",
217 TwitterAPI.Controller,
218 :update_most_recent_notification
219 )
220
221 get("/statuses/home_timeline", TwitterAPI.Controller, :friends_timeline)
222 get("/statuses/friends_timeline", TwitterAPI.Controller, :friends_timeline)
223 get("/statuses/mentions", TwitterAPI.Controller, :mentions_timeline)
224 get("/statuses/mentions_timeline", TwitterAPI.Controller, :mentions_timeline)
225 get("/qvitter/statuses/notifications", TwitterAPI.Controller, :notifications)
226
227 post("/statuses/update", TwitterAPI.Controller, :status_update)
228 post("/statuses/retweet/:id", TwitterAPI.Controller, :retweet)
229 post("/statuses/destroy/:id", TwitterAPI.Controller, :delete_post)
230
231 post("/friendships/create", TwitterAPI.Controller, :follow)
232 post("/friendships/destroy", TwitterAPI.Controller, :unfollow)
233 post("/blocks/create", TwitterAPI.Controller, :block)
234 post("/blocks/destroy", TwitterAPI.Controller, :unblock)
235
236 post("/statusnet/media/upload", TwitterAPI.Controller, :upload)
237 post("/media/upload", TwitterAPI.Controller, :upload_json)
238
239 post("/favorites/create/:id", TwitterAPI.Controller, :favorite)
240 post("/favorites/create", TwitterAPI.Controller, :favorite)
241 post("/favorites/destroy/:id", TwitterAPI.Controller, :unfavorite)
242
243 post("/qvitter/update_avatar", TwitterAPI.Controller, :update_avatar)
244
245 get("/friends/ids", TwitterAPI.Controller, :friends_ids)
246 get("/friendships/no_retweets/ids", TwitterAPI.Controller, :empty_array)
247
248 get("/mutes/users/ids", TwitterAPI.Controller, :empty_array)
249
250 get("/externalprofile/show", TwitterAPI.Controller, :external_profile)
251 end
252
253 pipeline :ostatus do
254 plug(:accepts, ["xml", "atom", "html", "activity+json"])
255 end
256
257 scope "/", Pleroma.Web do
258 pipe_through(:ostatus)
259
260 get("/objects/:uuid", OStatus.OStatusController, :object)
261 get("/activities/:uuid", OStatus.OStatusController, :activity)
262 get("/notice/:id", OStatus.OStatusController, :notice)
263 get("/users/:nickname/feed", OStatus.OStatusController, :feed)
264 get("/users/:nickname", OStatus.OStatusController, :feed_redirect)
265
266 if @federating do
267 post("/users/:nickname/salmon", OStatus.OStatusController, :salmon_incoming)
268 post("/push/hub/:nickname", Websub.WebsubController, :websub_subscription_request)
269 get("/push/subscriptions/:id", Websub.WebsubController, :websub_subscription_confirmation)
270 post("/push/subscriptions/:id", Websub.WebsubController, :websub_incoming)
271 end
272 end
273
274 pipeline :activitypub do
275 plug(:accepts, ["activity+json"])
276 plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
277 end
278
279 scope "/", Pleroma.Web.ActivityPub do
280 # XXX: not really ostatus
281 pipe_through(:ostatus)
282
283 get("/users/:nickname/followers", ActivityPubController, :followers)
284 get("/users/:nickname/following", ActivityPubController, :following)
285 get("/users/:nickname/outbox", ActivityPubController, :outbox)
286 end
287
288 if @federating do
289 scope "/", Pleroma.Web.ActivityPub do
290 pipe_through(:activitypub)
291 post("/users/:nickname/inbox", ActivityPubController, :inbox)
292 post("/inbox", ActivityPubController, :inbox)
293 end
294
295 scope "/.well-known", Pleroma.Web do
296 pipe_through(:well_known)
297
298 get("/host-meta", WebFinger.WebFingerController, :host_meta)
299 get("/webfinger", WebFinger.WebFingerController, :webfinger)
300 get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
301 end
302
303 scope "/nodeinfo", Pleroma.Web do
304 get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
305 end
306 end
307
308 scope "/", Pleroma.Web.MastodonAPI do
309 pipe_through(:mastodon_html)
310
311 get("/web/login", MastodonAPIController, :login)
312 post("/web/login", MastodonAPIController, :login_post)
313 get("/web/*path", MastodonAPIController, :index)
314 delete("/auth/sign_out", MastodonAPIController, :logout)
315 end
316
317 pipeline :remote_media do
318 plug(:accepts, ["html"])
319 end
320
321 scope "/proxy/", Pleroma.Web.MediaProxy do
322 pipe_through(:remote_media)
323 get("/:sig/:url", MediaProxyController, :remote)
324 end
325
326 scope "/", Fallback do
327 get("/*path", RedirectController, :redirector)
328 end
329 end
330
331 defmodule Fallback.RedirectController do
332 use Pleroma.Web, :controller
333
334 def redirector(conn, _params) do
335 if Mix.env() != :test do
336 conn
337 |> put_resp_content_type("text/html")
338 |> send_file(200, "priv/static/index.html")
339 end
340 end
341 end