2019-05-13 01:46:11 +02:00
|
|
|
package mastodon
|
|
|
|
|
2021-11-04 14:50:16 +01:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"time"
|
|
|
|
)
|
2019-05-13 01:46:11 +02:00
|
|
|
|
2022-11-13 22:14:40 +01:00
|
|
|
// Poll holds information for mastodon polls.
|
2019-05-13 01:46:11 +02:00
|
|
|
type Poll struct {
|
2021-11-04 14:50:16 +01:00
|
|
|
ID ID `json:"id"`
|
|
|
|
ExpiresAt time.Time `json:"expires_at"`
|
|
|
|
Expired bool `json:"expired"`
|
|
|
|
Multiple bool `json:"multiple"`
|
|
|
|
VotesCount int64 `json:"votes_count"`
|
|
|
|
VotersCount int64 `json:"voters_count"`
|
|
|
|
Options []PollOption `json:"options"`
|
|
|
|
Voted bool `json:"voted"`
|
|
|
|
OwnVotes []int `json:"own_votes"`
|
|
|
|
Emojis []Emoji `json:"emojis"`
|
2019-05-13 01:46:11 +02:00
|
|
|
}
|
|
|
|
|
2022-11-13 22:14:40 +01:00
|
|
|
// Poll holds information for a mastodon poll option.
|
2019-05-13 01:46:11 +02:00
|
|
|
type PollOption struct {
|
|
|
|
Title string `json:"title"`
|
|
|
|
VotesCount int64 `json:"votes_count"`
|
|
|
|
}
|
2021-11-04 14:50:16 +01:00
|
|
|
|
2022-11-13 22:14:40 +01:00
|
|
|
// GetPoll returns poll specified by id.
|
2021-11-04 14:50:16 +01:00
|
|
|
func (c *Client) GetPoll(ctx context.Context, id ID) (*Poll, error) {
|
|
|
|
var poll Poll
|
|
|
|
err := c.doAPI(ctx, http.MethodGet, fmt.Sprintf("/api/v1/polls/%s", id), nil, &poll, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &poll, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PollVote votes on a poll specified by id, choices is the Poll.Options index to vote on
|
|
|
|
func (c *Client) PollVote(ctx context.Context, id ID, choices ...int) (*Poll, error) {
|
|
|
|
params := url.Values{}
|
|
|
|
for _, c := range choices {
|
|
|
|
params.Add("choices[]", fmt.Sprintf("%d", c))
|
|
|
|
}
|
|
|
|
|
|
|
|
var poll Poll
|
|
|
|
err := c.doAPI(ctx, http.MethodPost, fmt.Sprintf("/api/v1/polls/%s/votes", url.PathEscape(string(id))), params, &poll, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &poll, nil
|
|
|
|
}
|