koel/resources/assets/js/services/downloadService.ts

47 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-04-20 09:37:22 +00:00
import { favoriteStore, playlistStore } from '@/stores'
2022-05-14 18:49:45 +00:00
import { authService } from '@/services'
import { arrayify } from '@/utils'
2022-04-15 14:24:30 +00:00
2022-04-24 08:50:45 +00:00
export const downloadService = {
2022-05-13 17:58:38 +00:00
fromSongs (songs: Song | Song[]) {
2022-04-20 09:37:22 +00:00
const query = arrayify(songs).reduce((q, song) => `songs[]=${song.id}&${q}`, '')
2022-04-15 14:24:30 +00:00
this.trigger(`songs?${query}`)
},
2022-05-13 17:58:38 +00:00
fromAlbum (album: Album) {
2022-04-15 14:24:30 +00:00
this.trigger(`album/${album.id}`)
},
2022-05-13 17:58:38 +00:00
fromArtist (artist: Artist) {
2022-04-15 14:24:30 +00:00
this.trigger(`artist/${artist.id}`)
},
2022-05-13 17:58:38 +00:00
fromPlaylist (playlist: Playlist) {
2022-04-15 14:24:30 +00:00
if (playlistStore.getSongs(playlist).length) {
this.trigger(`playlist/${playlist.id}`)
}
},
2022-05-13 17:58:38 +00:00
fromFavorites () {
2022-04-15 14:24:30 +00:00
if (favoriteStore.all.length) {
this.trigger('favorites')
}
},
/**
* Build a download link using a segment and trigger it.
*
* @param {string} uri The uri segment, corresponding to the song(s),
* artist, playlist, or album.
*/
trigger: (uri: string) => {
const sep = uri.includes('?') ? '&' : '?'
2022-04-24 08:50:45 +00:00
const url = `${window.BASE_URL}download/${uri}${sep}api_token=${authService.getToken()}`
2022-04-15 14:24:30 +00:00
const iframe = document.createElement('iframe')
iframe.style.display = 'none'
iframe.setAttribute('src', url)
document.body.appendChild(iframe)
2022-04-15 14:24:30 +00:00
}
}