add streaming
This commit is contained in:
parent
106cec241e
commit
ae1467926c
|
@ -3,23 +3,27 @@ package main
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
"os/signal"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/fatih/color"
|
||||||
"github.com/mattn/go-mastodon"
|
"github.com/mattn/go-mastodon"
|
||||||
"github.com/mattn/go-tty"
|
"github.com/mattn/go-tty"
|
||||||
"golang.org/x/net/html"
|
"golang.org/x/net/html"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
toot = flag.String("t", "", "toot text")
|
toot = flag.String("t", "", "toot text")
|
||||||
|
stream = flag.Bool("S", false, "streaming public")
|
||||||
)
|
)
|
||||||
|
|
||||||
func extractText(node *html.Node, w *bytes.Buffer) {
|
func extractText(node *html.Node, w *bytes.Buffer) {
|
||||||
|
@ -38,6 +42,16 @@ func extractText(node *html.Node, w *bytes.Buffer) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func textContent(s string) string {
|
||||||
|
doc, err := html.Parse(strings.NewReader(s))
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
var buf bytes.Buffer
|
||||||
|
extractText(doc, &buf)
|
||||||
|
return buf.String()
|
||||||
|
}
|
||||||
|
|
||||||
func prompt() (string, string, error) {
|
func prompt() (string, string, error) {
|
||||||
t, err := tty.Open()
|
t, err := tty.Open()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -132,19 +146,39 @@ func main() {
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if *stream {
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
sc := make(chan os.Signal, 1)
|
||||||
|
signal.Notify(sc, os.Interrupt)
|
||||||
|
q, err := client.StreamingPublic(ctx)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
go func() {
|
||||||
|
<-sc
|
||||||
|
cancel()
|
||||||
|
close(q)
|
||||||
|
}()
|
||||||
|
for e := range q {
|
||||||
|
switch t := e.(type) {
|
||||||
|
case *mastodon.UpdateEvent:
|
||||||
|
color.Set(color.FgHiRed)
|
||||||
|
fmt.Println(t.Status.Account.Username)
|
||||||
|
color.Set(color.Reset)
|
||||||
|
fmt.Println(textContent(t.Status.Content))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
timeline, err := client.GetTimelineHome()
|
timeline, err := client.GetTimelineHome()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
for _, t := range timeline {
|
for _, t := range timeline {
|
||||||
doc, err := html.Parse(strings.NewReader(t.Content))
|
color.Set(color.FgHiRed)
|
||||||
if err != nil {
|
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
var buf bytes.Buffer
|
|
||||||
extractText(doc, &buf)
|
|
||||||
fmt.Println(t.Account.Username)
|
fmt.Println(t.Account.Username)
|
||||||
fmt.Println(buf.String())
|
color.Set(color.Reset)
|
||||||
|
fmt.Println(textContent(t.Content))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
75
mastodon.go
75
mastodon.go
|
@ -1,7 +1,10 @@
|
||||||
package mastodon
|
package mastodon
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"path"
|
"path"
|
||||||
|
@ -228,3 +231,75 @@ func (c *client) PostStatus(toot *Toot) (*Status, error) {
|
||||||
}
|
}
|
||||||
return &status, nil
|
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 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")
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
q := make(chan Event)
|
||||||
|
go func() {
|
||||||
|
defer ctx.Done()
|
||||||
|
name := ""
|
||||||
|
s := bufio.NewScanner(resp.Body)
|
||||||
|
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":
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fmt.Println(s.Err())
|
||||||
|
}()
|
||||||
|
go func() {
|
||||||
|
<-ctx.Done()
|
||||||
|
resp.Body.Close()
|
||||||
|
}()
|
||||||
|
return q, nil
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user