2019-09-26 03:53:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-09-26 03:53:42 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.TimelineController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
import Pleroma.Web.ControllerHelper,
|
2020-05-13 09:50:52 +00:00
|
|
|
only: [add_link_headers: 2, add_link_headers: 3]
|
2019-09-26 03:53:42 +00:00
|
|
|
|
2020-08-14 17:55:45 +00:00
|
|
|
alias Pleroma.Config
|
2019-09-26 03:53:42 +00:00
|
|
|
alias Pleroma.Pagination
|
2019-10-10 19:35:32 +00:00
|
|
|
alias Pleroma.User
|
2019-09-26 03:53:42 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2020-06-24 07:53:10 +00:00
|
|
|
alias Pleroma.Web.Plugs.EnsurePublicOrAuthenticatedPlug
|
2020-06-24 06:57:27 +00:00
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
2020-06-24 06:35:00 +00:00
|
|
|
alias Pleroma.Web.Plugs.RateLimiter
|
2019-09-26 03:53:42 +00:00
|
|
|
|
2020-05-11 11:24:59 +00:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2020-04-24 13:52:38 +00:00
|
|
|
plug(:skip_plug, EnsurePublicOrAuthenticatedPlug when action in [:public, :hashtag])
|
|
|
|
|
2020-04-01 16:49:09 +00:00
|
|
|
# TODO: Replace with a macro when there is a Phoenix release with the following commit in it:
|
2020-02-29 23:03:46 +00:00
|
|
|
# https://github.com/phoenixframework/phoenix/commit/2e8c63c01fec4dde5467dbbbf9705ff9e780735e
|
|
|
|
|
2020-02-28 14:44:59 +00:00
|
|
|
plug(RateLimiter, [name: :timeline, bucket_name: :direct_timeline] when action == :direct)
|
|
|
|
plug(RateLimiter, [name: :timeline, bucket_name: :public_timeline] when action == :public)
|
|
|
|
plug(RateLimiter, [name: :timeline, bucket_name: :home_timeline] when action == :home)
|
|
|
|
plug(RateLimiter, [name: :timeline, bucket_name: :hashtag_timeline] when action == :hashtag)
|
|
|
|
plug(RateLimiter, [name: :timeline, bucket_name: :list_timeline] when action == :list)
|
|
|
|
|
2019-10-02 17:42:40 +00:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["read:statuses"]} when action in [:home, :direct])
|
|
|
|
plug(OAuthScopesPlug, %{scopes: ["read:lists"]} when action == :list)
|
|
|
|
|
2020-04-22 15:50:25 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["read:statuses"], fallback: :proceed_unauthenticated}
|
|
|
|
when action in [:public, :hashtag]
|
|
|
|
)
|
|
|
|
|
2019-09-26 03:53:42 +00:00
|
|
|
plug(:put_view, Pleroma.Web.MastodonAPI.StatusView)
|
|
|
|
|
2020-05-11 11:24:59 +00:00
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.TimelineOperation
|
|
|
|
|
2019-09-26 03:53:42 +00:00
|
|
|
# GET /api/v1/timelines/home
|
|
|
|
def home(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
params =
|
|
|
|
params
|
2020-06-04 17:33:16 +00:00
|
|
|
|> Map.put(:type, ["Create", "Announce"])
|
|
|
|
|> Map.put(:blocking_user, user)
|
|
|
|
|> Map.put(:muting_user, user)
|
|
|
|
|> Map.put(:reply_filtering_user, user)
|
2020-06-10 10:10:09 +00:00
|
|
|
|> Map.put(:announce_filtering_user, user)
|
2020-06-04 17:33:16 +00:00
|
|
|
|> Map.put(:user, user)
|
2021-01-26 08:58:54 +00:00
|
|
|
|> Map.put(:local_only, params[:local])
|
|
|
|
|> Map.delete(:local)
|
2019-09-26 03:53:42 +00:00
|
|
|
|
|
|
|
activities =
|
2020-05-07 19:52:45 +00:00
|
|
|
[user.ap_id | User.following(user)]
|
2019-09-26 03:53:42 +00:00
|
|
|
|> ActivityPub.fetch_activities(params)
|
|
|
|
|> Enum.reverse()
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(activities)
|
2020-04-01 16:49:09 +00:00
|
|
|
|> render("index.json",
|
|
|
|
activities: activities,
|
|
|
|
for: user,
|
2020-11-16 18:23:25 +00:00
|
|
|
as: :activity,
|
|
|
|
with_muted: Map.get(params, :with_muted, false)
|
2020-04-01 16:49:09 +00:00
|
|
|
)
|
2019-09-26 03:53:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# GET /api/v1/timelines/direct
|
|
|
|
def direct(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
params =
|
|
|
|
params
|
2020-06-04 17:33:16 +00:00
|
|
|
|> Map.put(:type, "Create")
|
|
|
|
|> Map.put(:blocking_user, user)
|
|
|
|
|> Map.put(:user, user)
|
2019-09-26 03:53:42 +00:00
|
|
|
|> Map.put(:visibility, "direct")
|
|
|
|
|
|
|
|
activities =
|
|
|
|
[user.ap_id]
|
|
|
|
|> ActivityPub.fetch_activities_query(params)
|
|
|
|
|> Pagination.fetch_paginated(params)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(activities)
|
2020-04-01 16:49:09 +00:00
|
|
|
|> render("index.json",
|
|
|
|
activities: activities,
|
|
|
|
for: user,
|
2020-05-09 15:05:44 +00:00
|
|
|
as: :activity
|
2020-04-01 16:49:09 +00:00
|
|
|
)
|
2019-09-26 03:53:42 +00:00
|
|
|
end
|
|
|
|
|
2020-07-08 09:54:23 +00:00
|
|
|
defp restrict_unauthenticated?(true = _local_only) do
|
2020-08-14 17:55:45 +00:00
|
|
|
Config.restrict_unauthenticated_access?(:timelines, :local)
|
2020-07-08 09:36:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_unauthenticated?(_) do
|
2020-08-14 17:55:45 +00:00
|
|
|
Config.restrict_unauthenticated_access?(:timelines, :federated)
|
2020-07-07 17:37:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# GET /api/v1/timelines/public
|
|
|
|
def public(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
local_only = params[:local]
|
2020-03-20 10:04:37 +00:00
|
|
|
|
2020-07-07 17:37:11 +00:00
|
|
|
if is_nil(user) and restrict_unauthenticated?(local_only) do
|
|
|
|
fail_on_bad_auth(conn)
|
2020-04-22 15:50:25 +00:00
|
|
|
else
|
2020-03-20 10:04:37 +00:00
|
|
|
activities =
|
|
|
|
params
|
2020-06-04 17:33:16 +00:00
|
|
|
|> Map.put(:type, ["Create"])
|
|
|
|
|> Map.put(:local_only, local_only)
|
|
|
|
|> Map.put(:blocking_user, user)
|
|
|
|
|> Map.put(:muting_user, user)
|
|
|
|
|> Map.put(:reply_filtering_user, user)
|
2020-07-02 02:12:59 +00:00
|
|
|
|> Map.put(:instance, params[:instance])
|
2020-03-20 10:04:37 +00:00
|
|
|
|> ActivityPub.fetch_public_activities()
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(activities, %{"local" => local_only})
|
2020-04-01 16:49:09 +00:00
|
|
|
|> render("index.json",
|
|
|
|
activities: activities,
|
|
|
|
for: user,
|
2020-11-16 18:23:25 +00:00
|
|
|
as: :activity,
|
|
|
|
with_muted: Map.get(params, :with_muted, false)
|
2020-04-01 16:49:09 +00:00
|
|
|
)
|
2020-03-20 10:04:37 +00:00
|
|
|
end
|
2019-09-26 03:53:42 +00:00
|
|
|
end
|
|
|
|
|
2020-07-07 17:37:11 +00:00
|
|
|
defp fail_on_bad_auth(conn) do
|
|
|
|
render_error(conn, :unauthorized, "authorization required for timeline view")
|
|
|
|
end
|
|
|
|
|
2020-04-22 15:50:25 +00:00
|
|
|
defp hashtag_fetching(params, user, local_only) do
|
2021-03-07 08:33:21 +00:00
|
|
|
# Note: not sanitizing tag options at this stage (may be mix-cased, have duplicates etc.)
|
|
|
|
tags_any =
|
2020-06-04 17:33:16 +00:00
|
|
|
[params[:tag], params[:any]]
|
2019-09-26 03:53:42 +00:00
|
|
|
|> List.flatten()
|
2021-03-07 08:33:21 +00:00
|
|
|
|> Enum.filter(& &1)
|
|
|
|
|
|
|
|
tag_all = Map.get(params, :all, [])
|
|
|
|
tag_reject = Map.get(params, :none, [])
|
|
|
|
|
|
|
|
params
|
|
|
|
|> Map.put(:type, "Create")
|
|
|
|
|> Map.put(:local_only, local_only)
|
|
|
|
|> Map.put(:blocking_user, user)
|
|
|
|
|> Map.put(:muting_user, user)
|
|
|
|
|> Map.put(:user, user)
|
|
|
|
|> Map.put(:tag, tags_any)
|
|
|
|
|> Map.put(:tag_all, tag_all)
|
|
|
|
|> Map.put(:tag_reject, tag_reject)
|
|
|
|
|> ActivityPub.fetch_public_activities()
|
2020-01-14 16:24:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# GET /api/v1/timelines/tag/:tag
|
|
|
|
def hashtag(%{assigns: %{user: user}} = conn, params) do
|
2020-06-04 17:33:16 +00:00
|
|
|
local_only = params[:local]
|
2019-09-26 03:53:42 +00:00
|
|
|
|
2020-07-07 17:37:11 +00:00
|
|
|
if is_nil(user) and restrict_unauthenticated?(local_only) do
|
|
|
|
fail_on_bad_auth(conn)
|
|
|
|
else
|
|
|
|
activities = hashtag_fetching(params, user, local_only)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(activities, %{"local" => local_only})
|
|
|
|
|> render("index.json",
|
|
|
|
activities: activities,
|
|
|
|
for: user,
|
2020-11-16 18:23:25 +00:00
|
|
|
as: :activity,
|
|
|
|
with_muted: Map.get(params, :with_muted, false)
|
2020-07-07 17:37:11 +00:00
|
|
|
)
|
|
|
|
end
|
2019-09-26 03:53:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# GET /api/v1/timelines/list/:list_id
|
2020-05-11 11:24:59 +00:00
|
|
|
def list(%{assigns: %{user: user}} = conn, %{list_id: id} = params) do
|
2019-09-26 03:53:42 +00:00
|
|
|
with %Pleroma.List{title: _title, following: following} <- Pleroma.List.get(id, user) do
|
|
|
|
params =
|
|
|
|
params
|
2020-08-26 13:37:30 +00:00
|
|
|
|> Map.put(:type, "Create")
|
|
|
|
|> Map.put(:blocking_user, user)
|
|
|
|
|> Map.put(:user, user)
|
|
|
|
|> Map.put(:muting_user, user)
|
2021-01-26 13:55:44 +00:00
|
|
|
|> Map.put(:local_only, params[:local])
|
2019-09-26 03:53:42 +00:00
|
|
|
|
|
|
|
# we must filter the following list for the user to avoid leaking statuses the user
|
|
|
|
# does not actually have permission to see (for more info, peruse security issue #270).
|
2019-10-10 19:35:32 +00:00
|
|
|
|
|
|
|
user_following = User.following(user)
|
|
|
|
|
2019-09-26 03:53:42 +00:00
|
|
|
activities =
|
|
|
|
following
|
2019-10-10 19:35:32 +00:00
|
|
|
|> Enum.filter(fn x -> x in user_following end)
|
2019-09-26 03:53:42 +00:00
|
|
|
|> ActivityPub.fetch_activities_bounded(following, params)
|
|
|
|
|> Enum.reverse()
|
|
|
|
|
2020-04-01 16:49:09 +00:00
|
|
|
render(conn, "index.json",
|
|
|
|
activities: activities,
|
|
|
|
for: user,
|
2020-11-16 18:23:25 +00:00
|
|
|
as: :activity,
|
|
|
|
with_muted: Map.get(params, :with_muted, false)
|
2020-04-01 16:49:09 +00:00
|
|
|
)
|
2019-09-26 03:53:42 +00:00
|
|
|
else
|
|
|
|
_e -> render_error(conn, :forbidden, "Error.")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|