Browse Source

Merge pull request #2826 from pmzqla/webui-queueing

WebUI: Check if torrent queueing is enabled before changing torrent priorities
adaptive-webui-19844
sledgehammer999 10 years ago
parent
commit
7af4928b18
  1. 24
      src/webui/webapplication.cpp

24
src/webui/webapplication.cpp

@ -573,6 +573,12 @@ void WebApplication::action_command_increasePrio() @@ -573,6 +573,12 @@ void WebApplication::action_command_increasePrio()
{
CHECK_URI(0);
CHECK_PARAMETERS("hashes");
if (!Preferences::instance()->isQueueingSystemEnabled()) {
status(403, "Torrent queueing must be enabled");
return;
}
QStringList hashes = request().posts["hashes"].split("|");
std::priority_queue<QPair<int, QTorrentHandle>,
@ -606,6 +612,12 @@ void WebApplication::action_command_decreasePrio() @@ -606,6 +612,12 @@ void WebApplication::action_command_decreasePrio()
{
CHECK_URI(0);
CHECK_PARAMETERS("hashes");
if (!Preferences::instance()->isQueueingSystemEnabled()) {
status(403, "Torrent queueing must be enabled");
return;
}
QStringList hashes = request().posts["hashes"].split("|");
std::priority_queue<QPair<int, QTorrentHandle>,
@ -640,6 +652,12 @@ void WebApplication::action_command_topPrio() @@ -640,6 +652,12 @@ void WebApplication::action_command_topPrio()
{
CHECK_URI(0);
CHECK_PARAMETERS("hashes");
if (!Preferences::instance()->isQueueingSystemEnabled()) {
status(403, "Torrent queueing must be enabled");
return;
}
foreach (const QString &hash, request().posts["hashes"].split("|")) {
QTorrentHandle h = QBtSession::instance()->getTorrentHandle(hash);
if (h.is_valid()) h.queue_position_top();
@ -650,6 +668,12 @@ void WebApplication::action_command_bottomPrio() @@ -650,6 +668,12 @@ void WebApplication::action_command_bottomPrio()
{
CHECK_URI(0);
CHECK_PARAMETERS("hashes");
if (!Preferences::instance()->isQueueingSystemEnabled()) {
status(403, "Torrent queueing must be enabled");
return;
}
foreach (const QString &hash, request().posts["hashes"].split("|")) {
QTorrentHandle h = QBtSession::instance()->getTorrentHandle(hash);
if (h.is_valid()) h.queue_position_bottom();

Loading…
Cancel
Save