1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.TwitterAPI.Controller do
6 use Pleroma.Web, :controller
8 alias Pleroma.Notification
10 alias Pleroma.Web.OAuth.Token
11 alias Pleroma.Web.Plugs.EnsurePublicOrAuthenticatedPlug
12 alias Pleroma.Web.Plugs.OAuthScopesPlug
13 alias Pleroma.Web.TwitterAPI.TokenView
19 %{scopes: ["write:notifications"]} when action == :mark_notifications_as_read
24 [OAuthScopesPlug, EnsurePublicOrAuthenticatedPlug] when action == :confirm_email
27 plug(:skip_plug, OAuthScopesPlug when action in [:oauth_tokens, :revoke_token])
29 action_fallback(:errors)
31 def confirm_email(conn, %{"user_id" => uid, "token" => token}) do
32 with %User{} = user <- User.get_cached_by_id(uid),
33 true <- user.local and user.confirmation_pending and user.confirmation_token == token,
36 |> User.confirmation_changeset(need_confirmation: false)
37 |> User.update_and_set_cache() do
38 redirect(conn, to: "/")
42 def oauth_tokens(%{assigns: %{user: user}} = conn, _params) do
43 with oauth_tokens <- Token.get_user_tokens(user) do
45 |> put_view(TokenView)
46 |> render("index.json", %{tokens: oauth_tokens})
50 def revoke_token(%{assigns: %{user: user}} = conn, %{"id" => id} = _params) do
51 Token.delete_user_token(user, id)
53 json_reply(conn, 201, "")
56 defp errors(conn, {:param_cast, _}) do
59 |> json("Invalid parameters")
62 defp errors(conn, _) do
65 |> json("Something went wrong")
68 defp json_reply(conn, status, json) do
70 |> put_resp_content_type("application/json")
71 |> send_resp(status, json)
74 def mark_notifications_as_read(
75 %{assigns: %{user: user}} = conn,
76 %{"latest_id" => latest_id} = params
78 Notification.set_read_up_to(user, latest_id)
80 notifications = Notification.for_user(user, params)
83 # XXX: This is a hack because pleroma-fe still uses that API.
84 |> put_view(Pleroma.Web.MastodonAPI.NotificationView)
85 |> render("index.json", %{notifications: notifications, for: user})
88 def mark_notifications_as_read(%{assigns: %{user: _user}} = conn, _) do
89 bad_request_reply(conn, "You need to specify latest_id")
92 defp bad_request_reply(conn, error_message) do
93 json = error_json(conn, error_message)
94 json_reply(conn, 400, json)
97 defp error_json(conn, error_message) do
98 %{"error" => error_message, "request" => conn.request_path} |> Jason.encode!()