go-mastodon/mastodon.go

138 lines
3.1 KiB
Go
Raw Normal View History

2017-04-13 09:47:00 +02:00
package mastodon
import (
"encoding/json"
2017-04-13 19:39:34 +02:00
"fmt"
2017-04-13 09:47:00 +02:00
"net/http"
"net/url"
2017-04-13 19:16:52 +02:00
"path"
2017-04-13 09:47:00 +02:00
"strings"
)
2017-04-14 05:21:27 +02:00
// Config is a setting for access mastodon APIs.
2017-04-13 09:47:00 +02:00
type Config struct {
Server string
ClientID string
ClientSecret string
AccessToken string
}
2017-04-14 05:21:27 +02:00
// Client is a API client for mastodon.
type Client struct {
2017-04-13 09:47:00 +02:00
http.Client
config *Config
}
2017-04-14 05:21:27 +02:00
func (c *Client) doAPI(method string, uri string, params url.Values, res interface{}) error {
2017-04-14 21:36:27 +02:00
u, err := url.Parse(c.config.Server)
2017-04-14 05:12:09 +02:00
if err != nil {
return err
}
2017-04-14 21:36:27 +02:00
u.Path = path.Join(u.Path, uri)
2017-04-14 05:12:09 +02:00
var resp *http.Response
2017-04-14 21:36:27 +02:00
req, err := http.NewRequest(method, u.String(), strings.NewReader(params.Encode()))
2017-04-14 05:12:09 +02:00
if err != nil {
return err
}
req.Header.Set("Authorization", "Bearer "+c.config.AccessToken)
resp, err = c.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if res == nil {
return nil
}
2017-04-14 16:56:07 +02:00
if method == http.MethodGet && resp.StatusCode != http.StatusOK {
return fmt.Errorf("bad request: %v", resp.Status)
}
2017-04-14 05:12:09 +02:00
return json.NewDecoder(resp.Body).Decode(&res)
}
2017-04-14 05:21:27 +02:00
// NewClient return new mastodon API client.
func NewClient(config *Config) *Client {
return &Client{
2017-04-13 09:47:00 +02:00
Client: *http.DefaultClient,
config: config,
}
}
2017-04-14 05:21:27 +02:00
// Authenticate get access-token to the API.
func (c *Client) Authenticate(username, password string) error {
2017-04-13 09:47:00 +02:00
params := url.Values{}
params.Set("client_id", c.config.ClientID)
params.Set("client_secret", c.config.ClientSecret)
params.Set("grant_type", "password")
params.Set("username", username)
params.Set("password", password)
2017-04-13 19:16:52 +02:00
params.Set("scope", "read write follow")
2017-04-14 21:36:27 +02:00
u, err := url.Parse(c.config.Server)
2017-04-13 19:16:52 +02:00
if err != nil {
return err
}
2017-04-14 21:36:27 +02:00
u.Path = path.Join(u.Path, "/oauth/token")
2017-04-13 19:16:52 +02:00
2017-04-14 21:36:27 +02:00
req, err := http.NewRequest(http.MethodPost, u.String(), strings.NewReader(params.Encode()))
2017-04-13 09:47:00 +02:00
if err != nil {
return err
}
2017-04-14 10:10:13 +02:00
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
2017-04-13 09:47:00 +02:00
resp, err := c.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
2017-04-14 10:10:13 +02:00
return fmt.Errorf("bad authorization: %v", resp.Status)
}
2017-04-13 09:47:00 +02:00
res := struct {
AccessToken string `json:"access_token"`
}{}
2017-04-13 19:16:52 +02:00
err = json.NewDecoder(resp.Body).Decode(&res)
2017-04-13 09:47:00 +02:00
if err != nil {
return err
}
c.config.AccessToken = res.AccessToken
return nil
}
2017-04-14 05:21:27 +02:00
// Toot is struct to post status.
2017-04-13 19:16:52 +02:00
type Toot struct {
Status string `json:"status"`
InReplyToID int64 `json:"in_reply_to_id"`
2017-04-14 05:21:27 +02:00
MediaIDs []int64 `json:"media_ids"`
2017-04-13 19:16:52 +02:00
Sensitive bool `json:"sensitive"`
SpoilerText string `json:"spoiler_text"`
Visibility string `json:"visibility"`
}
2017-04-14 17:10:04 +02:00
// Mention hold information for mention.
type Mention struct {
URL string `json:"url"`
Username string `json:"username"`
Acct string `json:"acct"`
ID int64 `json:"id"`
}
// Tag hold information for tag.
type Tag struct {
Name string `json:"name"`
URL string `json:"url"`
}
// Attachment hold information for attachment.
type Attachment struct {
ID int64 `json:"id"`
Type string `json:"type"`
URL string `json:"url"`
RemoteURL string `json:"remote_url"`
PreviewURL string `json:"preview_url"`
TextURL string `json:"text_url"`
}