go-mastodon/report.go

36 lines
743 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
}
func ReportAccount(accountID ID, ids []ID, comment string) (*Report, error) {
2017-04-19 11:09:43 +02:00
params := url.Values{}
2017-10-25 08:22:17 +02:00
params.Set("account_id", string(accountID))
2017-04-19 11:09:43 +02:00
for _, id := range ids {
2017-10-25 08:22:17 +02:00
params.Add("status_ids[]", string(id))
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
}