2020-01-26 20:34:25 +01:00
|
|
|
defmodule Mobilizon.GraphQL.Schema.ConfigType do
|
2019-03-22 10:53:38 +01:00
|
|
|
@moduledoc """
|
|
|
|
Schema representation for User
|
|
|
|
"""
|
|
|
|
use Absinthe.Schema.Notation
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
alias Mobilizon.GraphQL.Resolvers.Config
|
2019-03-22 10:53:38 +01:00
|
|
|
|
|
|
|
@desc "A config object"
|
|
|
|
object :config do
|
|
|
|
# Instance name
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:name, :string, description: "The instance's name")
|
|
|
|
field(:description, :string, description: "The instance's short description")
|
|
|
|
field(:long_description, :string, description: "The instance's long description")
|
|
|
|
field(:slogan, :string, description: "The instance's slogan")
|
|
|
|
field(:contact, :string, description: "The instance's contact details")
|
|
|
|
|
|
|
|
field(:languages, list_of(:string), description: "The instance's admins languages")
|
2022-03-28 20:02:43 +02:00
|
|
|
|
|
|
|
field(:event_categories, list_of(:event_category_option),
|
|
|
|
description: "The instance list of event categories possibilities"
|
|
|
|
) do
|
|
|
|
resolve(&Config.event_categories/3)
|
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:registrations_open, :boolean, description: "Whether the registrations are opened")
|
|
|
|
|
|
|
|
field(:registrations_allowlist, :boolean,
|
|
|
|
description: "Whether the registration are on an allowlist"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:demo_mode, :boolean, description: "Whether the demo mode is enabled")
|
|
|
|
field(:country_code, :string, description: "The country code from the IP")
|
|
|
|
field(:location, :lonlat, description: "The IP's location")
|
|
|
|
field(:geocoding, :geocoding, description: "The instance's geocoding settings")
|
|
|
|
field(:maps, :maps, description: "The instance's maps settings")
|
|
|
|
field(:anonymous, :anonymous, description: "The instance's anonymous action settings")
|
|
|
|
|
|
|
|
field(:resource_providers, list_of(:resource_provider),
|
|
|
|
description: "The instance's enabled resource providers"
|
|
|
|
)
|
|
|
|
|
2021-04-12 10:13:11 +02:00
|
|
|
field(:upload_limits, :upload_limits, description: "The configuration for upload limits")
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:timezones, list_of(:string), description: "The instance's available timezones")
|
|
|
|
field(:features, :features, description: "The instance's features")
|
2021-10-06 18:00:50 +02:00
|
|
|
field(:restrictions, :restrictions, description: "The instance's restrictions")
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:version, :string, description: "The instance's version")
|
|
|
|
field(:federating, :boolean, description: "Whether this instance is federation")
|
2019-12-20 13:04:34 +01:00
|
|
|
|
|
|
|
field(:terms, :terms, description: "The instance's terms") do
|
2020-11-19 17:06:28 +01:00
|
|
|
arg(:locale, :string,
|
|
|
|
default_value: "en",
|
|
|
|
description:
|
|
|
|
"The user's locale. The terms will be translated in their language, if available."
|
|
|
|
)
|
|
|
|
|
2019-12-20 13:04:34 +01:00
|
|
|
resolve(&Config.terms/3)
|
|
|
|
end
|
2020-06-15 11:01:49 +02:00
|
|
|
|
2020-06-19 19:27:10 +02:00
|
|
|
field(:privacy, :privacy, description: "The instance's privacy policy") do
|
2020-11-19 17:06:28 +01:00
|
|
|
arg(:locale, :string,
|
|
|
|
default_value: "en",
|
|
|
|
description:
|
|
|
|
"The user's locale. The privacy policy will be translated in their language, if available."
|
|
|
|
)
|
|
|
|
|
2020-06-19 19:27:10 +02:00
|
|
|
resolve(&Config.privacy/3)
|
|
|
|
end
|
|
|
|
|
2020-06-15 11:01:49 +02:00
|
|
|
field(:rules, :string, description: "The instance's rules")
|
2020-11-19 17:06:28 +01:00
|
|
|
|
2020-06-27 19:12:45 +02:00
|
|
|
field(:auth, :auth, description: "The instance auth methods")
|
2021-04-19 12:40:51 +02:00
|
|
|
field(:instance_feeds, :instance_feeds, description: "The instance's feed settings")
|
2021-05-06 18:39:59 +02:00
|
|
|
field(:web_push, :web_push, description: "Web Push settings for the instance")
|
2021-10-04 18:59:41 +02:00
|
|
|
|
|
|
|
field(:export_formats, :export_formats, description: "The instance list of export formats")
|
2021-12-16 16:48:50 +01:00
|
|
|
|
|
|
|
field(:analytics, list_of(:analytics),
|
|
|
|
description: "Configuration for diverse analytics services"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
The instance's terms configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :terms do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:url, :string, description: "The instance's terms URL.")
|
|
|
|
field(:type, :instance_terms_type, description: "The instance's terms type")
|
|
|
|
field(:body_html, :string, description: "The instance's terms body text")
|
2019-11-08 19:37:14 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
The instance's privacy policy configuration
|
|
|
|
"""
|
2020-06-19 19:27:10 +02:00
|
|
|
object :privacy do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:url, :string, description: "The instance's privacy policy URL")
|
|
|
|
field(:type, :instance_privacy_type, description: "The instance's privacy policy type")
|
|
|
|
field(:body_html, :string, description: "The instance's privacy policy body text")
|
2020-06-19 19:27:10 +02:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Geographic coordinates
|
|
|
|
"""
|
2019-11-08 19:37:14 +01:00
|
|
|
object :lonlat do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:longitude, :float, description: "The coordinates longitude")
|
|
|
|
field(:latitude, :float, description: "The coordinates latitude")
|
2020-06-09 15:20:07 +02:00
|
|
|
# field(:accuracy_radius, :integer)
|
2019-03-22 10:53:38 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance geocoding configuration
|
|
|
|
"""
|
2019-11-20 13:49:57 +01:00
|
|
|
object :geocoding do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:autocomplete, :boolean,
|
|
|
|
description: "Whether autocomplete in address fields can be enabled"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:provider, :string, description: "The geocoding provider")
|
2019-11-20 13:49:57 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance maps configuration
|
|
|
|
"""
|
2019-11-20 13:49:57 +01:00
|
|
|
object :maps do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:tiles, :tiles, description: "The instance's maps tiles configuration")
|
2020-12-17 11:26:25 +01:00
|
|
|
field(:routing, :routing, description: "The instance's maps routing configuration")
|
2019-11-20 13:49:57 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
2020-12-17 11:26:25 +01:00
|
|
|
Instance map tiles configuration
|
2020-11-19 17:06:28 +01:00
|
|
|
"""
|
2019-11-20 13:49:57 +01:00
|
|
|
object :tiles do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:endpoint, :string, description: "The instance's tiles endpoint")
|
|
|
|
field(:attribution, :string, description: "The instance's tiles attribution text")
|
2019-11-20 13:49:57 +01:00
|
|
|
end
|
|
|
|
|
2020-12-17 11:26:25 +01:00
|
|
|
@desc """
|
|
|
|
Instance map routing configuration
|
|
|
|
"""
|
|
|
|
object :routing do
|
|
|
|
field(:type, :routing_type, description: "The instance's routing type")
|
|
|
|
end
|
|
|
|
|
|
|
|
enum :routing_type do
|
|
|
|
value(:openstreetmap, description: "Redirect to openstreetmap.org's direction endpoint")
|
|
|
|
value(:google_maps, description: "Redirect to Google Maps's direction endpoint")
|
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:participation, :anonymous_participation,
|
|
|
|
description: "The instance's anonymous participation settings"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:event_creation, :anonymous_event_creation,
|
|
|
|
description: "The instance's anonymous event creation settings"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:reports, :anonymous_reports, description: "The instance's anonymous reports setting")
|
|
|
|
|
|
|
|
field(:actor_id, :id,
|
|
|
|
description: "The actor ID that should be used to perform anonymous actions"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous participation configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous_participation do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:allowed, :boolean, description: "Whether anonymous participations are allowed")
|
|
|
|
|
|
|
|
field(:validation, :anonymous_participation_validation,
|
|
|
|
description: "The ways to validate anonymous participations"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous participation validation configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous_participation_validation do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:email, :anonymous_participation_validation_email,
|
|
|
|
description: "The policy to validate anonymous participations by email"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:captcha, :anonymous_participation_validation_captcha,
|
|
|
|
description: "The policy to validate anonymous participations by captcha"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous participation with validation by email configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous_participation_validation_email do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:enabled, :boolean,
|
|
|
|
description: "Whether anonymous participation validation by email is enabled"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:confirmation_required, :boolean,
|
|
|
|
description: "Whether anonymous participation validation by email is required"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous participation with validation by captcha configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous_participation_validation_captcha do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:enabled, :boolean,
|
|
|
|
description: "Whether anonymous participation validation by captcha is enabled"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous event creation configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous_event_creation do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:allowed, :boolean, description: "Whether anonymous event creation is enabled")
|
|
|
|
|
|
|
|
field(:validation, :anonymous_event_creation_validation,
|
|
|
|
description: "The methods to validate events created anonymously"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous event creation validation configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous_event_creation_validation do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:email, :anonymous_event_creation_validation_email,
|
|
|
|
description: "The policy to validate anonymous event creations by email"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:captcha, :anonymous_event_creation_validation_captcha,
|
|
|
|
description: "The policy to validate anonymous event creations by captcha"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous event creation email validation configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous_event_creation_validation_email do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:enabled, :boolean,
|
|
|
|
description: "Whether anonymous event creation with email validation is enabled"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:confirmation_required, :boolean,
|
|
|
|
description: "Whether anonymous event creation with email validation is required"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous event creation captcha validation configuration
|
|
|
|
"""
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous_event_creation_validation_captcha do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:enabled, :boolean,
|
|
|
|
description: "Whether anonymous event creation with validation by captcha is enabled"
|
|
|
|
)
|
2019-12-20 13:04:34 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
Instance anonymous reports
|
|
|
|
"""
|
2020-06-09 14:07:49 +02:00
|
|
|
object :anonymous_reports do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:allowed, :boolean, description: "Whether anonymous reports are allowed")
|
2020-06-09 14:07:49 +02:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
A resource provider details
|
|
|
|
"""
|
2020-02-18 08:57:00 +01:00
|
|
|
object :resource_provider do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:type, :string, description: "The resource provider's type")
|
|
|
|
field(:endpoint, :string, description: "The resource provider's endpoint")
|
|
|
|
field(:software, :string, description: "The resource provider's software")
|
2020-02-18 08:57:00 +01:00
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
The instance's features
|
|
|
|
"""
|
2020-06-08 16:47:57 +02:00
|
|
|
object :features do
|
2020-11-19 17:06:28 +01:00
|
|
|
field(:groups, :boolean, description: "Whether groups are activated on this instance")
|
|
|
|
|
|
|
|
field(:event_creation, :boolean,
|
|
|
|
description: "Whether event creation is allowed on this instance"
|
|
|
|
)
|
2020-06-08 16:47:57 +02:00
|
|
|
end
|
|
|
|
|
2021-10-06 18:00:50 +02:00
|
|
|
@desc """
|
|
|
|
The instance's restrictions
|
|
|
|
"""
|
|
|
|
object :restrictions do
|
|
|
|
field(:only_admin_can_create_groups, :boolean,
|
|
|
|
description: "Whether groups creation is allowed only for admin, not for all users"
|
|
|
|
)
|
|
|
|
|
|
|
|
field(:only_groups_can_create_events, :boolean,
|
|
|
|
description: "Whether events creation is allowed only for groups, not for persons"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
The instance's auth configuration
|
|
|
|
"""
|
2020-06-27 19:12:45 +02:00
|
|
|
object :auth do
|
|
|
|
field(:ldap, :boolean, description: "Whether or not LDAP auth is enabled")
|
|
|
|
field(:oauth_providers, list_of(:oauth_provider), description: "List of oauth providers")
|
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
An oAuth Provider
|
|
|
|
"""
|
2020-06-27 19:12:45 +02:00
|
|
|
object :oauth_provider do
|
|
|
|
field(:id, :string, description: "The provider ID")
|
|
|
|
field(:label, :string, description: "The label for the auth provider")
|
|
|
|
end
|
|
|
|
|
2021-04-12 10:13:11 +02:00
|
|
|
@desc """
|
|
|
|
An upload limits configuration
|
|
|
|
"""
|
|
|
|
object :upload_limits do
|
|
|
|
field(:default, :integer, description: "The default limitation, in bytes")
|
|
|
|
field(:avatar, :integer, description: "The avatar limitation, in bytes")
|
|
|
|
field(:banner, :integer, description: "The banner limitation, in bytes")
|
|
|
|
end
|
|
|
|
|
2021-04-19 12:40:51 +02:00
|
|
|
object :instance_feeds do
|
|
|
|
field(:enabled, :boolean, description: "Whether the instance-wide feeds are enabled")
|
|
|
|
end
|
|
|
|
|
2021-05-06 18:39:59 +02:00
|
|
|
object :web_push do
|
|
|
|
field(:enabled, :boolean, description: "Whether the WebPush feature is enabled")
|
|
|
|
field(:public_key, :string, description: "The server's public WebPush VAPID key")
|
|
|
|
end
|
|
|
|
|
2021-12-16 16:48:50 +01:00
|
|
|
object :analytics do
|
|
|
|
field(:id, :string, description: "ID of the analytics service")
|
|
|
|
field(:enabled, :boolean, description: "Whether the service is activated or not")
|
|
|
|
|
|
|
|
field(:configuration, list_of(:analytics_configuration),
|
|
|
|
description: "A list of key-values configuration"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
enum :analytics_configuration_type do
|
|
|
|
value(:string, description: "A string")
|
|
|
|
value(:integer, description: "An integer")
|
|
|
|
value(:boolean, description: "A boolean")
|
|
|
|
value(:float, description: "A float")
|
|
|
|
end
|
|
|
|
|
|
|
|
object :analytics_configuration do
|
|
|
|
field(:key, :string, description: "The key for the analytics configuration element")
|
|
|
|
field(:value, :string, description: "The value for the analytics configuration element")
|
|
|
|
field(:type, :analytics_configuration_type, description: "The analytics configuration type")
|
|
|
|
end
|
|
|
|
|
2021-10-04 18:59:41 +02:00
|
|
|
@desc """
|
|
|
|
Export formats configuration
|
|
|
|
"""
|
|
|
|
object :export_formats do
|
|
|
|
field(:event_participants, list_of(:string),
|
|
|
|
description: "The list of formats the event participants can be exported to"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2022-03-28 20:02:43 +02:00
|
|
|
@desc """
|
|
|
|
Event categories list configuration
|
|
|
|
"""
|
|
|
|
object :event_category_option do
|
|
|
|
field(:id, :string, description: "The ID of the event category")
|
|
|
|
field(:label, :string, description: "The translated name of the event category")
|
|
|
|
end
|
|
|
|
|
2019-03-22 10:53:38 +01:00
|
|
|
object :config_queries do
|
|
|
|
@desc "Get the instance config"
|
|
|
|
field :config, :config do
|
|
|
|
resolve(&Config.get_config/3)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|