navidrome/persistence
Kendall Garner fa85e2a781
Use userId in player, other fixes (#3182)
* [bugfix] player: use userId, other fixes

This PR primarily resolves #1928 by switching the foreign key of `player` from `user.user_name` to `user.id`.
There are also a few other fixes/changes:

- For some bizarre reason, `ip_address` is never returned from `read`/`get`. Change the field to `ip`, which works. Somehow
- Update `players_test.go` mock to also check for user agent, replicating the actual code
- Update `player_repository.go` `isPermitted` to check user id. I don't know how this worked before...
- tests!
- a few places referred to `typ`, when it is really `userAgent`. Change the field names

* baseRequest -> selectPlayer

* remove comment

* update migration, make all of persistence foreign key enabled

* maybe don't forget to save the file first
2024-08-03 13:37:21 -04:00
..
album_repository.go Deterministic pagination in random albums sort (#1841) 2024-05-18 14:10:53 -04:00
album_repository_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
artist_repository.go Small refactoring 2024-06-05 22:40:22 -04:00
artist_repository_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
dbx_builder.go Simplify dbx wrapper 2024-06-01 15:01:28 -04:00
genre_repository.go Replace beego/orm with dbx (#2693) 2023-12-09 13:52:17 -05:00
genre_repository_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
helpers.go Fix ambiguous column when sorting media_files by created_at. 2024-05-08 08:24:26 -04:00
helpers_test.go Fix ambiguous column when sorting media_files by created_at. 2024-05-08 08:24:26 -04:00
library_repository.go Associate main entities with library 2024-05-12 21:37:42 -04:00
mediafile_repository.go Deterministic pagination in random albums sort (#1841) 2024-05-18 14:10:53 -04:00
mediafile_repository_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
persistence.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
persistence_suite_test.go Use userId in player, other fixes (#3182) 2024-08-03 13:37:21 -04:00
persistence_test.go Use userId in player, other fixes (#3182) 2024-08-03 13:37:21 -04:00
player_repository.go Use userId in player, other fixes (#3182) 2024-08-03 13:37:21 -04:00
player_repository_test.go Use userId in player, other fixes (#3182) 2024-08-03 13:37:21 -04:00
playlist_repository.go Don't panic on PostScan errors. Fix #3118 2024-06-25 17:14:17 -04:00
playlist_repository_test.go Don't panic on PostScan errors. Fix #3118 2024-06-25 17:14:17 -04:00
playlist_track_repository.go Do not panic if when updatePlaylist is called with a non-existent ID. 2024-05-11 15:37:50 -04:00
playqueue_repository.go Replace beego/orm with dbx (#2693) 2023-12-09 13:52:17 -05:00
playqueue_repository_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
property_repository.go Replace beego/orm with dbx (#2693) 2023-12-09 13:52:17 -05:00
property_repository_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
radio_repository.go Make sorting lists by name/title case-insensitive (#2993) 2024-05-09 07:08:15 -04:00
radio_repository_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
scrobble_buffer_repository.go Fix scrobble error spam in the logs. 2024-04-26 16:59:14 -04:00
share_repository.go Replace beego/orm with dbx (#2693) 2023-12-09 13:52:17 -05:00
sql_annotations.go Remove unnecessary annotation table primary key 2024-06-29 11:45:41 -04:00
sql_base_repository.go Don't panic on PostScan errors. Fix #3118 2024-06-25 17:14:17 -04:00
sql_base_repository_test.go Fix ambiguous column when sorting media_files by created_at. 2024-05-08 08:24:26 -04:00
sql_bookmarks.go Refactor loadGenres, remove duplication 2024-04-28 17:04:12 -04:00
sql_bookmarks_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00
sql_genres.go Refactor loadGenres, remove duplication 2024-04-28 17:04:12 -04:00
sql_restful.go Make first WebUI random page stick 2024-05-19 12:35:30 -04:00
sql_restful_test.go Upgrade Ginkgo to V2 2022-07-26 16:53:17 -04:00
sql_search.go Refactor string utilities into its own package str 2024-06-05 22:09:27 -04:00
sql_search_test.go Upgrade Ginkgo to V2 2022-07-26 16:53:17 -04:00
transcoding_repository.go Replace beego/orm with dbx (#2693) 2023-12-09 13:52:17 -05:00
user_props_repository.go Replace beego/orm with dbx (#2693) 2023-12-09 13:52:17 -05:00
user_repository.go Replace beego/orm with dbx (#2693) 2023-12-09 13:52:17 -05:00
user_repository_test.go Optimize SQLite3 access. Mainly separate read access from write access. 2024-05-21 17:19:41 -04:00