New command searchplaylist

This commit is contained in:
jcorporation
2024-08-02 23:45:16 +02:00
parent f7790430a0
commit d62f7cdc34
7 changed files with 104 additions and 7 deletions

View File

@@ -176,6 +176,7 @@ static constexpr struct command commands[] = {
{ "searchaddpl", PERMISSION_CONTROL, 2, -1, handle_searchaddpl },
{ "searchcount", PERMISSION_READ, 1, -1, handle_searchcount },
#endif
{ "searchplaylist", PERMISSION_READ, 2, 3, handle_searchplaylist },
{ "seek", PERMISSION_PLAYER, 2, 2, handle_seek },
{ "seekcur", PERMISSION_PLAYER, 1, 1, handle_seekcur },
{ "seekid", PERMISSION_PLAYER, 2, 2, handle_seekid },

View File

@@ -15,6 +15,7 @@
#include "PlaylistError.hxx"
#include "db/PlaylistVector.hxx"
#include "SongLoader.hxx"
#include "song/Filter.hxx"
#include "song/DetachedSong.hxx"
#include "BulkEdit.hxx"
#include "playlist/Length.hxx"
@@ -26,6 +27,7 @@
#include "Mapper.hxx"
#include "fs/AllocatedPath.hxx"
#include "time/ChronoUtil.hxx"
#include "util/Exception.hxx"
#include "util/UriExtract.hxx"
#include "LocateUri.hxx"
@@ -129,7 +131,7 @@ handle_listplaylist(Client &client, Request args, Response &r)
RangeArg range = args.ParseOptional(1, RangeArg::All());
playlist_file_print(r, client.GetPartition(), SongLoader(client),
name, range.start, range.end, false);
name, range.start, range.end, false, nullptr);
return CommandResult::OK;
}
@@ -146,7 +148,39 @@ handle_listplaylistinfo(Client &client, Request args, Response &r)
RangeArg range = args.ParseOptional(1, RangeArg::All());
playlist_file_print(r, client.GetPartition(), SongLoader(client),
name, range.start, range.end, true);
name, range.start, range.end, true, nullptr);
return CommandResult::OK;
}
CommandResult
handle_searchplaylist(Client &client, Request args, Response &r)
{
const auto name = LocateUri(UriPluginKind::PLAYLIST, args.front(),
&client
#ifdef ENABLE_DATABASE
, nullptr
#endif
);
args.shift();
RangeArg window = RangeArg::All();
if (args.size() == 2) {
window = args.ParseRange(args.size() - 1);
args.pop_back();
}
SongFilter filter;
try {
filter.Parse(args, true);
} catch (...) {
r.Error(ACK_ERROR_ARG,
GetFullMessage(std::current_exception()).c_str());
return CommandResult::ERROR;
}
filter.Optimize();
playlist_file_print(r, client.GetPartition(), SongLoader(client),
name, window.start, window.end, true, &filter);
return CommandResult::OK;
}

View File

@@ -26,6 +26,9 @@ handle_listplaylist(Client &client, Request request, Response &response);
CommandResult
handle_listplaylistinfo(Client &client, Request request, Response &response);
CommandResult
handle_searchplaylist(Client &client, Request request, Response &response);
CommandResult
handle_playlistlength(Client &client, Request request, Response &response);