def validate(%{"type" => type} = object, meta) when type in ~w(Add Remove) do
with {:ok, object} <-
object
- |> AddRemoveValidator.cast_and_validate()
+ |> AddRemoveValidator.cast_and_validate(meta)
|> Ecto.Changeset.apply_action(:insert) do
object = stringify_keys(object)
{:ok, object, meta}
field(:cc, ObjectValidators.Recipients, default: [])
end
- def cast_and_validate(data) do
+ def cast_and_validate(data, meta) do
data
|> cast_data()
- |> validate_data()
+ |> validate_data(meta)
end
defp cast_data(data) do
cast(%__MODULE__{}, data, __schema__(:fields))
end
- defp validate_data(changeset) do
+ defp validate_data(changeset, meta) do
changeset
|> validate_required([:id, :target, :object, :actor, :type, :to, :cc])
|> validate_inclusion(:type, ~w(Add Remove))
|> validate_actor_presence()
- |> validate_collection_belongs_to_actor()
+ |> validate_collection_belongs_to_actor(meta)
|> validate_object_presence()
end
- defp validate_collection_belongs_to_actor(changeset) do
+ defp validate_collection_belongs_to_actor(changeset, meta) do
validate_change(changeset, :target, fn :target, target ->
- if String.starts_with?(target, changeset.changes[:actor]) do
+ if target == meta[:featured_address] do
[]
else
[target: "collection doesn't belong to actor"]
end
def handle_incoming(%{"type" => type} = data, _options) when type in ~w(Add Remove) do
- with {:ok, user} <- ObjectValidator.fetch_actor(data),
+ with {:ok, %User{} = user} <- ObjectValidator.fetch_actor(data),
%Object{} <- Object.normalize(data["object"], fetch: true) do
# Mastodon sends pin/unpin objects without id, to, cc fields
data =
|> Map.put_new("to", [Pleroma.Constants.as_public()])
|> Map.put_new("cc", [user.follower_address])
- case Pipeline.common_pipeline(data, local: false) do
+ case Pipeline.common_pipeline(data,
+ local: false,
+ featured_address: user.featured_address
+ ) do
{:ok, activity, _meta} -> {:ok, activity}
error -> error
end
end
@spec pin(String.t(), User.t()) :: {:ok, Activity.t()} | {:error, term()}
- def pin(id, %User{ap_id: actor} = user) do
+ def pin(id, %User{} = user) do
with %Activity{} = activity <- create_activity_by_id(id),
- true <- activity_belongs_to_actor(activity, actor),
+ true <- activity_belongs_to_actor(activity, user.ap_id),
true <- object_type_is_allowed_for_pin(activity.object),
true <- activity_is_public(activity),
{:ok, pin_data, _} <- Builder.pin(user, activity.object),
{:ok, _pin, _} <-
- Pipeline.common_pipeline(pin_data, local: true, activity_id: id) do
+ Pipeline.common_pipeline(pin_data,
+ local: true,
+ activity_id: id,
+ featured_address: user.featured_address
+ ) do
{:ok, activity}
else
{:error, {:execute_side_effects, error}} -> error
Pipeline.common_pipeline(unpin_data,
local: true,
activity_id: activity.id,
- expires_at: activity.data["expires_at"]
+ expires_at: activity.data["expires_at"],
+ featured_address: user.featured_address
) do
{:ok, activity}
end
"owner": "https://example.com/users/{{nickname}}",
"publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5DLtwGXNZElJyxFGfcVc\nXANhaMadj/iYYQwZjOJTV9QsbtiNBeIK54PJrYuU0/0YIdrvS1iqheX5IwXRhcwa\nhm3ZyLz7XeN9st7FBni4BmZMBtMpxAuYuu5p/jbWy13qAiYOhPreCx0wrWgm/lBD\n9mkgaxIxPooBE0S4ZWEJIDIV1Vft3AWcRUyWW1vIBK0uZzs6GYshbQZB952S0yo4\nFzI1hABGHncH8UvuFauh4EZ8tY7/X5I0pGRnDOcRN1dAht5w5yTA+6r5kebiFQjP\nIzN/eCO/a9Flrj9YGW7HDNtjSOH0A31PLRGlJtJO3yK57dnf5ppyCZGfL4emShQo\ncQIDAQAB\n-----END PUBLIC KEY-----\n\n"
},
+ "featured": "https://example.com/users/{{nickname}}/collections/featured",
"summary": "your friendly neighborhood pleroma developer<br>I like cute things and distributed systems, and really hate delete and redrafts",
"tag": [],
"type": "Person",
body: user,
headers: [{"content-type", "application/activity+json"}]
}
+
+ %{method: :get, url: "https://example.com/users/lain/collections/featured"} ->
+ %Tesla.Env{
+ status: 200,
+ body:
+ "test/fixtures/users_mock/masto_featured.json"
+ |> File.read!()
+ |> String.replace("{{domain}}", "example.com")
+ |> String.replace("{{nickname}}", "lain"),
+ headers: [{"content-type", "application/activity+json"}]
+ }
end)
data = %{
body: user,
headers: [{"content-type", "application/activity+json"}]
}
+
+ %{method: :get, url: "https://example.com/users/lain/collections/featured"} ->
+ %Tesla.Env{
+ status: 200,
+ body:
+ "test/fixtures/users_mock/masto_featured.json"
+ |> File.read!()
+ |> String.replace("{{domain}}", "example.com")
+ |> String.replace("{{nickname}}", "lain"),
+ headers: [{"content-type", "application/activity+json"}]
+ }
end)
data = %{
body: object,
headers: [{"content-type", "application/activity+json"}]
}
+
+ %{method: :get, url: "https://example.com/users/lain/collections/featured"} ->
+ %Tesla.Env{
+ status: 200,
+ body:
+ "test/fixtures/users_mock/masto_featured.json"
+ |> File.read!()
+ |> String.replace("{{domain}}", "example.com")
+ |> String.replace("{{nickname}}", "lain"),
+ headers: [{"content-type", "application/activity+json"}]
+ }
end)
message = %{