mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 16:23:07 -07:00
webui (c++): feature: added labels support. #648
This commit is contained in:
parent
9d051ea523
commit
76d93c23b7
4 changed files with 22 additions and 0 deletions
|
@ -110,6 +110,7 @@ QMap<QString, QMap<QString, WebApplication::Action> > WebApplication::initialize
|
|||
ADD_ACTION(command, topPrio);
|
||||
ADD_ACTION(command, bottomPrio);
|
||||
ADD_ACTION(command, recheck);
|
||||
ADD_ACTION(command, setLabel);
|
||||
ADD_ACTION(version, api);
|
||||
ADD_ACTION(version, api_min);
|
||||
ADD_ACTION(version, qbittorrent);
|
||||
|
@ -664,6 +665,24 @@ void WebApplication::action_command_recheck()
|
|||
torrent->forceRecheck();
|
||||
}
|
||||
|
||||
void WebApplication::action_command_setLabel()
|
||||
{
|
||||
CHECK_URI(0);
|
||||
CHECK_PARAMETERS("hash" << "label_obj");
|
||||
|
||||
QString hash = request().posts["hash"];
|
||||
QString label_obj = request().posts["label_obj"];
|
||||
|
||||
const QVariantMap m = json::fromJson(label_obj).toMap();
|
||||
if( m.contains("value") ) {
|
||||
QString label = m["value"].toString();
|
||||
if (!hash.isEmpty()) {
|
||||
QTorrentHandle h = QBtSession::instance()->getTorrentHandle(hash);
|
||||
QBtSession::instance()->setLabel(h, label);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool WebApplication::isPublicScope()
|
||||
{
|
||||
return (scope_ == DEFAULT_SCOPE || scope_ == VERSION_INFO);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue