diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-12-21 00:40:43 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-12-21 00:40:43 +0100 |
commit | 533769b663fee1ba99364c7c0c3431b72b8e9abe (patch) | |
tree | 0c9e2dd89827b33f95e7de165f71d934d1af72a8 /src/protocolhandler.cpp | |
parent | Merge commit 'refs/merge-requests/76' of git://gitorious.org/rekonq/mainline ... (diff) | |
download | rekonq-533769b663fee1ba99364c7c0c3431b72b8e9abe.tar.xz |
Improvements in ftp handling:
- show dirs
- download files
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r-- | src/protocolhandler.cpp | 35 |
1 files changed, 29 insertions, 6 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp index 57f0492e..a40cc0f9 100644 --- a/src/protocolhandler.cpp +++ b/src/protocolhandler.cpp @@ -45,6 +45,8 @@ #include <KIconLoader> #include <KDirLister> #include <KFileItem> +#include <KJob> +#include <kio/udsentry.h> // Qt Includes #include <QLatin1String> @@ -97,17 +99,19 @@ bool ProtocolHandler::handle(const QNetworkRequest &request, QWebFrame *frame) } } - // "ftp" handling + // "ftp" handling. A little bit "hard" handling this. Hope I found + // the best solution. + // My idea is: webkit cannot handle in any way ftp. So we have surely to return true here. + // We start trying to guess what the url represent: it's a dir? show its contents (and download them). + // it's a file? download it. It's another thing? beat me, but I don't know what to do... if( _url.protocol() == QLatin1String("ftp") ) { - // TODO - // I need to know if the url represent a file - // and, in that case we have to just return false! - _lister->openUrl(_url); + KIO::StatJob *job = KIO::stat(_url); + connect(job, SIGNAL(result(KJob*)), this, SLOT( slotMostLocalUrlResult(KJob*) )); return true; } - // "file" handling + // "file" handling. This is quite trivial :) if(_url.protocol() == QLatin1String("file") ) { QFileInfo fileInfo( _url.path() ); @@ -133,6 +137,7 @@ QString ProtocolHandler::dirHandling(const KFileItemList &list) QString errStr = i18n("Error opening: %1: No such file or directory", rootUrl.prettyUrl() ); return errStr; } + if (!mainItem.isReadable()) { QString errStr = i18n("Unable to read %1", rootUrl.prettyUrl() ); @@ -221,3 +226,21 @@ void ProtocolHandler::showResults(const KFileItemList &list) Application::historyManager()->addHistoryEntry( _url.prettyUrl() ); } + +void ProtocolHandler::slotMostLocalUrlResult(KJob *job) +{ + if(job->error()) + { + // TODO + kDebug() << "error"; + } + else + { + KIO::StatJob *statJob = static_cast<KIO::StatJob*>(job); + KIO::UDSEntry entry = statJob->statResult(); + if( entry.isDir() ) + _lister->openUrl(_url); + else + emit downloadUrl(_url); + } +} |