add GetStatus, GetStatusContext
This commit is contained in:
parent
b3882dbe21
commit
acb5a81b87
53
mastodon.go
53
mastodon.go
|
@ -7,7 +7,6 @@ import (
|
||||||
"net/url"
|
"net/url"
|
||||||
"path"
|
"path"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Config is a setting for access mastodon APIs.
|
// Config is a setting for access mastodon APIs.
|
||||||
|
@ -136,55 +135,3 @@ type Attachment struct {
|
||||||
PreviewURL string `json:"preview_url"`
|
PreviewURL string `json:"preview_url"`
|
||||||
TextURL string `json:"text_url"`
|
TextURL string `json:"text_url"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Status is struct to hold status.
|
|
||||||
type Status struct {
|
|
||||||
ID int64 `json:"id"`
|
|
||||||
CreatedAt time.Time `json:"created_at"`
|
|
||||||
InReplyToID interface{} `json:"in_reply_to_id"`
|
|
||||||
InReplyToAccountID interface{} `json:"in_reply_to_account_id"`
|
|
||||||
Sensitive bool `json:"sensitive"`
|
|
||||||
SpoilerText string `json:"spoiler_text"`
|
|
||||||
Visibility string `json:"visibility"`
|
|
||||||
Application Application `json:"application"`
|
|
||||||
Account Account `json:"account"`
|
|
||||||
MediaAttachments []Attachment `json:"media_attachments"`
|
|
||||||
Mentions []Mention `json:"mentions"`
|
|
||||||
Tags []Tag `json:"tags"`
|
|
||||||
URI string `json:"uri"`
|
|
||||||
Content string `json:"content"`
|
|
||||||
URL string `json:"url"`
|
|
||||||
ReblogsCount int64 `json:"reblogs_count"`
|
|
||||||
FavouritesCount int64 `json:"favourites_count"`
|
|
||||||
Reblog *Status `json:"reblog"`
|
|
||||||
Favourited interface{} `json:"favourited"`
|
|
||||||
Reblogged interface{} `json:"reblogged"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetTimelineHome return statuses from home timeline.
|
|
||||||
func (c *Client) GetTimelineHome() ([]*Status, error) {
|
|
||||||
var statuses []*Status
|
|
||||||
err := c.doAPI(http.MethodGet, "/api/v1/timelines/home", nil, &statuses)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return statuses, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// PostStatus post the toot.
|
|
||||||
func (c *Client) PostStatus(toot *Toot) (*Status, error) {
|
|
||||||
params := url.Values{}
|
|
||||||
params.Set("status", toot.Status)
|
|
||||||
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")
|
|
||||||
|
|
||||||
var status Status
|
|
||||||
err := c.doAPI(http.MethodPost, "/api/v1/statuses", params, &status)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return &status, nil
|
|
||||||
}
|
|
||||||
|
|
86
status.go
Normal file
86
status.go
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
package mastodon
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"net/http"
|
||||||
|
"net/url"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Status is struct to hold status.
|
||||||
|
type Status struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
CreatedAt time.Time `json:"created_at"`
|
||||||
|
InReplyToID interface{} `json:"in_reply_to_id"`
|
||||||
|
InReplyToAccountID interface{} `json:"in_reply_to_account_id"`
|
||||||
|
Sensitive bool `json:"sensitive"`
|
||||||
|
SpoilerText string `json:"spoiler_text"`
|
||||||
|
Visibility string `json:"visibility"`
|
||||||
|
Application Application `json:"application"`
|
||||||
|
Account Account `json:"account"`
|
||||||
|
MediaAttachments []Attachment `json:"media_attachments"`
|
||||||
|
Mentions []Mention `json:"mentions"`
|
||||||
|
Tags []Tag `json:"tags"`
|
||||||
|
URI string `json:"uri"`
|
||||||
|
Content string `json:"content"`
|
||||||
|
URL string `json:"url"`
|
||||||
|
ReblogsCount int64 `json:"reblogs_count"`
|
||||||
|
FavouritesCount int64 `json:"favourites_count"`
|
||||||
|
Reblog *Status `json:"reblog"`
|
||||||
|
Favourited interface{} `json:"favourited"`
|
||||||
|
Reblogged interface{} `json:"reblogged"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Context hold information for mastodon context.
|
||||||
|
type Context struct {
|
||||||
|
Ancestors []*Status `ancestors`
|
||||||
|
Descendants []*Status `descendants`
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetStatus return status specified by id.
|
||||||
|
func (c *Client) GetStatus(id string) (*Status, error) {
|
||||||
|
var status Status
|
||||||
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/statuses/%d", id), nil, &status)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &status, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetStatusContext return status specified by id.
|
||||||
|
func (c *Client) GetStatusContext(id string) (*Context, error) {
|
||||||
|
var context Context
|
||||||
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/statuses/%d/context", id), nil, &context)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &context, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetTimelineHome return statuses from home timeline.
|
||||||
|
func (c *Client) GetTimelineHome() ([]*Status, error) {
|
||||||
|
var statuses []*Status
|
||||||
|
err := c.doAPI(http.MethodGet, "/api/v1/timelines/home", nil, &statuses)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return statuses, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// PostStatus post the toot.
|
||||||
|
func (c *Client) PostStatus(toot *Toot) (*Status, error) {
|
||||||
|
params := url.Values{}
|
||||||
|
params.Set("status", toot.Status)
|
||||||
|
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")
|
||||||
|
|
||||||
|
var status Status
|
||||||
|
err := c.doAPI(http.MethodPost, "/api/v1/statuses", params, &status)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &status, nil
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user