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