about summary refs log tree commit diff
path: root/tools/mpd-stats/internal/scrobbler/record.go
blob: 927ed27e53fb93145841da52a0e36ba00d1b819e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package scrobbler

import (
	"strconv"
	"time"

	"github.com/fhs/gompd/v2/mpd"
	"github.com/google/uuid"
)

type Record struct {
	Id       uuid.UUID
	Title    string
	Album    string
	Artist   string
	Duration time.Duration
}

func NewRecord(attrs mpd.Attrs) (*Record, error) {
	record := Record{
		Id:     uuid.New(),
		Title:  attrs["Title"],
		Album:  attrs["Album"],
		Artist: attrs["Artist"],
	}

	dur, err := strconv.ParseFloat(attrs["duration"], 32)
	if err != nil {
		return nil, err
	}

	record.Duration = time.Second * time.Duration(dur)
	return &record, nil
}