From 5bc82c03c6910e9205ef118a55e18a5967a9ebb3 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 10 Oct 2021 11:47:52 -0700 Subject: mpd-stats: create and run the scrobbler --- tools/mpd-stats/cmd/mpd-scrobbler/main.go | 43 +++---------------------------- 1 file changed, 4 insertions(+), 39 deletions(-) (limited to 'tools/mpd-stats') diff --git a/tools/mpd-stats/cmd/mpd-scrobbler/main.go b/tools/mpd-stats/cmd/mpd-scrobbler/main.go index ba7bb05..3540807 100644 --- a/tools/mpd-stats/cmd/mpd-scrobbler/main.go +++ b/tools/mpd-stats/cmd/mpd-scrobbler/main.go @@ -3,7 +3,6 @@ package main import ( "log" - "golang.fcuny.net/mpd-stats/internal/mpd" "golang.fcuny.net/mpd-stats/internal/scrobbler" ) @@ -11,50 +10,16 @@ func main() { net := "tcp" addr := "localhost:6600" - c, err := mpd.NewPlayer(net, addr) + s, err := scrobbler.NewScrobbler(net, addr) if err != nil { log.Fatalf("failed to create a client: %v", err) } defer func() { - if err := c.Close(); err != nil { - log.Fatalf("failed to close the player: %v", err) + if err := s.Close(); err != nil { + log.Fatalf("failed to close the scrobbler: %v", err) } }() - var ( - currentRecord *scrobbler.Record - previousRecord *scrobbler.Record - ) - for { - e := <-c.Watcher.Event - if e != "" { - attrs, err := c.Client.CurrentSong() - if err != nil { - log.Fatalf("could not get current song: %v", err) - } - - if currentRecord == nil { - currentRecord, err = scrobbler.NewRecord(attrs) - if err != nil { - log.Fatalf("could not create a log: %v", err) - } - log.Printf("we're playing %s/%s/%s [%s]\n", currentRecord.Artist, currentRecord.Album, currentRecord.Title, currentRecord.Duration) - previousRecord = currentRecord - continue - } - - if currentRecord.Title != attrs["Title"] || currentRecord.Artist != attrs["Artist"] || currentRecord.Album != attrs["Album"] { - currentRecord, err = scrobbler.NewRecord(attrs) - if err != nil { - log.Fatalf("could not create a log: %v", err) - } - } - - if currentRecord.Id != previousRecord.Id { - log.Printf("we're playing %s/%s/%s [%s]\n", currentRecord.Artist, currentRecord.Album, currentRecord.Title, currentRecord.Duration) - previousRecord = currentRecord - } - } - } + s.Run() } -- cgit 1.4.1