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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import { nextTick } from 'vue'
import { useRouter } from 'vue-router'
import { defineStore } from 'pinia'
import type { Track, AlbumArtist, Album } from '../types'
import { shuffled } from '../utils'
import { SubsonicApi } from '../subsonicApi'
import { useMainStore } from '../store/main'
import { usePlayerStore } from '../store/player'
export const useRadioStore = defineStore('radio', {
actions: {
// -------- HELPERS --------
takeUpToX(acc: Track[], next: Track[]): Track[] {
if (acc.length >= 100) return acc
const remaining = 100 - acc.length
return acc.concat(next.slice(0, remaining))
},
pickRandom<T>(array: T[], count: number): T[] {
const copy = [...array]
const result: T[] = []
while (result.length < count && copy.length) {
const i = Math.floor(Math.random() * copy.length)
const pick = copy.splice(i, 1)[0]
if (!!pick) result.push(pick)
}
return result
},
// -------- CORE --------
async playRandomOrTracks(opts: { params?: Parameters<SubsonicApi['getRandomTracks']>[0]; tracks?: Track[] }) {
const
mainStore = useMainStore(),
playerStore = usePlayerStore(),
router = useRouter()
let shouldRoute = false
mainStore.showLoader()
try {
let tracks: Track[] = []
if (opts.params) {
tracks = await this.subsonicApi.getRandomTracks(opts.params)
} else if (opts.tracks) {
tracks = opts.tracks
}
if (!tracks?.length) return
const randomized = shuffled(tracks)
await playerStore.playNow(randomized)
shouldRoute = true
} finally {
mainStore.hideLoader()
if (shouldRoute)
router.push({ name: 'queue' })
}
},
async continueFromTrack(track: Track) {
if (!track) return
// Prefer explicit genre if present
let genreName: string | undefined = (track as any).genre
if (!genreName && track.albumId) {
try {
const album = await this.subsonicApi.getAlbumDetails(track.albumId)
genreName = album.genres?.[0]?.name
} catch (err) {
console.warn('Radio: failed to resolve album genre', err)
}
}
if (!genreName) {
console.warn('Radio: no genre found, cannot continue')
return
}
await this.playRandomOrTracks({
params: { genre: genreName, size: 100 }
})
},
// -------- RADIOS --------
async shuffleGenre(genreId: string) {
await this.playRandomOrTracks({ params: { genre: genreId, size: 100 } })
},
async shuffleMood(genreName: string) {
await this.playRandomOrTracks({ params: { genre: genreName, size: 100 } })
},
async luckyRadio() {
await this.playRandomOrTracks({ params: { size: 100 } })
},
async shuffleRecentlyPlayed() {
const mainStore = useMainStore()
mainStore.showLoader()
try {
const albums: Album[] = this.pickRandom(await this.subsonicApi.getAlbums('recently-played', 50), 10)
let tracks: Track[] = []
for (const album of albums) {
const fullAlbum = await this.subsonicApi.getAlbumDetails(album.id)
if (fullAlbum.tracks?.length) {
tracks = this.takeUpToX(tracks, fullAlbum.tracks)
if (tracks.length >= 100) break
}
}
if (tracks.length) {
await this.playRandomOrTracks({ tracks })
}
} finally {
mainStore.hideLoader()
}
},
async shuffleRecentlyAdded() {
const mainStore = useMainStore()
mainStore.showLoader()
try {
const albums: Album[] = this.pickRandom(await this.subsonicApi.getAlbums('recently-added', 50), 10)
let tracks: Track[] = []
for (const album of albums) {
const fullAlbum = await this.subsonicApi.getAlbumDetails(album.id)
if (fullAlbum.tracks?.length) {
tracks = this.takeUpToX(tracks, fullAlbum.tracks)
if (tracks.length >= 100) break
}
}
if (tracks.length) {
await this.playRandomOrTracks({ tracks })
}
} finally {
mainStore.hideLoader()
}
},
async shuffleMostPlayed() {
const mainStore = useMainStore()
mainStore.showLoader()
try {
const albums: Album[] = this.pickRandom(await this.subsonicApi.getAlbums('most-played', 50), 10)
let tracks: Track[] = []
for (const album of albums) {
const fullAlbum = await this.subsonicApi.getAlbumDetails(album.id)
if (fullAlbum.tracks?.length) {
tracks = this.takeUpToX(tracks, fullAlbum.tracks)
if (tracks.length >= 100) break
}
}
if (tracks.length) {
await this.playRandomOrTracks({ tracks })
}
} finally {
mainStore.hideLoader()
}
},
async shuffleFavouriteAlbums() {
const mainStore = useMainStore()
mainStore.showLoader()
try {
const favourites = await this.subsonicApi.getFavourites()
const favouriteAlbums = this.pickRandom(favourites.albums, 10)
if (!favouriteAlbums.length) return
let tracks: Track[] = []
for (const album of favouriteAlbums as { id: string }[]) {
const fullAlbum = await this.subsonicApi.getAlbumDetails(album.id)
if (fullAlbum.tracks?.length) {
tracks = this.takeUpToX(tracks, fullAlbum.tracks)
if (tracks.length >= 100) break
}
}
if (tracks.length) {
await this.playRandomOrTracks({ tracks })
}
} finally {
mainStore.hideLoader()
}
},
async shuffleFavouriteArtists() {
const mainStore = useMainStore()
mainStore.showLoader()
try {
const favourites = await this.subsonicApi.getFavourites()
const randomArtists = this.pickRandom(favourites.artists, 10)
if (!randomArtists.length) return
let tracks: Track[] = []
for (const artist of randomArtists as { id: string }[]) {
let artistTracks: Track[] = []
for await (const batch of this.subsonicApi.getTracksByArtist(artist.id)) {
artistTracks = artistTracks.concat(batch)
if (artistTracks.length >= 20) break
}
tracks = tracks.concat(artistTracks.slice(0, 20))
if (tracks.length >= 100) break
}
if (tracks.length) {
await this.playRandomOrTracks({ tracks })
}
} finally {
mainStore.hideLoader()
}
},
async shufflePlaylists() {
const mainStore = useMainStore()
mainStore.showLoader()
try {
const playlists = (await this.subsonicApi.getPlaylists()).slice(0, 5)
let allTracks: Track[] = []
for (const p of playlists) {
const full = await this.subsonicApi.getPlaylist(p.id)
if (full.tracks?.length) {
allTracks = this.takeUpToX(allTracks, full.tracks)
if (allTracks.length >= 100) break
}
}
if (allTracks.length) {
await this.playRandomOrTracks({ tracks: allTracks })
}
} finally {
mainStore.hideLoader()
}
},
async shuffleArtist(artistId: string) {
const mainStore = useMainStore()
mainStore.showLoader()
try {
let tracks: Track[] = []
for await (const batch of this.subsonicApi.getTracksByArtist(artistId)) {
tracks = this.takeUpToX(tracks, batch)
if (tracks.length >= 100) break
}
await this.playRandomOrTracks({ tracks })
} finally {
mainStore.hideLoader()
}
},
async radioArtist(artistId: string) {
await this.playRandomOrTracks({
tracks: await this.subsonicApi.getSimilarTracksByArtist(artistId, 50)
})
},
async radioAlbum(tracks: Track[], artists: AlbumArtist[]) {
if (!tracks?.length || !artists?.length || !artists[0]?.id)
return
const playerStore = usePlayerStore()
playerStore.setShuffle(false)
const similarTracks = await this.subsonicApi.getSimilarTracksByArtist(artists[0].id, 50)
if (similarTracks?.length)
await this.playRandomOrTracks({ tracks: similarTracks })
},
async shuffleAlbum(tracks: Track[]) {
if (!tracks?.length) return
await this.playRandomOrTracks({ tracks: tracks.slice(0, 100) })
}
}
})