| 
									
										
										
										
											2023-03-12 16:00:57 +01: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 14:30:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | package model | 
					
						
							| 
									
										
										
										
											2021-03-11 14:30:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-22 12:17:42 +01:00
										 |  |  | import "github.com/superseriousbusiness/gotosocial/internal/language" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-31 17:49:59 +02:00
										 |  |  | // Poll represents a poll attached to a status. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // swagger:model poll | 
					
						
							| 
									
										
										
										
											2021-03-11 14:30:14 +01:00
										 |  |  | type Poll struct { | 
					
						
							| 
									
										
										
										
											2021-03-11 21:15:51 +01:00
										 |  |  | 	// The ID of the poll in the database. | 
					
						
							| 
									
										
										
										
											2021-07-31 17:49:59 +02:00
										 |  |  | 	// example: 01FBYKMD1KBMJ0W6JF1YZ3VY5D | 
					
						
							| 
									
										
										
										
											2021-03-11 21:15:51 +01:00
										 |  |  | 	ID string `json:"id"` | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// When the poll ends. (ISO 8601 Datetime). | 
					
						
							|  |  |  | 	ExpiresAt string `json:"expires_at"` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-11 21:15:51 +01:00
										 |  |  | 	// Is the poll currently expired? | 
					
						
							|  |  |  | 	Expired bool `json:"expired"` | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-11 21:15:51 +01:00
										 |  |  | 	// Does the poll allow multiple-choice answers? | 
					
						
							|  |  |  | 	Multiple bool `json:"multiple"` | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-11 21:15:51 +01:00
										 |  |  | 	// How many votes have been received. | 
					
						
							| 
									
										
										
										
											2021-03-13 17:07:05 +01: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. | 
					
						
							|  |  |  | 	VotersCount int `json:"voters_count"` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-13 17:07:05 +01:00
										 |  |  | 	// When called with a user token, has the authorized user voted? | 
					
						
							| 
									
										
										
										
											2023-11-09 13:06:37 +01:00
										 |  |  | 	// | 
					
						
							|  |  |  | 	// Omitted when no user token provided. | 
					
						
							|  |  |  | 	Voted *bool `json:"voted,omitempty"` | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-09 13:06:37 +01: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 17:07:05 +01:00
										 |  |  | 	// Possible answers for the poll. | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	Options []PollOption `json:"options"` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-13 17:07:05 +01:00
										 |  |  | 	// Custom emoji to be used for rendering poll options. | 
					
						
							|  |  |  | 	Emojis []Emoji `json:"emojis"` | 
					
						
							| 
									
										
										
										
											2021-03-11 21:15:51 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | // PollOption represents the current vote counts for different poll options. | 
					
						
							| 
									
										
										
										
											2021-07-31 17:49:59 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | // swagger:model pollOption | 
					
						
							|  |  |  | type PollOption struct { | 
					
						
							| 
									
										
										
										
											2021-03-13 17:07:05 +01:00
										 |  |  | 	// The text value of the poll option. String. | 
					
						
							|  |  |  | 	Title string `json:"title"` | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-02 19:06:44 +02:00
										 |  |  | 	// The number of received votes for this option. | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	VotesCount int `json:"votes_count"` | 
					
						
							| 
									
										
										
										
											2021-03-11 14:30:14 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-02 19:06:44 +02:00
										 |  |  | // PollRequest models a request to create a poll. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2023-11-09 13:06:37 +01:00
										 |  |  | // swagger:model pollRequest | 
					
						
							| 
									
										
										
										
											2021-03-11 14:30:14 +01:00
										 |  |  | type PollRequest struct { | 
					
						
							| 
									
										
										
										
											2021-08-02 19:06:44 +02:00
										 |  |  | 	// Array of possible answers. | 
					
						
							|  |  |  | 	// If provided, media_ids cannot be used, and poll[expires_in] must be provided. | 
					
						
							|  |  |  | 	// name: poll[options] | 
					
						
							|  |  |  | 	Options []string `form:"options" json:"options" xml:"options"` | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-02 19:06:44 +02:00
										 |  |  | 	// Duration the poll should be open, in seconds. | 
					
						
							|  |  |  | 	// If provided, media_ids cannot be used, and poll[options] must be provided. | 
					
						
							| 
									
										
										
										
											2023-11-10 17:42:48 +01:00
										 |  |  | 	ExpiresIn int `form:"expires_in" xml:"expires_in"` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// 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 19:06:44 +02:00
										 |  |  | 	// Allow multiple choices on this poll. | 
					
						
							|  |  |  | 	Multiple bool `form:"multiple" json:"multiple" xml:"multiple"` | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-02 19:06:44 +02:00
										 |  |  | 	// Hide vote counts until the poll ends. | 
					
						
							|  |  |  | 	HideTotals bool `form:"hide_totals" json:"hide_totals" xml:"hide_totals"` | 
					
						
							| 
									
										
										
										
											2021-03-11 14:30:14 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // PollVoteRequest models a request to vote in a poll. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2023-11-09 13:06:37 +01:00
										 |  |  | // swagger:ignore | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | type PollVoteRequest struct { | 
					
						
							| 
									
										
										
										
											2023-11-10 17:42:48 +01: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 12:17:42 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | // WebPollOption models a template-ready poll option entry. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // swagger:ignore | 
					
						
							|  |  |  | type WebPollOption struct { | 
					
						
							|  |  |  | 	PollOption | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-22 16:27:32 +01:00
										 |  |  | 	// ID of the parent poll. | 
					
						
							|  |  |  | 	PollID string | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-22 12:17:42 +01: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 | 
					
						
							|  |  |  | } |