mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
25 lines
818 B
TypeScript
25 lines
818 B
TypeScript
import { useAuthorization, useKoelPlus } from '@/composables'
|
|
import { arrayify } from '@/utils'
|
|
|
|
export const usePolicies = () => {
|
|
const { currentUser, isAdmin } = useAuthorization()
|
|
const { isPlus } = useKoelPlus()
|
|
|
|
const currentUserCan = {
|
|
editSong: (songs: MaybeArray<Song>) => {
|
|
if (isAdmin.value) return true
|
|
if (!isPlus.value) return false
|
|
return arrayify(songs).every(song => song.owner_id === currentUser.value.id)
|
|
},
|
|
|
|
editPlaylist: (playlist: Playlist) => playlist.user_id === currentUser.value.id,
|
|
uploadSongs: () => isAdmin.value || isPlus.value,
|
|
changeAlbumOrArtistThumbnails: () => isAdmin.value || isPlus.value // for Plus, the logic is handled in the backend
|
|
}
|
|
|
|
currentUserCan['editSongs'] = currentUserCan.editSong
|
|
|
|
return {
|
|
currentUserCan
|
|
}
|
|
}
|