blob: ba7bb05d8b2088ada086ef3343e51362605a355d (
plain) (
tree)
|
|
package main
import (
"log"
"golang.fcuny.net/mpd-stats/internal/mpd"
"golang.fcuny.net/mpd-stats/internal/scrobbler"
)
func main() {
net := "tcp"
addr := "localhost:6600"
c, err := mpd.NewPlayer(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)
}
}()
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
}
}
}
}
|