mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-01 02:57:17 +00:00
40 lines
959 B
Go
40 lines
959 B
Go
|
package mastodon
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
)
|
||
|
|
||
|
// Report hold information for mastodon report.
|
||
|
type Report struct {
|
||
|
ID int64 `json:"id"`
|
||
|
ActionTaken bool `json:"action_taken"`
|
||
|
}
|
||
|
|
||
|
// GetReports return report of the current user.
|
||
|
func (c *Client) GetReports(ctx context.Context) ([]*Report, error) {
|
||
|
var reports []*Report
|
||
|
err := c.doAPI(ctx, http.MethodGet, "/api/v1/reports", nil, &reports, nil)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return reports, nil
|
||
|
}
|
||
|
|
||
|
// Report reports the report
|
||
|
func (c *Client) Report(ctx context.Context, accountID string, ids []string, comment string) (*Report, error) {
|
||
|
params := url.Values{}
|
||
|
params.Set("account_id", string(accountID))
|
||
|
for _, id := range ids {
|
||
|
params.Add("status_ids[]", string(id))
|
||
|
}
|
||
|
params.Set("comment", comment)
|
||
|
var report Report
|
||
|
err := c.doAPI(ctx, http.MethodPost, "/api/v1/reports", params, &report, nil)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &report, nil
|
||
|
}
|