forked from AkkomaGang/akkoma
test for Pleroma.Web.CommonAPI.Utils.get_by_id_or_ap_id
This commit is contained in:
parent
8980c1c769
commit
6eb33e7303
4 changed files with 41 additions and 1 deletions
|
@ -66,6 +66,16 @@ def from_integer(integer) do
|
||||||
@spec get :: binary
|
@spec get :: binary
|
||||||
def get, do: to_string(:gen_server.call(:flake, :get))
|
def get, do: to_string(:gen_server.call(:flake, :get))
|
||||||
|
|
||||||
|
# checks that ID is is valid FlakeID
|
||||||
|
#
|
||||||
|
@spec is_flake_id?(String.t()) :: boolean
|
||||||
|
def is_flake_id?(id), do: is_flake_id?(String.to_charlist(id), true)
|
||||||
|
defp is_flake_id?([c | cs], true) when c >= ?0 and c <= ?9, do: is_flake_id?(cs, true)
|
||||||
|
defp is_flake_id?([c | cs], true) when c >= ?A and c <= ?Z, do: is_flake_id?(cs, true)
|
||||||
|
defp is_flake_id?([c | cs], true) when c >= ?a and c <= ?z, do: is_flake_id?(cs, true)
|
||||||
|
defp is_flake_id?([], true), do: true
|
||||||
|
defp is_flake_id?(_, _), do: false
|
||||||
|
|
||||||
# -- Ecto.Type API
|
# -- Ecto.Type API
|
||||||
@impl Ecto.Type
|
@impl Ecto.Type
|
||||||
def type, do: :uuid
|
def type, do: :uuid
|
||||||
|
|
|
@ -24,7 +24,12 @@ defmodule Pleroma.Web.CommonAPI.Utils do
|
||||||
# This is a hack for twidere.
|
# This is a hack for twidere.
|
||||||
def get_by_id_or_ap_id(id) do
|
def get_by_id_or_ap_id(id) do
|
||||||
activity =
|
activity =
|
||||||
Activity.get_by_id_with_object(id) || Activity.get_create_by_object_ap_id_with_object(id)
|
with true <- Pleroma.FlakeId.is_flake_id?(id),
|
||||||
|
%Activity{} = activity <- Activity.get_by_id_with_object(id) do
|
||||||
|
activity
|
||||||
|
else
|
||||||
|
_ -> Activity.get_create_by_object_ap_id_with_object(id)
|
||||||
|
end
|
||||||
|
|
||||||
activity &&
|
activity &&
|
||||||
if activity.data["type"] == "Create" do
|
if activity.data["type"] == "Create" do
|
||||||
|
|
|
@ -39,4 +39,9 @@ test "ecto type behaviour" do
|
||||||
assert dump(flake_s) == {:ok, flake}
|
assert dump(flake_s) == {:ok, flake}
|
||||||
assert dump(flake) == {:ok, flake}
|
assert dump(flake) == {:ok, flake}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "is_flake_id?/1" do
|
||||||
|
assert is_flake_id?("9eoozpwTul5mjSEDRI")
|
||||||
|
refute is_flake_id?("http://example.com/activities/3ebbadd1-eb14-4e20-8118-b6f79c0c7b0b")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -360,4 +360,24 @@ test "for direct posts, a reply" do
|
||||||
assert third_user.ap_id in to
|
assert third_user.ap_id in to
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "get_by_id_or_ap_id/1" do
|
||||||
|
test "get activity by id" do
|
||||||
|
activity = insert(:note_activity)
|
||||||
|
%Pleroma.Activity{} = note = Utils.get_by_id_or_ap_id(activity.id)
|
||||||
|
assert note.id == activity.id
|
||||||
|
end
|
||||||
|
|
||||||
|
test "get activity by ap_id" do
|
||||||
|
activity = insert(:note_activity)
|
||||||
|
%Pleroma.Activity{} = note = Utils.get_by_id_or_ap_id(activity.data["object"])
|
||||||
|
assert note.id == activity.id
|
||||||
|
end
|
||||||
|
|
||||||
|
test "get activity by object when type isn't `Create` " do
|
||||||
|
activity = insert(:like_activity)
|
||||||
|
%Pleroma.Activity{} = like = Utils.get_by_id_or_ap_id(activity.id)
|
||||||
|
assert like.data["object"] == activity.data["object"]
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue