2017-04-14 16:37:29 +02:00
|
|
|
package mastodon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-04-14 16:56:07 +02:00
|
|
|
"net/http"
|
2017-04-14 16:37:29 +02:00
|
|
|
"net/url"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Account hold information for mastodon account.
|
|
|
|
type Account struct {
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
Acct string `json:"acct"`
|
|
|
|
DisplayName string `json:"display_name"`
|
|
|
|
Locked bool `json:"locked"`
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
FollowersCount int64 `json:"followers_count"`
|
|
|
|
FollowingCount int64 `json:"following_count"`
|
|
|
|
StatusesCount int64 `json:"statuses_count"`
|
|
|
|
Note string `json:"note"`
|
|
|
|
URL string `json:"url"`
|
|
|
|
Avatar string `json:"avatar"`
|
|
|
|
AvatarStatic string `json:"avatar_static"`
|
|
|
|
Header string `json:"header"`
|
|
|
|
HeaderStatic string `json:"header_static"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccount return Account.
|
|
|
|
func (c *Client) GetAccount(id int) (*Account, error) {
|
|
|
|
var account Account
|
2017-04-14 16:56:07 +02:00
|
|
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/accounts/%d", id), nil, &account)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &account, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccountCurrentUser return Account of current user.
|
|
|
|
func (c *Client) GetAccountCurrentUser() (*Account, error) {
|
|
|
|
var account Account
|
2017-04-14 16:56:07 +02:00
|
|
|
err := c.doAPI(http.MethodGet, "/api/v1/accounts/verify_credentials", nil, &account)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &account, nil
|
|
|
|
}
|
|
|
|
|
2017-04-15 17:47:44 +02:00
|
|
|
// Profile is a struct for updating profiles.
|
|
|
|
type Profile struct {
|
|
|
|
// If it is nil it will not be updated.
|
|
|
|
// If it is empty, update it with empty.
|
|
|
|
DisplayName *string
|
|
|
|
Note *string
|
|
|
|
|
|
|
|
// Set the base64 encoded character string of the image.
|
|
|
|
Avatar string
|
|
|
|
Header string
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountUpdate updates the information of the current user.
|
|
|
|
func (c *Client) AccountUpdate(profile *Profile) (*Account, error) {
|
|
|
|
params := url.Values{}
|
|
|
|
if profile.DisplayName != nil {
|
|
|
|
params.Set("display_name", *profile.DisplayName)
|
|
|
|
}
|
|
|
|
if profile.Note != nil {
|
|
|
|
params.Set("note", *profile.Note)
|
|
|
|
}
|
|
|
|
if profile.Avatar != "" {
|
|
|
|
params.Set("avatar", profile.Avatar)
|
|
|
|
}
|
|
|
|
if profile.Header != "" {
|
|
|
|
params.Set("header", profile.Header)
|
|
|
|
}
|
|
|
|
|
|
|
|
var account Account
|
|
|
|
err := c.doAPI(http.MethodPatch, "/api/v1/accounts/update_credentials", params, &account)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &account, nil
|
|
|
|
}
|
|
|
|
|
2017-04-16 14:42:54 +02:00
|
|
|
// GetAccountStatuses return statuses by specified accuont.
|
|
|
|
func (c *Client) GetAccountStatuses(id int64) ([]*Status, error) {
|
|
|
|
var statuses []*Status
|
|
|
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/accounts/%d/statuses", id), nil, &statuses)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return statuses, nil
|
|
|
|
}
|
|
|
|
|
2017-04-14 16:37:29 +02:00
|
|
|
// GetAccountFollowers return followers list.
|
|
|
|
func (c *Client) GetAccountFollowers(id int64) ([]*Account, error) {
|
|
|
|
var accounts []*Account
|
2017-04-14 16:56:07 +02:00
|
|
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/accounts/%d/followers", id), nil, &accounts)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return accounts, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccountFollowing return following list.
|
|
|
|
func (c *Client) GetAccountFollowing(id int64) ([]*Account, error) {
|
|
|
|
var accounts []*Account
|
2017-04-14 16:56:07 +02:00
|
|
|
err := c.doAPI(http.MethodGet, fmt.Sprintf("/api/v1/accounts/%d/following", id), nil, &accounts)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return accounts, nil
|
|
|
|
}
|
|
|
|
|
2017-04-14 19:23:17 +02:00
|
|
|
// GetBlocks return block list.
|
|
|
|
func (c *Client) GetBlocks() ([]*Account, error) {
|
|
|
|
var accounts []*Account
|
|
|
|
err := c.doAPI(http.MethodGet, "/api/v1/blocks", nil, &accounts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return accounts, nil
|
|
|
|
}
|
|
|
|
|
2017-04-14 16:37:29 +02:00
|
|
|
// Relationship hold information for relation-ship to the account.
|
|
|
|
type Relationship struct {
|
2017-04-14 17:26:13 +02:00
|
|
|
ID int64 `json:"id"`
|
|
|
|
Following bool `json:"following"`
|
|
|
|
FollowedBy bool `json:"followed_by"`
|
|
|
|
Blocking bool `json:"blocking"`
|
|
|
|
Muting bool `json:"muting"`
|
|
|
|
Requested bool `json:"requested"`
|
2017-04-14 16:37:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// AccountFollow follow the account.
|
|
|
|
func (c *Client) AccountFollow(id int64) (*Relationship, error) {
|
|
|
|
var relationship Relationship
|
2017-04-14 16:59:11 +02:00
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/accounts/%d/follow", id), nil, &relationship)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &relationship, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountUnfollow unfollow the account.
|
|
|
|
func (c *Client) AccountUnfollow(id int64) (*Relationship, error) {
|
|
|
|
var relationship Relationship
|
2017-04-14 16:59:11 +02:00
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/accounts/%d/unfollow", id), nil, &relationship)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &relationship, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountBlock block the account.
|
|
|
|
func (c *Client) AccountBlock(id int64) (*Relationship, error) {
|
|
|
|
var relationship Relationship
|
2017-04-14 16:59:11 +02:00
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/accounts/%d/block", id), nil, &relationship)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &relationship, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountUnblock unblock the account.
|
|
|
|
func (c *Client) AccountUnblock(id int64) (*Relationship, error) {
|
|
|
|
var relationship Relationship
|
2017-04-14 16:59:11 +02:00
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/accounts/%d/unblock", id), nil, &relationship)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &relationship, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountMute mute the account.
|
|
|
|
func (c *Client) AccountMute(id int64) (*Relationship, error) {
|
|
|
|
var relationship Relationship
|
2017-04-14 16:59:11 +02:00
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/accounts/%d/mute", id), nil, &relationship)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &relationship, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountUnmute unmute the account.
|
|
|
|
func (c *Client) AccountUnmute(id int64) (*Relationship, error) {
|
|
|
|
var relationship Relationship
|
2017-04-14 16:59:11 +02:00
|
|
|
err := c.doAPI(http.MethodPost, fmt.Sprintf("/api/v1/accounts/%d/unmute", id), nil, &relationship)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &relationship, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAccountRelationship return relationship for the account.
|
|
|
|
func (c *Client) GetAccountRelationship(id int64) ([]*Relationship, error) {
|
|
|
|
params := url.Values{}
|
|
|
|
params.Set("id", fmt.Sprint(id))
|
|
|
|
|
|
|
|
var relationships []*Relationship
|
2017-04-14 16:56:07 +02:00
|
|
|
err := c.doAPI(http.MethodGet, "/api/v1/accounts/relationship", params, &relationships)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return relationships, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AccountsSearch search accounts by query.
|
|
|
|
func (c *Client) AccountsSearch(q string, limit int64) ([]*Account, error) {
|
|
|
|
params := url.Values{}
|
|
|
|
params.Set("q", q)
|
|
|
|
params.Set("limit", fmt.Sprint(limit))
|
|
|
|
|
|
|
|
var accounts []*Account
|
2017-04-14 16:56:07 +02:00
|
|
|
err := c.doAPI(http.MethodGet, "/api/v1/accounts/search", params, &accounts)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return accounts, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Follow send follow-request.
|
2017-04-14 17:31:08 +02:00
|
|
|
func (c *Client) FollowRemoteUser(uri string) (*Account, error) {
|
2017-04-14 16:37:29 +02:00
|
|
|
params := url.Values{}
|
|
|
|
params.Set("uri", uri)
|
|
|
|
|
|
|
|
var account Account
|
2017-04-14 16:59:11 +02:00
|
|
|
err := c.doAPI(http.MethodPost, "/api/v1/follows", params, &account)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &account, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetFollowRequests return follow-requests.
|
2017-04-14 21:04:34 +02:00
|
|
|
func (c *Client) GetFollowRequests() ([]*Account, error) {
|
2017-04-14 16:37:29 +02:00
|
|
|
var accounts []*Account
|
2017-04-14 21:04:34 +02:00
|
|
|
err := c.doAPI(http.MethodGet, "/api/v1/follow_requests", nil, &accounts)
|
2017-04-14 16:37:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return accounts, nil
|
|
|
|
}
|