Implemented list bookmarks and playlists (cli only, needs DAO).
This commit is contained in:
parent
688bea9103
commit
151ce9e462
@ -319,7 +319,30 @@ Configuration:
|
|||||||
break
|
break
|
||||||
|
|
||||||
case 'bookmarks':
|
case 'bookmarks':
|
||||||
|
if (all) list = library.getBookmarks()
|
||||||
|
else list = library.getBookmarksWhere(
|
||||||
|
playlistId: selection?.playlist?.id)
|
||||||
|
|
||||||
|
String bookmarkMatch = options?.join(" ")?.trim()
|
||||||
|
if (boolmarkMatch)
|
||||||
|
list = list.findAll { it.name =~ bookmarkMatch }
|
||||||
|
printLongMessage(makeBookmarkList(list, all))
|
||||||
|
break
|
||||||
|
|
||||||
case 'playlists':
|
case 'playlists':
|
||||||
|
if (all) list = library.getPlaylists()
|
||||||
|
else if (selection.playlist) list = [selection.playlist]
|
||||||
|
else list = library.getPlaylistsWhere(
|
||||||
|
artistId: selection?.artist?.id,
|
||||||
|
albumId: selection?.album?.id,
|
||||||
|
mediaFileId: selection?.mediaFile?.id)
|
||||||
|
|
||||||
|
String playlistMatch = options?.join(" ")?.trim()
|
||||||
|
if (playlistMatch)
|
||||||
|
list = list.findAll { it.name =~ playlistMatch }
|
||||||
|
printLongMessage(makePlaylistList(list, all))
|
||||||
|
break
|
||||||
|
|
||||||
default:
|
default:
|
||||||
printLongMessage("Unrecognized option to the ${promptStyle}" +
|
printLongMessage("Unrecognized option to the ${promptStyle}" +
|
||||||
"list${normalStyle} command. Use ${promptStyle}help list" +
|
"list${normalStyle} command. Use ${promptStyle}help list" +
|
||||||
|
Loading…
x
Reference in New Issue
Block a user