aboutsummaryrefslogtreecommitdiff
path: root/mastodon/poll.go
blob: cd874a7d4140cb0872d98f327e6129e434157df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package mastodon

import (
	"context"
	"fmt"
	"net/http"
	"net/url"
	"time"
)

type Poll struct {
	ID          string       `json:"id"`
	ExpiresAt   *time.Time    `json:"expires_at"`
	Expired     bool         `json:"expired"`
	Multiple    bool         `json:"multiple"`
	VotesCount  int64        `json:"votes_count"`
	Voted       bool         `json:"voted"`
	Emojis      []Emoji      `json:"emojis"`
	Options     []PollOption `json:"options"`
}

// Poll hold information for a mastodon poll option.
type PollOption struct {
	Title      string `json:"title"`
	VotesCount int64  `json:"votes_count"`
}

// Vote submits a vote with given choices to the poll specified by id.
func (c *Client) Vote(ctx context.Context, id string, choices []string) (*Poll, error) {
	var poll Poll
	params := make(url.Values)
	params["choices[]"] = choices
	err := c.doAPI(ctx, http.MethodPost, fmt.Sprintf("/api/v1/polls/%s/votes", id), params, &poll, nil)
	if err != nil {
		return nil, err
	}
	return &poll, nil
}