2017-04-14 16:46:15 +02:00
|
|
|
package mastodon
|
|
|
|
|
|
|
|
import (
|
2017-04-17 04:10:29 +02:00
|
|
|
"context"
|
2017-04-14 16:46:15 +02:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"path"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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.
|
2017-04-17 04:10:29 +02:00
|
|
|
func RegisterApp(ctx context.Context, appConfig *AppConfig) (*Application, error) {
|
2017-04-14 16:46:15 +02:00
|
|
|
params := url.Values{}
|
|
|
|
params.Set("client_name", appConfig.ClientName)
|
|
|
|
if appConfig.RedirectURIs == "" {
|
|
|
|
params.Set("redirect_uris", "urn:ietf:wg:oauth:2.0:oob")
|
|
|
|
} else {
|
|
|
|
params.Set("redirect_uris", appConfig.RedirectURIs)
|
|
|
|
}
|
|
|
|
params.Set("scopes", appConfig.Scopes)
|
|
|
|
params.Set("website", appConfig.Website)
|
|
|
|
|
2017-04-14 21:36:27 +02:00
|
|
|
u, err := url.Parse(appConfig.Server)
|
2017-04-14 16:46:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-04-14 21:36:27 +02:00
|
|
|
u.Path = path.Join(u.Path, "/api/v1/apps")
|
2017-04-14 16:46:15 +02:00
|
|
|
|
2017-04-14 21:36:27 +02:00
|
|
|
req, err := http.NewRequest(http.MethodPost, u.String(), strings.NewReader(params.Encode()))
|
2017-04-14 16:46:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
resp, err := appConfig.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
return nil, fmt.Errorf("bad request: %v", resp.Status)
|
|
|
|
}
|
|
|
|
|
|
|
|
var app Application
|
|
|
|
err = json.NewDecoder(resp.Body).Decode(&app)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &app, nil
|
|
|
|
}
|