2017-04-15 14:52:11 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-04-17 04:10:29 +02:00
|
|
|
"context"
|
2017-04-15 14:52:11 +02:00
|
|
|
|
|
|
|
"github.com/mattn/go-mastodon"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func cmdTimeline(c *cli.Context) error {
|
|
|
|
client := c.App.Metadata["client"].(*mastodon.Client)
|
2017-04-19 13:52:14 +02:00
|
|
|
config := c.App.Metadata["config"].(*mastodon.Config)
|
2017-05-06 16:49:46 +02:00
|
|
|
timeline, err := client.GetTimelineHome(context.Background(), nil)
|
2017-04-15 14:52:11 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-04-19 16:21:19 +02:00
|
|
|
s := newScreen(config)
|
2017-04-15 14:52:11 +02:00
|
|
|
for i := len(timeline) - 1; i >= 0; i-- {
|
2017-04-19 16:21:19 +02:00
|
|
|
s.displayStatus(c.App.Writer, timeline[i])
|
2017-04-15 14:52:11 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|