Browse Source

- Added search plugin download error handling (Fallback on secondary server and then warn the user if both failed)

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
f4250d812f
  1. 2
      src/GUI.cpp
  2. 19
      src/searchEngine.cpp
  3. 1
      src/searchEngine.h

2
src/GUI.cpp

@ -397,7 +397,7 @@ void GUI::on_actionSet_upload_limit_triggered(){
void GUI::handleDownloadFromUrlFailure(const QString& url, const QString& reason){ void GUI::handleDownloadFromUrlFailure(const QString& url, const QString& reason){
// Display a message box // Display a message box
QMessageBox::critical(0, tr("Url download error"), tr("Couldn't download url: %1, reason: %2.").arg(url).arg(reason)); QMessageBox::critical(0, tr("Url download error"), tr("Couldn't download file at url: %1, reason: %2.").arg(url).arg(reason));
} }
void GUI::on_actionSet_global_upload_limit_triggered(){ void GUI::on_actionSet_global_upload_limit_triggered(){

19
src/searchEngine.cpp

@ -48,6 +48,7 @@ SearchEngine::SearchEngine(bittorrent *BTSession, QSystemTrayIcon *myTrayIcon, b
this->myTrayIcon = myTrayIcon; this->myTrayIcon = myTrayIcon;
downloader = new downloadThread(this); downloader = new downloadThread(this);
connect(downloader, SIGNAL(downloadFinished(const QString&, const QString&)), this, SLOT(novaUpdateDownloaded(const QString&, const QString&))); connect(downloader, SIGNAL(downloadFinished(const QString&, const QString&)), this, SLOT(novaUpdateDownloaded(const QString&, const QString&)));
connect(downloader, SIGNAL(downloadFromUrlFailure(const QString&, const QString&)), this, SLOT(handleNovaDownloadFailure(const QString&, const QString&)));
// Set Search results list model // Set Search results list model
SearchListModel = new QStandardItemModel(0,5); SearchListModel = new QStandardItemModel(0,5);
SearchListModel->setHeaderData(SEARCH_NAME, Qt::Horizontal, tr("Name", "i.e: file name")); SearchListModel->setHeaderData(SEARCH_NAME, Qt::Horizontal, tr("Name", "i.e: file name"));
@ -431,7 +432,7 @@ void SearchEngine::updateNova() const{
} }
} }
void SearchEngine::novaUpdateDownloaded(const QString&, const QString& filePath){ void SearchEngine::novaUpdateDownloaded(const QString& url, const QString& filePath){
float version_on_server = getNovaVersion(filePath); float version_on_server = getNovaVersion(filePath);
qDebug("Version on qbittorrent.org: %.2f", version_on_server); qDebug("Version on qbittorrent.org: %.2f", version_on_server);
if(version_on_server > getNovaVersion(misc::qBittorrentPath()+"nova.py")){ if(version_on_server > getNovaVersion(misc::qBittorrentPath()+"nova.py")){
@ -450,8 +451,13 @@ void SearchEngine::novaUpdateDownloaded(const QString&, const QString& filePath)
} }
}else{ }else{
if(version_on_server == 0.0){ if(version_on_server == 0.0){
if(url == "http://www.dchris.eu/nova/nova.zip"){
qDebug("*Warning: Search plugin update download from primary server failed, trying secondary server...");
downloader->downloadUrl("http://hydr0g3n.free.fr/nova/nova.py");
}else{
QMessageBox::information(this, tr("Search plugin update")+" -- "+tr("qBittorrent"), QMessageBox::information(this, tr("Search plugin update")+" -- "+tr("qBittorrent"),
tr("Sorry, update server is temporarily unavailable.")); tr("Sorry, update server is temporarily unavailable."));
}
}else{ }else{
QMessageBox::information(this, tr("Search plugin update -- qBittorrent"), QMessageBox::information(this, tr("Search plugin update -- qBittorrent"),
tr("Your search plugin is already up to date.")); tr("Your search plugin is already up to date."));
@ -461,13 +467,22 @@ void SearchEngine::novaUpdateDownloaded(const QString&, const QString& filePath)
QFile::remove(filePath); QFile::remove(filePath);
} }
void SearchEngine::handleNovaDownloadFailure(const QString& url, const QString& reason){
if(url == "http://www.dchris.eu/nova/nova.zip"){
qDebug("*Warning: Search plugin update download from primary server failed, trying secondary server...");
downloader->downloadUrl("http://hydr0g3n.free.fr/nova/nova.py");
}else{
// Display a message box
QMessageBox::critical(0, tr("Search plugin download error"), tr("Couldn't download search plugin update at url: %1, reason: %2.").arg(url).arg(reason));
}
}
// Download nova.py from qbittorrent.org // Download nova.py from qbittorrent.org
// Check if our nova.py is outdated and // Check if our nova.py is outdated and
// ask user for action. // ask user for action.
void SearchEngine::on_update_nova_button_clicked(){ void SearchEngine::on_update_nova_button_clicked(){
qDebug("Checking for search plugin updates on qbittorrent.org"); qDebug("Checking for search plugin updates on qbittorrent.org");
downloader->downloadUrl("http://www.dchris.eu/nova/nova.zip"); downloader->downloadUrl("http://www.dchris.eu/nova/nova.zip");
//TODO: make use of fallback url: "http://hydr0g3n.free.fr/nova/nova.py"
} }
// Slot called when search is Finished // Slot called when search is Finished

1
src/searchEngine.h

@ -83,6 +83,7 @@ class SearchEngine : public QWidget, public Ui::search_engine{
void sortSearchListInt(int index, Qt::SortOrder sortOrder); void sortSearchListInt(int index, Qt::SortOrder sortOrder);
void sortSearchListString(int index, Qt::SortOrder sortOrder); void sortSearchListString(int index, Qt::SortOrder sortOrder);
void novaUpdateDownloaded(const QString& url, const QString& path); void novaUpdateDownloaded(const QString& url, const QString& path);
void handleNovaDownloadFailure(const QString& url, const QString& reason);
}; };
#endif #endif

Loading…
Cancel
Save