Add GetAccount
This commit is contained in:
parent
a55b0a3d31
commit
4ee8ee7fd1
63
mastodon.go
63
mastodon.go
|
@ -2,6 +2,7 @@ package mastodon
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"path"
|
"path"
|
||||||
|
@ -64,6 +65,50 @@ func (c *client) Authenticate(username, password string) error {
|
||||||
return nil
|
return 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"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *client) GetAccount(id int) (*Account, error) {
|
||||||
|
url, err := url.Parse(c.config.Server)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
url.Path = path.Join(url.Path, fmt.Sprintf("/api/v1/accounts/%d", id))
|
||||||
|
|
||||||
|
req, err := http.NewRequest("GET", url.String(), nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
req.Header.Set("Authorization", "Bearer "+c.config.AccessToken)
|
||||||
|
resp, err := c.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
account := &Account{}
|
||||||
|
err = json.NewDecoder(resp.Body).Decode(account)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return account, nil
|
||||||
|
}
|
||||||
|
|
||||||
type Visibility int64
|
type Visibility int64
|
||||||
|
|
||||||
type Toot struct {
|
type Toot struct {
|
||||||
|
@ -84,23 +129,7 @@ type Status struct {
|
||||||
SpoilerText string `json:"spoiler_text"`
|
SpoilerText string `json:"spoiler_text"`
|
||||||
Visibility string `json:"visibility"`
|
Visibility string `json:"visibility"`
|
||||||
Application interface{} `json:"application"`
|
Application interface{} `json:"application"`
|
||||||
Account struct {
|
Account Account `json:"account"`
|
||||||
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"`
|
|
||||||
} `json:"account"`
|
|
||||||
MediaAttachments []interface{} `json:"media_attachments"`
|
MediaAttachments []interface{} `json:"media_attachments"`
|
||||||
Mentions []interface{} `json:"mentions"`
|
Mentions []interface{} `json:"mentions"`
|
||||||
Tags []interface{} `json:"tags"`
|
Tags []interface{} `json:"tags"`
|
||||||
|
|
Loading…
Reference in New Issue
Block a user