go-mastodon/cmd/mstdn/main.go

248 lines
4.8 KiB
Go
Raw Normal View History

2017-04-13 18:00:02 +02:00
package main
import (
"bufio"
"bytes"
"context"
2017-04-13 18:00:02 +02:00
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"runtime"
"strings"
"github.com/mattn/go-mastodon"
"github.com/mattn/go-tty"
2017-04-15 14:48:20 +02:00
"github.com/urfave/cli"
2017-04-13 18:00:02 +02:00
"golang.org/x/net/html"
)
func readFile(filename string) ([]byte, error) {
if filename == "-" {
return ioutil.ReadAll(os.Stdin)
}
2017-04-14 05:23:45 +02:00
return ioutil.ReadFile(filename)
}
2017-04-14 02:32:46 +02:00
func textContent(s string) string {
doc, err := html.Parse(strings.NewReader(s))
if err != nil {
2017-04-15 14:48:20 +02:00
return s
2017-04-14 02:32:46 +02:00
}
var buf bytes.Buffer
2017-04-14 05:30:13 +02:00
var extractText func(node *html.Node, w *bytes.Buffer)
extractText = func(node *html.Node, w *bytes.Buffer) {
if node.Type == html.TextNode {
data := strings.Trim(node.Data, "\r\n")
if data != "" {
2017-04-14 06:53:56 +02:00
w.WriteString(data)
2017-04-14 05:30:13 +02:00
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
extractText(c, w)
}
2017-04-14 06:53:56 +02:00
if node.Type == html.ElementNode {
name := strings.ToLower(node.Data)
if name == "br" {
w.WriteString("\n")
}
}
2017-04-14 05:30:13 +02:00
}
2017-04-14 02:32:46 +02:00
extractText(doc, &buf)
return buf.String()
}
2017-04-14 13:05:18 +02:00
var (
2017-04-16 16:38:53 +02:00
readUsername = func() (string, error) {
2017-04-14 13:05:18 +02:00
b, _, err := bufio.NewReader(os.Stdin).ReadLine()
if err != nil {
return "", err
}
return string(b), nil
}
readPassword func() (string, error)
)
2017-04-13 18:00:02 +02:00
func prompt() (string, string, error) {
t, err := tty.Open()
if err != nil {
return "", "", err
}
defer t.Close()
fmt.Print("E-Mail: ")
2017-04-14 13:05:18 +02:00
email, err := readUsername()
2017-04-13 18:00:02 +02:00
if err != nil {
return "", "", err
}
fmt.Print("Password: ")
2017-04-14 13:05:18 +02:00
var password string
if readPassword == nil {
password, err = t.ReadPassword()
} else {
password, err = readPassword()
}
2017-04-13 18:00:02 +02:00
if err != nil {
return "", "", err
}
return email, password, nil
}
func getConfig() (string, *mastodon.Config, error) {
dir := os.Getenv("HOME")
2017-04-13 19:17:05 +02:00
if runtime.GOOS == "windows" {
2017-04-13 18:00:02 +02:00
dir = os.Getenv("APPDATA")
if dir == "" {
dir = filepath.Join(os.Getenv("USERPROFILE"), "Application Data", "mstdn")
}
dir = filepath.Join(dir, "mstdn")
} else {
dir = filepath.Join(dir, ".config", "mstdn")
}
if err := os.MkdirAll(dir, 0700); err != nil {
return "", nil, err
}
file := filepath.Join(dir, "settings.json")
b, err := ioutil.ReadFile(file)
if err != nil && !os.IsNotExist(err) {
return "", nil, err
}
config := &mastodon.Config{
Server: "https://mstdn.jp",
2017-04-15 13:20:30 +02:00
ClientID: "171d45f22068a5dddbd927b9d966f5b97971ed1d3256b03d489f5b3a83cdba59",
ClientSecret: "574a2cf4b3f28a5fa0cfd285fc80cfe9daa419945163ef18f5f3d0022f4add28",
2017-04-13 18:00:02 +02:00
}
if err == nil {
err = json.Unmarshal(b, &config)
if err != nil {
return "", nil, fmt.Errorf("could not unmarshal %v: %v", file, err)
}
}
return file, config, nil
}
2017-04-15 14:48:20 +02:00
func authenticate(client *mastodon.Client, config *mastodon.Config, file string) error {
2017-04-14 05:30:13 +02:00
email, password, err := prompt()
if err != nil {
2017-04-15 14:48:20 +02:00
return err
2017-04-14 05:30:13 +02:00
}
err = client.Authenticate(context.Background(), email, password)
2017-04-14 05:30:13 +02:00
if err != nil {
2017-04-15 14:48:20 +02:00
return err
2017-04-14 05:30:13 +02:00
}
b, err := json.MarshalIndent(config, "", " ")
if err != nil {
2017-04-16 16:38:53 +02:00
return fmt.Errorf("failed to store file: %v", err)
2017-04-14 05:30:13 +02:00
}
err = ioutil.WriteFile(file, b, 0700)
if err != nil {
2017-04-16 16:38:53 +02:00
return fmt.Errorf("failed to store file: %v", err)
2017-04-15 14:48:20 +02:00
}
return nil
}
2017-04-15 16:21:45 +02:00
func argstr(c *cli.Context) string {
a := []string{}
for i := 0; i < c.NArg(); i++ {
a = append(a, c.Args().Get(i))
}
return strings.Join(a, " ")
}
2017-04-15 14:48:20 +02:00
func fatalIf(err error) {
if err == nil {
return
}
fmt.Fprintf(os.Stderr, "%s: %v\n", os.Args[0], err)
os.Exit(1)
}
2017-04-16 15:26:05 +02:00
func makeApp() *cli.App {
2017-04-15 14:48:20 +02:00
app := cli.NewApp()
app.Name = "mstdn"
app.Usage = "mastodon client"
app.Version = "0.0.1"
app.Commands = []cli.Command{
{
Name: "toot",
Usage: "post toot",
Flags: []cli.Flag{
cli.StringFlag{
Name: "ff",
Usage: "post utf-8 string from a file(\"-\" means STDIN)",
Value: "",
},
},
Action: cmdToot,
},
{
Name: "stream",
Usage: "stream statuses",
Action: cmdStream,
},
{
Name: "timeline",
Usage: "show timeline",
Action: cmdTimeline,
},
2017-04-15 15:12:07 +02:00
{
Name: "notification",
Usage: "show notification",
Action: cmdNotification,
},
2017-04-15 15:25:20 +02:00
{
Name: "instance",
Usage: "show instance information",
Action: cmdInstance,
},
2017-04-15 15:58:46 +02:00
{
Name: "account",
Usage: "show account information",
Action: cmdAccount,
},
2017-04-15 16:21:45 +02:00
{
Name: "search",
Usage: "search content",
Action: cmdSearch,
},
2017-04-16 15:26:05 +02:00
{
Name: "followers",
Usage: "show followers",
Action: cmdFollowers,
},
2017-04-17 06:56:06 +02:00
{
Name: "upload",
Usage: "upload file",
Action: cmdUpload,
},
2017-04-15 14:48:20 +02:00
}
2017-04-16 15:26:05 +02:00
return app
}
func run() int {
app := makeApp()
file, config, err := getConfig()
fatalIf(err)
client := mastodon.NewClient(config)
if config.AccessToken == "" {
err = authenticate(client, config, file)
fatalIf(err)
}
app.Metadata = map[string]interface{}{
"client": client,
"config": config,
}
2017-04-15 14:48:20 +02:00
app.Run(os.Args)
return 0
}
2017-04-14 05:33:12 +02:00
func main() {
2017-04-15 14:48:20 +02:00
os.Exit(run())
2017-04-13 18:00:02 +02:00
}