2020-01-26 20:34:25 +01:00
|
|
|
defmodule Mobilizon.GraphQL.Schema.ActorInterface do
|
2019-01-14 17:48:08 +01:00
|
|
|
@moduledoc """
|
|
|
|
Schema representation for Actor
|
|
|
|
"""
|
2019-01-14 17:13:17 +01:00
|
|
|
use Absinthe.Schema.Notation
|
2020-01-26 20:34:25 +01:00
|
|
|
|
2019-01-14 17:13:17 +01:00
|
|
|
alias Mobilizon.Actors.Actor
|
2020-08-27 11:53:24 +02:00
|
|
|
alias Mobilizon.GraphQL.Resolvers.Actor, as: ActorResolver
|
2020-01-26 20:34:25 +01:00
|
|
|
alias Mobilizon.GraphQL.Schema
|
2019-01-14 17:13:17 +01:00
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
import_types(Schema.Actors.FollowerType)
|
|
|
|
import_types(Schema.EventType)
|
2019-01-14 17:13:17 +01:00
|
|
|
|
|
|
|
@desc "An ActivityPub actor"
|
|
|
|
interface :actor do
|
2019-09-09 09:31:08 +02:00
|
|
|
field(:id, :id, description: "Internal ID for this actor")
|
2019-01-14 17:13:17 +01:00
|
|
|
field(:url, :string, description: "The ActivityPub actor's URL")
|
|
|
|
field(:type, :actor_type, description: "The type of Actor (Person, Group,…)")
|
|
|
|
field(:name, :string, description: "The actor's displayed name")
|
|
|
|
field(:domain, :string, description: "The actor's domain if (null if it's this instance)")
|
|
|
|
field(:local, :boolean, description: "If the actor is from this instance")
|
|
|
|
field(:summary, :string, description: "The actor's summary")
|
|
|
|
field(:preferred_username, :string, description: "The actor's preferred username")
|
|
|
|
|
|
|
|
field(:manually_approves_followers, :boolean,
|
|
|
|
description: "Whether the actors manually approves followers"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:suspended, :boolean, description: "If the actor is suspended")
|
2019-05-22 14:12:11 +02:00
|
|
|
|
|
|
|
field(:avatar, :picture, description: "The actor's avatar picture")
|
|
|
|
field(:banner, :picture, description: "The actor's banner picture")
|
2019-01-14 17:13:17 +01:00
|
|
|
|
|
|
|
# These one should have a privacy setting
|
|
|
|
field(:following, list_of(:follower), description: "List of followings")
|
|
|
|
field(:followers, list_of(:follower), description: "List of followers")
|
|
|
|
field(:followersCount, :integer, description: "Number of followers for this actor")
|
|
|
|
field(:followingCount, :integer, description: "Number of actors following this actor")
|
|
|
|
|
|
|
|
resolve_type(fn
|
|
|
|
%Actor{type: :Person}, _ ->
|
|
|
|
:person
|
|
|
|
|
|
|
|
%Actor{type: :Group}, _ ->
|
|
|
|
:group
|
2019-01-21 15:08:22 +01:00
|
|
|
|
2019-12-03 11:29:51 +01:00
|
|
|
%Actor{type: :Application}, _ ->
|
|
|
|
:application
|
|
|
|
|
2019-01-21 15:08:22 +01:00
|
|
|
_, _ ->
|
|
|
|
nil
|
2019-01-14 17:13:17 +01:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
@desc "The list of types an actor can be"
|
|
|
|
enum :actor_type do
|
|
|
|
value(:Person, description: "An ActivityPub Person")
|
|
|
|
value(:Application, description: "An ActivityPub Application")
|
|
|
|
value(:Group, description: "An ActivityPub Group")
|
|
|
|
value(:Organization, description: "An ActivityPub Organization")
|
|
|
|
value(:Service, description: "An ActivityPub Service")
|
|
|
|
end
|
2020-08-27 11:53:24 +02:00
|
|
|
|
|
|
|
object :actor_mutations do
|
|
|
|
field :suspend_profile, :deleted_object do
|
|
|
|
arg(:id, non_null(:id), description: "The profile ID to suspend")
|
|
|
|
resolve(&ActorResolver.suspend_profile/3)
|
|
|
|
end
|
|
|
|
|
|
|
|
field :unsuspend_profile, :actor do
|
|
|
|
arg(:id, non_null(:id), description: "The profile ID to unsuspend")
|
|
|
|
resolve(&ActorResolver.unsuspend_profile/3)
|
|
|
|
end
|
|
|
|
|
|
|
|
field :refresh_profile, :actor do
|
|
|
|
arg(:id, non_null(:id))
|
|
|
|
resolve(&ActorResolver.refresh_profile/3)
|
|
|
|
end
|
|
|
|
end
|
2019-01-14 17:13:17 +01:00
|
|
|
end
|