go-mastodon/report.go

36 lines
750 B
Go
Raw Normal View History

2017-04-16 21:51:16 +02:00
package mastodon
2017-04-17 05:36:27 +02:00
import (
"net/http"
2017-04-19 11:09:43 +02:00
"net/url"
2017-04-17 05:36:27 +02:00
)
2017-04-16 21:51:16 +02:00
type Report struct {
ID int64 `json:"id"`
ActionTaken bool `json:"action_taken"`
}
func GetReports() ([]*Report, error) {
2017-04-17 05:39:41 +02:00
var reports []*Report
err := doAPI(http.MethodGet, "/api/v1/reports", nil, &reports, nil)
2017-04-16 21:51:16 +02:00
if err != nil {
return nil, err
}
2017-04-17 05:39:41 +02:00
return reports, nil
2017-04-16 21:51:16 +02:00
}
2022-11-21 09:29:27 +01:00
func (a *Account) Report(statuses []*Status, comment string) (*Report, error) {
2017-04-19 11:09:43 +02:00
params := url.Values{}
2022-11-21 09:29:27 +01:00
params.Set("account_id", a.GetID())
for _, status := range statuses {
params.Add("status_ids[]", status.GetID())
2017-04-19 11:09:43 +02:00
}
params.Set("comment", comment)
2017-04-16 21:51:16 +02:00
var report Report
err := doAPI(http.MethodPost, "/api/v1/reports", params, &report, nil)
2017-04-16 21:51:16 +02:00
if err != nil {
return nil, err
}
2017-04-17 05:36:27 +02:00
return &report, nil
2017-04-16 21:51:16 +02:00
}