Authenticate Subsonic API calls using the DB

This commit is contained in:
Deluan 2020-01-20 13:35:59 -05:00
parent 50c7d3800a
commit 99c28731d4
13 changed files with 210 additions and 93 deletions

View file

@ -81,5 +81,12 @@ func (r *userRepository) UpdateLastLoginAt(id string) error {
return err
}
func (r *userRepository) UpdateLastAccessAt(id string) error {
now := time.Now()
tu := user{ID: id, LastAccessAt: &now}
_, err := r.ormer.Update(&tu, "last_access_at")
return err
}
var _ = model.User(user{})
var _ model.UserRepository = (*userRepository)(nil)