2020-04-08 20:33:25 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ApiSpec.Schemas.Poll do
|
|
|
|
alias OpenApiSpex.Schema
|
2020-04-27 20:55:05 +02:00
|
|
|
alias Pleroma.Web.ApiSpec.Schemas.Emoji
|
2020-04-21 21:54:45 +02:00
|
|
|
alias Pleroma.Web.ApiSpec.Schemas.FlakeID
|
2020-04-08 20:33:25 +02:00
|
|
|
|
|
|
|
require OpenApiSpex
|
|
|
|
|
|
|
|
OpenApiSpex.schema(%{
|
|
|
|
title: "Poll",
|
2020-05-05 18:14:22 +02:00
|
|
|
description: "Represents a poll attached to a status",
|
2020-04-08 20:33:25 +02:00
|
|
|
type: :object,
|
|
|
|
properties: %{
|
2020-04-21 21:54:45 +02:00
|
|
|
id: FlakeID,
|
2020-05-05 18:14:22 +02:00
|
|
|
expires_at: %Schema{
|
|
|
|
type: :string,
|
|
|
|
format: :"date-time",
|
|
|
|
nullable: true,
|
|
|
|
description: "When the poll ends"
|
|
|
|
},
|
|
|
|
expired: %Schema{type: :boolean, description: "Is the poll currently expired?"},
|
|
|
|
multiple: %Schema{
|
|
|
|
type: :boolean,
|
|
|
|
description: "Does the poll allow multiple-choice answers?"
|
|
|
|
},
|
|
|
|
votes_count: %Schema{
|
|
|
|
type: :integer,
|
|
|
|
nullable: true,
|
|
|
|
description: "How many votes have been received. Number, or null if `multiple` is false."
|
|
|
|
},
|
|
|
|
voted: %Schema{
|
|
|
|
type: :boolean,
|
|
|
|
nullable: true,
|
|
|
|
description:
|
|
|
|
"When called with a user token, has the authorized user voted? Boolean, or null if no current user."
|
|
|
|
},
|
|
|
|
emojis: %Schema{
|
|
|
|
type: :array,
|
|
|
|
items: Emoji,
|
|
|
|
description: "Custom emoji to be used for rendering poll options."
|
|
|
|
},
|
2020-04-08 20:33:25 +02:00
|
|
|
options: %Schema{
|
|
|
|
type: :array,
|
|
|
|
items: %Schema{
|
2020-05-05 18:14:22 +02:00
|
|
|
title: "PollOption",
|
2020-04-08 20:33:25 +02:00
|
|
|
type: :object,
|
|
|
|
properties: %{
|
|
|
|
title: %Schema{type: :string},
|
|
|
|
votes_count: %Schema{type: :integer}
|
|
|
|
}
|
2020-05-05 18:14:22 +02:00
|
|
|
},
|
|
|
|
description: "Possible answers for the poll."
|
2020-04-08 20:33:25 +02:00
|
|
|
}
|
2020-05-05 18:14:22 +02:00
|
|
|
},
|
|
|
|
example: %{
|
|
|
|
id: "34830",
|
|
|
|
expires_at: "2019-12-05T04:05:08.302Z",
|
|
|
|
expired: true,
|
|
|
|
multiple: false,
|
|
|
|
votes_count: 10,
|
|
|
|
voters_count: nil,
|
|
|
|
voted: true,
|
|
|
|
own_votes: [
|
|
|
|
1
|
|
|
|
],
|
|
|
|
options: [
|
|
|
|
%{
|
|
|
|
title: "accept",
|
|
|
|
votes_count: 6
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
title: "deny",
|
|
|
|
votes_count: 4
|
|
|
|
}
|
|
|
|
],
|
|
|
|
emojis: []
|
2020-04-08 20:33:25 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|