|
|
@ -32,6 +32,7 @@ |
|
|
|
#include "httpconnection.h" |
|
|
|
#include "httpconnection.h" |
|
|
|
#include "httpserver.h" |
|
|
|
#include "httpserver.h" |
|
|
|
#include "eventmanager.h" |
|
|
|
#include "eventmanager.h" |
|
|
|
|
|
|
|
#include "preferences.h" |
|
|
|
#include "json.h" |
|
|
|
#include "json.h" |
|
|
|
#include "bittorrent.h" |
|
|
|
#include "bittorrent.h" |
|
|
|
#include <QTcpSocket> |
|
|
|
#include <QTcpSocket> |
|
|
@ -102,7 +103,7 @@ void HttpConnection::write() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
QString HttpConnection::translateDocument(QString data) { |
|
|
|
QString HttpConnection::translateDocument(QString data) { |
|
|
|
std::string contexts[] = {"TransferListFiltersWidget", "TransferListWidget", "PropertiesWidget", "GUI", "MainWindow", "HttpServer", "confirmDeletionDlg", "TrackerList", "TorrentFilesModel"}; |
|
|
|
std::string contexts[] = {"TransferListFiltersWidget", "TransferListWidget", "PropertiesWidget", "GUI", "MainWindow", "HttpServer", "confirmDeletionDlg", "TrackerList", "TorrentFilesModel", "options_imp"}; |
|
|
|
int i=0; |
|
|
|
int i=0; |
|
|
|
bool found = false; |
|
|
|
bool found = false; |
|
|
|
do { |
|
|
|
do { |
|
|
@ -117,7 +118,7 @@ QString HttpConnection::translateDocument(QString data) { |
|
|
|
do { |
|
|
|
do { |
|
|
|
translation = qApp->translate(contexts[context_index].c_str(), word.toLocal8Bit().data(), 0, QCoreApplication::UnicodeUTF8, 1); |
|
|
|
translation = qApp->translate(contexts[context_index].c_str(), word.toLocal8Bit().data(), 0, QCoreApplication::UnicodeUTF8, 1); |
|
|
|
++context_index; |
|
|
|
++context_index; |
|
|
|
}while(translation == word && context_index < 9); |
|
|
|
}while(translation == word && context_index < 10); |
|
|
|
//qDebug("Translation is %s", translation.toUtf8().data());
|
|
|
|
//qDebug("Translation is %s", translation.toUtf8().data());
|
|
|
|
data = data.replace(i, regex.matchedLength(), translation); |
|
|
|
data = data.replace(i, regex.matchedLength(), translation); |
|
|
|
i += translation.length(); |
|
|
|
i += translation.length(); |
|
|
@ -172,6 +173,10 @@ void HttpConnection::respond() |
|
|
|
respondFilesPropertiesJson(hash); |
|
|
|
respondFilesPropertiesJson(hash); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
if(list[1] == "preferences") { |
|
|
|
|
|
|
|
respondPreferencesJson(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (list[0] == "command") |
|
|
|
if (list[0] == "command") |
|
|
@ -254,6 +259,14 @@ void HttpConnection::respondFilesPropertiesJson(QString hash) { |
|
|
|
write(); |
|
|
|
write(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void HttpConnection::respondPreferencesJson() { |
|
|
|
|
|
|
|
EventManager* manager = parent->eventManager(); |
|
|
|
|
|
|
|
QString string = json::toJson(manager->getGlobalPreferences()); |
|
|
|
|
|
|
|
generator.setStatusLine(200, "OK"); |
|
|
|
|
|
|
|
generator.setContentTypeByExt("js"); |
|
|
|
|
|
|
|
generator.setMessage(string); |
|
|
|
|
|
|
|
write(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HttpConnection::respondCommand(QString command) |
|
|
|
void HttpConnection::respondCommand(QString command) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -310,6 +323,39 @@ void HttpConnection::respondCommand(QString command) |
|
|
|
emit resumeTorrent(parser.post("hash")); |
|
|
|
emit resumeTorrent(parser.post("hash")); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if(command == "setPreferences") { |
|
|
|
|
|
|
|
bool ok = false; |
|
|
|
|
|
|
|
int dl_limit = parser.post("dl_limit").toInt(&ok); |
|
|
|
|
|
|
|
if(ok) { |
|
|
|
|
|
|
|
BTSession->setDownloadRateLimit(dl_limit*1024); |
|
|
|
|
|
|
|
Preferences::setGlobalDownloadLimit(dl_limit); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
int up_limit = parser.post("up_limit").toInt(&ok); |
|
|
|
|
|
|
|
if(ok) { |
|
|
|
|
|
|
|
BTSession->setUploadRateLimit(up_limit*1024); |
|
|
|
|
|
|
|
Preferences::setGlobalUploadLimit(up_limit); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
int dht_state = parser.post("dht").toInt(&ok); |
|
|
|
|
|
|
|
if(ok) { |
|
|
|
|
|
|
|
BTSession->enableDHT(dht_state == 1); |
|
|
|
|
|
|
|
Preferences::setDHTEnabled(dht_state == 1); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
int mac_connec = parser.post("mac_connec").toInt(&ok); |
|
|
|
|
|
|
|
if(ok) { |
|
|
|
|
|
|
|
BTSession->setMaxConnections(mac_connec); |
|
|
|
|
|
|
|
Preferences::setMaxConnecs(mac_connec); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
int max_connec_per_torrent = parser.post("mac_connec_per_torrent").toInt(&ok); |
|
|
|
|
|
|
|
if(ok) { |
|
|
|
|
|
|
|
BTSession->setMaxConnectionsPerTorrent(max_connec_per_torrent); |
|
|
|
|
|
|
|
Preferences::setMaxConnecsPerTorrent(max_connec_per_torrent); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
int max_uploads_per_torrent = parser.post("mac_uploads_per_torrent").toInt(&ok); |
|
|
|
|
|
|
|
if(ok) { |
|
|
|
|
|
|
|
BTSession->setMaxUploadsPerTorrent(max_uploads_per_torrent); |
|
|
|
|
|
|
|
Preferences::setMaxUploadsPerTorrent(max_uploads_per_torrent); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
if(command == "setFilePrio") { |
|
|
|
if(command == "setFilePrio") { |
|
|
|
QString hash = parser.post("hash"); |
|
|
|
QString hash = parser.post("hash"); |
|
|
|
int file_id = parser.post("id").toInt(); |
|
|
|
int file_id = parser.post("id").toInt(); |
|
|
|