2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-03-11 13:30:14 +00:00
|
|
|
|
2021-05-08 12:25:55 +00:00
|
|
|
package model
|
2021-03-11 13:30:14 +00:00
|
|
|
|
2023-11-22 11:17:42 +00:00
|
|
|
import "github.com/superseriousbusiness/gotosocial/internal/language"
|
|
|
|
|
2021-07-31 15:49:59 +00:00
|
|
|
// Poll represents a poll attached to a status.
|
|
|
|
//
|
|
|
|
// swagger:model poll
|
2021-03-11 13:30:14 +00:00
|
|
|
type Poll struct {
|
2021-03-11 20:15:51 +00:00
|
|
|
// The ID of the poll in the database.
|
2021-07-31 15:49:59 +00:00
|
|
|
// example: 01FBYKMD1KBMJ0W6JF1YZ3VY5D
|
2021-03-11 20:15:51 +00:00
|
|
|
ID string `json:"id"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
|
|
|
// When the poll ends. (ISO 8601 Datetime).
|
2023-12-12 13:47:07 +00:00
|
|
|
ExpiresAt *string `json:"expires_at"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-03-11 20:15:51 +00:00
|
|
|
// Is the poll currently expired?
|
|
|
|
Expired bool `json:"expired"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-03-11 20:15:51 +00:00
|
|
|
// Does the poll allow multiple-choice answers?
|
|
|
|
Multiple bool `json:"multiple"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-03-11 20:15:51 +00:00
|
|
|
// How many votes have been received.
|
2021-03-13 16:07:05 +00:00
|
|
|
VotesCount int `json:"votes_count"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
|
|
|
// How many unique accounts have voted on a multiple-choice poll.
|
2023-12-12 13:47:07 +00:00
|
|
|
VotersCount *int `json:"voters_count"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-03-13 16:07:05 +00:00
|
|
|
// When called with a user token, has the authorized user voted?
|
2023-11-09 12:06:37 +00:00
|
|
|
//
|
|
|
|
// Omitted when no user token provided.
|
|
|
|
Voted *bool `json:"voted,omitempty"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2023-11-09 12:06:37 +00:00
|
|
|
// When called with a user token, which options has the authorized
|
|
|
|
// user chosen? Contains an array of index values for options.
|
|
|
|
//
|
|
|
|
// Omitted when no user token provided.
|
|
|
|
OwnVotes *[]int `json:"own_votes,omitempty"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-03-13 16:07:05 +00:00
|
|
|
// Possible answers for the poll.
|
2023-11-08 14:32:17 +00:00
|
|
|
Options []PollOption `json:"options"`
|
|
|
|
|
2021-03-13 16:07:05 +00:00
|
|
|
// Custom emoji to be used for rendering poll options.
|
|
|
|
Emojis []Emoji `json:"emojis"`
|
2021-03-11 20:15:51 +00:00
|
|
|
}
|
|
|
|
|
2023-11-08 14:32:17 +00:00
|
|
|
// PollOption represents the current vote counts for different poll options.
|
2021-07-31 15:49:59 +00:00
|
|
|
//
|
2023-11-08 14:32:17 +00:00
|
|
|
// swagger:model pollOption
|
|
|
|
type PollOption struct {
|
2021-03-13 16:07:05 +00:00
|
|
|
// The text value of the poll option. String.
|
|
|
|
Title string `json:"title"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-08-02 17:06:44 +00:00
|
|
|
// The number of received votes for this option.
|
2023-12-12 13:47:07 +00:00
|
|
|
VotesCount *int `json:"votes_count"`
|
2021-03-11 13:30:14 +00:00
|
|
|
}
|
|
|
|
|
2021-08-02 17:06:44 +00:00
|
|
|
// PollRequest models a request to create a poll.
|
|
|
|
//
|
2024-03-06 17:05:45 +00:00
|
|
|
// swagger:ignore
|
2021-03-11 13:30:14 +00:00
|
|
|
type PollRequest struct {
|
2021-08-02 17:06:44 +00:00
|
|
|
// Array of possible answers.
|
|
|
|
// If provided, media_ids cannot be used, and poll[expires_in] must be provided.
|
|
|
|
// name: poll[options]
|
2024-03-06 17:05:45 +00:00
|
|
|
Options []string `form:"poll[options][]" json:"options" xml:"options"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-08-02 17:06:44 +00:00
|
|
|
// Duration the poll should be open, in seconds.
|
|
|
|
// If provided, media_ids cannot be used, and poll[options] must be provided.
|
2024-03-06 17:05:45 +00:00
|
|
|
ExpiresIn int `form:"poll[expires_in]" xml:"expires_in"`
|
2023-11-10 16:42:48 +00:00
|
|
|
|
|
|
|
// Duration the poll should be open, in seconds.
|
|
|
|
// If provided, media_ids cannot be used, and poll[options] must be provided.
|
|
|
|
ExpiresInI interface{} `json:"expires_in"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-08-02 17:06:44 +00:00
|
|
|
// Allow multiple choices on this poll.
|
2024-03-06 17:05:45 +00:00
|
|
|
Multiple bool `form:"poll[multiple]" json:"multiple" xml:"multiple"`
|
2023-11-08 14:32:17 +00:00
|
|
|
|
2021-08-02 17:06:44 +00:00
|
|
|
// Hide vote counts until the poll ends.
|
2024-03-06 17:05:45 +00:00
|
|
|
HideTotals bool `form:"poll[hide_totals]" json:"hide_totals" xml:"hide_totals"`
|
2021-03-11 13:30:14 +00:00
|
|
|
}
|
2023-11-08 14:32:17 +00:00
|
|
|
|
|
|
|
// PollVoteRequest models a request to vote in a poll.
|
|
|
|
//
|
2023-11-09 12:06:37 +00:00
|
|
|
// swagger:ignore
|
2023-11-08 14:32:17 +00:00
|
|
|
type PollVoteRequest struct {
|
2023-11-10 16:42:48 +00:00
|
|
|
// Choices contains poll vote choice indices.
|
|
|
|
Choices []int `form:"choices[]" xml:"choices"`
|
|
|
|
|
|
|
|
// ChoicesI contains poll vote choice
|
|
|
|
// indices. Can be strings or integers.
|
|
|
|
ChoicesI []interface{} `json:"choices"`
|
2023-11-08 14:32:17 +00:00
|
|
|
}
|
2023-11-22 11:17:42 +00:00
|
|
|
|
|
|
|
// WebPollOption models a template-ready poll option entry.
|
|
|
|
//
|
|
|
|
// swagger:ignore
|
|
|
|
type WebPollOption struct {
|
|
|
|
PollOption
|
|
|
|
|
2023-11-22 15:27:32 +00:00
|
|
|
// ID of the parent poll.
|
|
|
|
PollID string
|
|
|
|
|
2023-11-22 11:17:42 +00:00
|
|
|
// Emojis contained on parent poll.
|
|
|
|
Emojis []Emoji
|
|
|
|
|
|
|
|
// LanguageTag of parent status.
|
|
|
|
LanguageTag *language.Language
|
|
|
|
|
|
|
|
// Share of total votes as a percentage.
|
|
|
|
VoteShare float32
|
|
|
|
|
|
|
|
// String-formatted version of VoteShare.
|
|
|
|
VoteShareStr string
|
|
|
|
}
|