Implement MediaIDs, Visibility, Sensitive and SpoilerText in PostStatus

pull/40/head
Yeechan Lu 2017-04-23 23:54:27 +08:00
parent e2f158f83c
commit c9a6022f50
1 changed files with 15 additions and 2 deletions

View File

@ -6,6 +6,7 @@ import (
"net/http"
"net/url"
"time"
"strconv"
)
// Status is struct to hold status.
@ -173,8 +174,20 @@ func (c *Client) PostStatus(ctx context.Context, toot *Toot) (*Status, error) {
if toot.InReplyToID > 0 {
params.Set("in_reply_to_id", fmt.Sprint(toot.InReplyToID))
}
// TODO: media_ids, senstitive, spoiler_text, visibility
//params.Set("visibility", "public")
if toot.MediaIDs != nil {
for _, media := range toot.MediaIDs {
params.Add("media_ids[]", strconv.FormatInt(media, 10))
}
}
if toot.Visibility != "" {
params.Set("visibility", fmt.Sprint(toot.Visibility))
}
if toot.Sensitive {
params.Set("senstitive", "true")
}
if toot.SpoilerText != "" {
params.Set("spoiler_text", toot.SpoilerText)
}
var status Status
err := c.doAPI(ctx, http.MethodPost, "/api/v1/statuses", params, &status, nil)