2017-04-14 17:22:44 +02:00
|
|
|
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`
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:25:35 +02:00
|
|
|
// Card hold information for mastodon card.
|
|
|
|
type Card struct {
|
|
|
|
URL string `json:"url"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Image string `json:"image"`
|
|
|
|
}
|
|
|
|
|
2017-04-14 20:28:50 +02:00
|
|
|
// GetFavourites return the favorite list of the current user.
|
|
|
|
func (c *Client) GetFavourites() ([]*Status, error) {
|
|
|
|
var statuses []*Status
|
|
|
|
err := c.doAPI(http.MethodGet, "/api/v1/favourites", nil, &statuses)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return statuses, nil
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:22:44 +02:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:25:35 +02:00
|
|
|
// GetStatusCard return status specified by id.
|
|
|
|
func (c *Client) GetStatusCard(id string) (*Card, error) {
|
|
|
|
var card Card
|
|
|
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/statuses/%d/card", id), nil, &card)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &card, nil
|
|
|
|
}
|
|
|
|
|
2017-04-16 06:45:59 +02:00
|
|
|
// GetRebloggedBy returns the account list of the user who reblogged the toot of id.
|
2017-04-16 06:11:56 +02:00
|
|
|
func (c *Client) GetRebloggedBy(id int64) ([]*Account, error) {
|
|
|
|
var accounts []*Account
|
|
|
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/statuses/%d/reblogged_by", id), nil, &accounts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return accounts, nil
|
|
|
|
}
|
|
|
|
|
2017-04-16 06:45:59 +02:00
|
|
|
// GetFavouritedBy returns the account list of the user who liked the toot of id.
|
|
|
|
func (c *Client) GetFavouritedBy(id int64) ([]*Account, error) {
|
|
|
|
var accounts []*Account
|
|
|
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/statuses/%d/favourited_by", id), nil, &accounts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return accounts, nil
|
|
|
|
}
|
|
|
|
|
2017-04-16 08:04:59 +02:00
|
|
|
// Reblog is reblog the toot of id and return status of reblog.
|
2017-04-16 07:53:15 +02:00
|
|
|
func (c *Client) Reblog(id int64) (*Status, error) {
|
|
|
|
var status Status
|
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/statuses/%d/reblog", id), nil, &status)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &status, nil
|
|
|
|
}
|
|
|
|
|
2017-04-16 08:04:59 +02:00
|
|
|
// Unreblog is unreblog the toot of id and return status of the original toot.
|
2017-04-16 07:53:15 +02:00
|
|
|
func (c *Client) Unreblog(id int64) (*Status, error) {
|
|
|
|
var status Status
|
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/statuses/%d/unreblog", id), nil, &status)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &status, nil
|
|
|
|
}
|
|
|
|
|
2017-04-16 08:32:48 +02:00
|
|
|
// Favourite is favourite the toot of id and return status of the favourite toot.
|
|
|
|
func (c *Client) Favourite(id int64) (*Status, error) {
|
|
|
|
var status Status
|
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/statuses/%d/favourite", id), nil, &status)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &status, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unfavourite is unfavourite the toot of id and return status of the unfavourite toot.
|
|
|
|
func (c *Client) Unfavourite(id int64) (*Status, error) {
|
|
|
|
var status Status
|
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/statuses/%d/unfavourite", id), nil, &status)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &status, nil
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:22:44 +02:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2017-04-15 14:02:55 +02:00
|
|
|
// GetTimelineHashtag return statuses from tagged timeline.
|
|
|
|
func (c *Client) GetTimelineHashtag(tag string) ([]*Status, error) {
|
|
|
|
var statuses []*Status
|
|
|
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/timelines/tag/%s", (&url.URL{Path: tag}).EscapedPath()), nil, &statuses)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return statuses, nil
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:22:44 +02:00
|
|
|
// 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
|
|
|
|
}
|
2017-04-15 14:07:11 +02:00
|
|
|
|
|
|
|
// DeleteStatus delete the toot.
|
|
|
|
func (c *Client) DeleteStatus(id int64) error {
|
|
|
|
return c.doAPI(http.MethodDelete, fmt.Sprintf("/api/v1/statuses/%d", id), nil, nil)
|
|
|
|
}
|
2017-04-15 16:21:16 +02:00
|
|
|
|
|
|
|
// Search search content with query.
|
|
|
|
func (c *Client) Search(q string, resolve bool) (*Results, error) {
|
|
|
|
params := url.Values{}
|
|
|
|
params.Set("q", q)
|
|
|
|
params.Set("resolve", fmt.Sprint(resolve))
|
|
|
|
var results Results
|
|
|
|
err := c.doAPI(http.MethodGet, "/api/v1/search", params, &results)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &results, nil
|
|
|
|
}
|