330 lines
7.8 KiB
Go
330 lines
7.8 KiB
Go
package mastodon
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
type Config struct {
|
|
Server string
|
|
ClientID string
|
|
ClientSecret string
|
|
AccessToken string
|
|
}
|
|
|
|
type client struct {
|
|
http.Client
|
|
config *Config
|
|
}
|
|
|
|
func (c *client) doAPI(method string, uri string, params url.Values, res interface{}) error {
|
|
url, err := url.Parse(c.config.Server)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
url.Path = path.Join(url.Path, uri)
|
|
|
|
var resp *http.Response
|
|
req, err := http.NewRequest(method, url.String(), strings.NewReader(params.Encode()))
|
|
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
|
|
}
|
|
return json.NewDecoder(resp.Body).Decode(&res)
|
|
}
|
|
|
|
func NewClient(config *Config) *client {
|
|
return &client{
|
|
Client: *http.DefaultClient,
|
|
config: config,
|
|
}
|
|
}
|
|
|
|
func (c *client) Authenticate(username, password string) error {
|
|
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)
|
|
params.Set("scope", "read write follow")
|
|
|
|
url, err := url.Parse(c.config.Server)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
url.Path = path.Join(url.Path, "/oauth/token")
|
|
|
|
req, err := http.NewRequest("POST", url.String(), strings.NewReader(params.Encode()))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
resp, err := c.Do(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
res := struct {
|
|
AccessToken string `json:"access_token"`
|
|
}{}
|
|
err = json.NewDecoder(resp.Body).Decode(&res)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.config.AccessToken = res.AccessToken
|
|
return nil
|
|
}
|
|
|
|
// AppConfig is a setting for registering applications.
|
|
type AppConfig struct {
|
|
http.Client
|
|
Server string
|
|
ClientName string
|
|
|
|
// Where the user should be redirected after authorization (for no redirect, use urn:ietf:wg:oauth:2.0:oob)
|
|
RedirectURIs string
|
|
|
|
// This can be a space-separated list of the following items: "read", "write" and "follow".
|
|
Scopes string
|
|
|
|
// Optional.
|
|
Website string
|
|
}
|
|
|
|
// Application is mastodon application.
|
|
type Application struct {
|
|
ID int64 `json:"id"`
|
|
RedirectURI string `json:"redirect_uri"`
|
|
ClientID string `json:"client_id"`
|
|
ClientSecret string `json:"client_secret"`
|
|
}
|
|
|
|
// RegisterApp returns the mastodon application.
|
|
func RegisterApp(appConfig *AppConfig) (*Application, error) {
|
|
params := url.Values{}
|
|
params.Set("client_name", appConfig.ClientName)
|
|
params.Set("redirect_uris", appConfig.RedirectURIs)
|
|
params.Set("scopes", appConfig.Scopes)
|
|
params.Set("website", appConfig.Website)
|
|
|
|
url, err := url.Parse(appConfig.Server)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
url.Path = path.Join(url.Path, "/api/v1/apps")
|
|
|
|
req, err := http.NewRequest("POST", url.String(), strings.NewReader(params.Encode()))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
resp, err := appConfig.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
app := &Application{}
|
|
err = json.NewDecoder(resp.Body).Decode(app)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return app, nil
|
|
}
|
|
|
|
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"`
|
|
}
|
|
|
|
type Visibility int64
|
|
|
|
type Toot struct {
|
|
Status string `json:"status"`
|
|
InReplyToID int64 `json:"in_reply_to_id"`
|
|
MediaIDs []int64 `json:"in_reply_to_id"`
|
|
Sensitive bool `json:"sensitive"`
|
|
SpoilerText string `json:"spoiler_text"`
|
|
Visibility string `json:"visibility"`
|
|
}
|
|
|
|
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 interface{} `json:"application"`
|
|
Account Account `json:"account"`
|
|
MediaAttachments []interface{} `json:"media_attachments"`
|
|
Mentions []interface{} `json:"mentions"`
|
|
Tags []interface{} `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 interface{} `json:"reblog"`
|
|
Favourited interface{} `json:"favourited"`
|
|
Reblogged interface{} `json:"reblogged"`
|
|
}
|
|
|
|
func (c *client) GetAccount(id int) (*Account, error) {
|
|
var account Account
|
|
err := c.doAPI("GET", fmt.Sprintf("/api/v1/accounts/%d", id), nil, &account)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &account, nil
|
|
}
|
|
|
|
func (c *client) GetTimelineHome() ([]*Status, error) {
|
|
var statuses []*Status
|
|
err := c.doAPI("GET", "/api/v1/timelines/home", nil, &statuses)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return statuses, nil
|
|
}
|
|
|
|
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("POST", "/api/v1/statuses", params, &status)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &status, nil
|
|
}
|
|
|
|
type UpdateEvent struct {
|
|
Status *Status
|
|
}
|
|
|
|
func (e *UpdateEvent) event() {}
|
|
|
|
type NotificationEvent struct {
|
|
}
|
|
|
|
func (e *NotificationEvent) event() {}
|
|
|
|
type DeleteEvent struct {
|
|
ID int64
|
|
}
|
|
|
|
func (e *DeleteEvent) event() {}
|
|
|
|
type ErrorEvent struct {
|
|
err error
|
|
}
|
|
|
|
func (e *ErrorEvent) Error() string { return e.err.Error() }
|
|
func (e *ErrorEvent) event() {}
|
|
|
|
type Event interface {
|
|
event()
|
|
}
|
|
|
|
func (c *client) StreamingPublic(ctx context.Context) (chan Event, error) {
|
|
url, err := url.Parse(c.config.Server)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
url.Path = path.Join(url.Path, "/api/v1/streaming/public")
|
|
|
|
var resp *http.Response
|
|
|
|
q := make(chan Event, 10)
|
|
go func() {
|
|
defer ctx.Done()
|
|
|
|
for {
|
|
req, err := http.NewRequest("GET", url.String(), nil)
|
|
if err == nil {
|
|
req.Header.Set("Authorization", "Bearer "+c.config.AccessToken)
|
|
resp, err = c.Do(req)
|
|
}
|
|
if err == nil {
|
|
name := ""
|
|
s := bufio.NewScanner(io.TeeReader(resp.Body, os.Stdout))
|
|
for s.Scan() {
|
|
line := s.Text()
|
|
token := strings.SplitN(line, ":", 2)
|
|
if len(token) != 2 {
|
|
continue
|
|
}
|
|
switch strings.TrimSpace(token[0]) {
|
|
case "event":
|
|
name = strings.TrimSpace(token[1])
|
|
case "data":
|
|
switch name {
|
|
case "update":
|
|
var status Status
|
|
json.Unmarshal([]byte(token[1]), &status)
|
|
q <- &UpdateEvent{&status}
|
|
case "notification":
|
|
case "delete":
|
|
}
|
|
default:
|
|
}
|
|
}
|
|
resp.Body.Close()
|
|
err = ctx.Err()
|
|
if err == nil {
|
|
break
|
|
}
|
|
} else {
|
|
q <- &ErrorEvent{err}
|
|
}
|
|
time.Sleep(3 * time.Second)
|
|
}
|
|
}()
|
|
go func() {
|
|
<-ctx.Done()
|
|
if resp != nil && resp.Body != nil {
|
|
resp.Body.Close()
|
|
}
|
|
}()
|
|
return q, nil
|
|
}
|