2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-08-06 06:15:22 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.Relay do
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Object
|
|
|
|
alias Pleroma.User
|
2018-08-06 07:14:16 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
require Logger
|
2018-08-06 06:15:22 +00:00
|
|
|
|
2020-01-08 13:40:38 +00:00
|
|
|
@relay_nickname "relay"
|
|
|
|
|
2018-08-06 06:15:22 +00:00
|
|
|
def get_actor do
|
2019-10-05 20:06:31 +00:00
|
|
|
actor =
|
2019-10-30 23:26:02 +00:00
|
|
|
relay_ap_id()
|
2020-01-08 13:40:38 +00:00
|
|
|
|> User.get_or_create_service_actor_by_ap_id(@relay_nickname)
|
2019-10-05 20:06:31 +00:00
|
|
|
|
|
|
|
actor
|
2018-08-06 06:15:22 +00:00
|
|
|
end
|
2018-08-06 07:14:16 +00:00
|
|
|
|
2019-10-30 23:26:02 +00:00
|
|
|
def relay_ap_id do
|
|
|
|
"#{Pleroma.Web.Endpoint.url()}/relay"
|
|
|
|
end
|
|
|
|
|
2019-08-13 21:12:59 +00:00
|
|
|
@spec follow(String.t()) :: {:ok, Activity.t()} | {:error, any()}
|
2018-08-06 07:14:16 +00:00
|
|
|
def follow(target_instance) do
|
|
|
|
with %User{} = local_user <- get_actor(),
|
2019-03-18 13:56:59 +00:00
|
|
|
{:ok, %User{} = target_user} <- User.get_or_fetch_by_ap_id(target_instance),
|
2018-08-06 07:14:16 +00:00
|
|
|
{:ok, activity} <- ActivityPub.follow(local_user, target_user) do
|
|
|
|
Logger.info("relay: followed instance: #{target_instance}; id=#{activity.data["id"]}")
|
2018-11-10 14:31:37 +00:00
|
|
|
{:ok, activity}
|
2018-08-06 07:14:16 +00:00
|
|
|
else
|
2019-08-24 14:41:53 +00:00
|
|
|
error -> format_error(error)
|
2018-08-06 07:14:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-13 21:12:59 +00:00
|
|
|
@spec unfollow(String.t()) :: {:ok, Activity.t()} | {:error, any()}
|
2018-08-06 07:14:16 +00:00
|
|
|
def unfollow(target_instance) do
|
|
|
|
with %User{} = local_user <- get_actor(),
|
2019-03-18 13:56:59 +00:00
|
|
|
{:ok, %User{} = target_user} <- User.get_or_fetch_by_ap_id(target_instance),
|
2019-08-22 18:32:40 +00:00
|
|
|
{:ok, activity} <- ActivityPub.unfollow(local_user, target_user) do
|
|
|
|
User.unfollow(local_user, target_user)
|
2018-08-06 07:14:16 +00:00
|
|
|
Logger.info("relay: unfollowed instance: #{target_instance}: id=#{activity.data["id"]}")
|
2018-11-10 14:31:37 +00:00
|
|
|
{:ok, activity}
|
2018-08-06 07:14:16 +00:00
|
|
|
else
|
2019-08-24 14:41:53 +00:00
|
|
|
error -> format_error(error)
|
2018-08-06 07:14:16 +00:00
|
|
|
end
|
|
|
|
end
|
2018-08-06 07:43:37 +00:00
|
|
|
|
2019-08-13 21:12:59 +00:00
|
|
|
@spec publish(any()) :: {:ok, Activity.t(), Object.t()} | {:error, any()}
|
2018-08-06 08:03:10 +00:00
|
|
|
def publish(%Activity{data: %{"type" => "Create"}} = activity) do
|
2018-08-06 07:43:37 +00:00
|
|
|
with %User{} = user <- get_actor(),
|
2019-03-23 01:33:41 +00:00
|
|
|
%Object{} = object <- Object.normalize(activity) do
|
2019-01-17 23:13:54 +00:00
|
|
|
ActivityPub.announce(user, object, nil, true, false)
|
2018-08-06 07:43:37 +00:00
|
|
|
else
|
2019-08-24 14:41:53 +00:00
|
|
|
error -> format_error(error)
|
2018-08-06 07:43:37 +00:00
|
|
|
end
|
|
|
|
end
|
2018-08-06 08:03:10 +00:00
|
|
|
|
2019-08-13 21:12:59 +00:00
|
|
|
def publish(_), do: {:error, "Not implemented"}
|
2019-08-24 14:41:53 +00:00
|
|
|
|
2019-10-11 16:12:29 +00:00
|
|
|
@spec list() :: {:ok, [String.t()]} | {:error, any()}
|
|
|
|
def list do
|
2019-10-21 07:19:31 +00:00
|
|
|
with %User{} = user <- get_actor() do
|
2019-10-11 16:12:29 +00:00
|
|
|
list =
|
2019-10-21 07:19:31 +00:00
|
|
|
user
|
|
|
|
|> User.following()
|
2019-10-11 16:12:29 +00:00
|
|
|
|> Enum.map(fn entry -> URI.parse(entry).host end)
|
|
|
|
|> Enum.uniq()
|
|
|
|
|
|
|
|
{:ok, list}
|
|
|
|
else
|
|
|
|
error -> format_error(error)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-24 14:41:53 +00:00
|
|
|
defp format_error({:error, error}), do: format_error(error)
|
|
|
|
|
|
|
|
defp format_error(error) do
|
|
|
|
Logger.error("error: #{inspect(error)}")
|
|
|
|
{:error, error}
|
|
|
|
end
|
2018-08-06 06:15:22 +00:00
|
|
|
end
|