mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
* fix(persistence): Update play_date on scrobble only when newer - #2262 Signed-off-by: Xidorn Quan <me@upsuper.org> * expand iff --------- Signed-off-by: Xidorn Quan <me@upsuper.org>
This commit is contained in:
parent
673880d661
commit
1430aa108d
2 changed files with 26 additions and 1 deletions
|
@ -158,6 +158,31 @@ var _ = Describe("MediaRepository", func() {
|
|||
Expect(mf.PlayCount).To(Equal(int64(1)))
|
||||
})
|
||||
|
||||
It("preserves play date if and only if provided date is older", func() {
|
||||
id := "incplay.playdate"
|
||||
Expect(mr.Put(&model.MediaFile{ID: id})).To(BeNil())
|
||||
playDate := time.Now()
|
||||
Expect(mr.IncPlayCount(id, playDate)).To(BeNil())
|
||||
mf, err := mr.Get(id)
|
||||
Expect(err).To(BeNil())
|
||||
Expect(mf.PlayDate.Unix()).To(Equal(playDate.Unix()))
|
||||
Expect(mf.PlayCount).To(Equal(int64(1)))
|
||||
|
||||
playDateLate := playDate.AddDate(0, 0, 1)
|
||||
Expect(mr.IncPlayCount(id, playDateLate)).To(BeNil())
|
||||
mf, err = mr.Get(id)
|
||||
Expect(err).To(BeNil())
|
||||
Expect(mf.PlayDate.Unix()).To(Equal(playDateLate.Unix()))
|
||||
Expect(mf.PlayCount).To(Equal(int64(2)))
|
||||
|
||||
playDateEarly := playDate.AddDate(0, 0, -1)
|
||||
Expect(mr.IncPlayCount(id, playDateEarly)).To(BeNil())
|
||||
mf, err = mr.Get(id)
|
||||
Expect(err).To(BeNil())
|
||||
Expect(mf.PlayDate.Unix()).To(Equal(playDateLate.Unix()))
|
||||
Expect(mf.PlayCount).To(Equal(int64(3)))
|
||||
})
|
||||
|
||||
It("increments play count on newly starred items", func() {
|
||||
id := "star.incplay"
|
||||
Expect(mr.Put(&model.MediaFile{ID: id})).To(BeNil())
|
||||
|
|
|
@ -64,7 +64,7 @@ func (r sqlRepository) SetRating(rating int, itemID string) error {
|
|||
func (r sqlRepository) IncPlayCount(itemID string, ts time.Time) error {
|
||||
upd := Update(annotationTable).Where(r.annId(itemID)).
|
||||
Set("play_count", Expr("play_count+1")).
|
||||
Set("play_date", ts)
|
||||
Set("play_date", Expr("max(ifnull(play_date,''),?)", ts))
|
||||
c, err := r.executeSQL(upd)
|
||||
|
||||
if c == 0 || errors.Is(err, orm.ErrNoRows) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue