mirror of
https://github.com/koel/koel
synced 2024-12-23 19:13:06 +00:00
29 lines
853 B
TypeScript
29 lines
853 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,
|
|
}
|
|
}
|