Add ability to follow hashtags (#336)
[akkoma] / lib / pleroma / web / mastodon_api / controllers / scheduled_activity_controller.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.MastodonAPI.ScheduledActivityController do
6 use Pleroma.Web, :controller
7
8 import Pleroma.Web.ControllerHelper, only: [add_link_headers: 2]
9
10 alias Pleroma.ScheduledActivity
11 alias Pleroma.Web.MastodonAPI.MastodonAPI
12 alias Pleroma.Web.Plugs.OAuthScopesPlug
13
14 @oauth_read_actions [:show, :index]
15
16 plug(Pleroma.Web.ApiSpec.CastAndValidate)
17 plug(OAuthScopesPlug, %{scopes: ["read:statuses"]} when action in @oauth_read_actions)
18 plug(OAuthScopesPlug, %{scopes: ["write:statuses"]} when action not in @oauth_read_actions)
19 plug(:assign_scheduled_activity when action != :index)
20
21 action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
22
23 defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.ScheduledActivityOperation
24
25 @doc "GET /api/v1/scheduled_statuses"
26 def index(%{assigns: %{user: user}} = conn, params) do
27 params = Map.new(params, fn {key, value} -> {to_string(key), value} end)
28
29 with scheduled_activities <- MastodonAPI.get_scheduled_activities(user, params) do
30 conn
31 |> add_link_headers(scheduled_activities)
32 |> render("index.json", scheduled_activities: scheduled_activities)
33 end
34 end
35
36 @doc "GET /api/v1/scheduled_statuses/:id"
37 def show(%{assigns: %{scheduled_activity: scheduled_activity}} = conn, _params) do
38 render(conn, "show.json", scheduled_activity: scheduled_activity)
39 end
40
41 @doc "PUT /api/v1/scheduled_statuses/:id"
42 def update(%{assigns: %{scheduled_activity: scheduled_activity}, body_params: params} = conn, _) do
43 with {:ok, scheduled_activity} <- ScheduledActivity.update(scheduled_activity, params) do
44 render(conn, "show.json", scheduled_activity: scheduled_activity)
45 end
46 end
47
48 @doc "DELETE /api/v1/scheduled_statuses/:id"
49 def delete(%{assigns: %{scheduled_activity: scheduled_activity}} = conn, _params) do
50 with {:ok, scheduled_activity} <- ScheduledActivity.delete(scheduled_activity) do
51 render(conn, "show.json", scheduled_activity: scheduled_activity)
52 end
53 end
54
55 defp assign_scheduled_activity(%{assigns: %{user: user}, params: %{id: id}} = conn, _) do
56 case ScheduledActivity.get(user, id) do
57 %ScheduledActivity{} = activity -> assign(conn, :scheduled_activity, activity)
58 nil -> Pleroma.Web.MastodonAPI.FallbackController.call(conn, {:error, :not_found}) |> halt()
59 end
60 end
61 end