/* This file is part of the KDE project * * Copyright (C) 2002 David Faure * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License version 2, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "browserrun.h" #include "browserrun_p.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "browseropenorsavequestion.h" #include using namespace KParts; class BrowserRun::BrowserRunPrivate { public: bool m_bHideErrorDialog; bool m_bRemoveReferrer; bool m_bTrustedSource; KParts::OpenUrlArguments m_args; KParts::BrowserArguments m_browserArgs; KParts::ReadOnlyPart *m_part; // QGuardedPtr? QPointer m_window; QString m_mimeType; QString m_contentDisposition; }; BrowserRun::BrowserRun( const KUrl& url, const KParts::OpenUrlArguments& args, const KParts::BrowserArguments& browserArgs, KParts::ReadOnlyPart *part, QWidget* window, bool removeReferrer, bool trustedSource, bool hideErrorDialog ) : KRun( url, window, 0 /*mode*/, false /*is_local_file known*/, false /* no GUI */ ), d(new BrowserRunPrivate) { d->m_bHideErrorDialog = hideErrorDialog; d->m_bRemoveReferrer = removeReferrer; d->m_bTrustedSource = trustedSource; d->m_args = args; d->m_browserArgs = browserArgs; d->m_part = part; d->m_window = window; } BrowserRun::~BrowserRun() { delete d; } KParts::ReadOnlyPart* BrowserRun::part() const { return d->m_part; } KUrl BrowserRun::url() const { return KRun::url(); } void BrowserRun::init() { if ( d->m_bHideErrorDialog ) { // ### KRun doesn't call a virtual method when it finds out that the URL // is either malformed, or points to a non-existing local file... // So we need to reimplement some of the checks, to handle d->m_bHideErrorDialog if ( !KRun::url().isValid() ) { redirectToError( KIO::ERR_MALFORMED_URL, KRun::url().url() ); return; } if ( !isLocalFile() && !hasError() && KRun::url().isLocalFile() ) setIsLocalFile( true ); if ( isLocalFile() ) { KDE_struct_stat buff; if ( KDE::stat( KRun::url().toLocalFile(), &buff ) == -1 ) { kDebug(1000) << KRun::url().toLocalFile() << "doesn't exist."; redirectToError( KIO::ERR_DOES_NOT_EXIST, KRun::url().toLocalFile() ); return; } setMode( buff.st_mode ); // while we're at it, save it for KRun::init() to use it } } KRun::init(); } void BrowserRun::scanFile() { kDebug(1000) << KRun::url(); // Let's check for well-known extensions // Not when there is a query in the URL, in any case. // Optimization for http/https, findByURL doesn't trust extensions over http. QString protocol = KRun::url().protocol(); if (!KProtocolInfo::proxiedBy(protocol).isEmpty()) { QString dummy; protocol = KProtocolManager::slaveProtocol(KRun::url(), dummy); } if ( KRun::url().query().isEmpty() && !protocol.startsWith(QLatin1String("http"))) { KMimeType::Ptr mime = KMimeType::findByUrl( KRun::url() ); Q_ASSERT( mime ); if ( !mime->isDefault() || isLocalFile() ) { kDebug(1000) << "MIME TYPE is" << mime->name(); mimeTypeDetermined( mime->name() ); return; } } QMap& metaData = d->m_args.metaData(); if ( d->m_part ) { const QString proto = d->m_part->url().protocol(); if (proto == "https" || proto == "webdavs") { metaData.insert("main_frame_request", "TRUE" ); metaData.insert("ssl_was_in_use", "TRUE" ); // metaData.insert("ssl_activate_warnings", "TRUE" ); } else if (proto == "http" || proto == "webdav") { // metaData.insert("ssl_activate_warnings", "TRUE" ); metaData.insert("ssl_was_in_use", "FALSE" ); } // Set the PropagateHttpHeader meta-data if it has not already been set... if (!metaData.contains("PropagateHttpHeader")) metaData.insert("PropagateHttpHeader", "TRUE"); } KIO::TransferJob *job; if ( d->m_browserArgs.doPost() && KRun::url().protocol().startsWith(QLatin1String("http"))) { job = KIO::http_post( KRun::url(), d->m_browserArgs.postData, KIO::HideProgressInfo ); job->addMetaData( "content-type", d->m_browserArgs.contentType() ); } else { job = KIO::get(KRun::url(), d->m_args.reload() ? KIO::Reload : KIO::NoReload, KIO::HideProgressInfo); } if ( d->m_bRemoveReferrer ) metaData.remove("referrer"); job->addMetaData( metaData ); job->ui()->setWindow( d->m_window ); connect( job, SIGNAL(result(KJob*)), this, SLOT(slotBrowserScanFinished(KJob*))); connect( job, SIGNAL(mimetype(KIO::Job*,QString)), this, SLOT(slotBrowserMimetype(KIO::Job*,QString))); setJob( job ); } void BrowserRun::slotBrowserScanFinished(KJob *job) { kDebug(1000) << job->error(); if ( job->error() == KIO::ERR_IS_DIRECTORY ) { // It is in fact a directory. This happens when HTTP redirects to FTP. // Due to the "protocol doesn't support listing" code in BrowserRun, we // assumed it was a file. kDebug(1000) << "It is in fact a directory!"; // Update our URL in case of a redirection KRun::setUrl( static_cast(job)->url() ); setJob( 0 ); mimeTypeDetermined( "inode/directory" ); } else { if ( job->error() ) handleError( job ); else KRun::slotScanFinished(job); } } static KMimeType::Ptr fixupMimeType (const QString& mimeType, const QString& fileName) { KMimeType::Ptr mime = KMimeType::mimeType(mimeType); if ((!mime || mime->isDefault()) && !fileName.isEmpty()) { mime = KMimeType::findByUrl(fileName, 0, false, true); } return mime; } void BrowserRun::slotBrowserMimetype( KIO::Job *_job, const QString &type ) { Q_ASSERT( _job == KRun::job() ); Q_UNUSED(_job) KIO::TransferJob *job = static_cast(KRun::job()); // Update our URL in case of a redirection //kDebug(1000) << "old URL=" << KRun::url(); //kDebug(1000) << "new URL=" << job->url(); setUrl( job->url() ); if (job->isErrorPage()) { d->m_mimeType = type; handleError(job); setJob( 0 ); } else { kDebug(1000) << "found" << type << "for" << KRun::url(); // Suggested filename given by the server (e.g. HTTP content-disposition) // When set, we should really be saving instead of embedding const QString suggestedFileName = job->queryMetaData("content-disposition-filename"); setSuggestedFileName(suggestedFileName); // store it (in KRun) //kDebug(1000) << "suggestedFileName=" << suggestedFileName; d->m_contentDisposition = job->queryMetaData("content-disposition-type"); const QString modificationTime = job->queryMetaData("content-disposition-modification-date"); if (!modificationTime.isEmpty()) { d->m_args.metaData().insert(QLatin1String("content-disposition-modification-date"), modificationTime); } QMapIterator it (job->metaData()); while (it.hasNext()) { it.next(); if (it.key().startsWith(QLatin1String("ssl_"), Qt::CaseInsensitive)) d->m_args.metaData().insert(it.key(), it.value()); } // Make a copy to avoid a dead reference QString _type = type; job->putOnHold(); setJob( 0 ); // If the current mime-type is the default mime-type, then attempt to // determine the "real" mimetype from the file name. KMimeType::Ptr mimePtr = fixupMimeType(_type, suggestedFileName.isEmpty() ? url().fileName() : suggestedFileName); if (mimePtr && mimePtr->name() != _type) { _type = mimePtr->name(); } mimeTypeDetermined( _type ); } } BrowserRun::NonEmbeddableResult BrowserRun::handleNonEmbeddable(const QString& mimeType) { return handleNonEmbeddable(mimeType, NULL); } BrowserRun::NonEmbeddableResult BrowserRun::handleNonEmbeddable(const QString& _mimeType, KService::Ptr* selectedService) { QString mimeType( _mimeType ); Q_ASSERT( !hasFinished() ); // only come here if the mimetype couldn't be embedded // Support for saving remote files. if ( mimeType != "inode/directory" && // dirs can't be saved !KRun::url().isLocalFile() ) { if ( isTextExecutable(mimeType) ) mimeType = QLatin1String("text/plain"); // view, don't execute // ... -> ask whether to save BrowserOpenOrSaveQuestion question(d->m_window, KRun::url(), mimeType); question.setSuggestedFileName(suggestedFileName()); if (selectedService) question.setFeatures(BrowserOpenOrSaveQuestion::ServiceSelection); BrowserOpenOrSaveQuestion::Result res = question.askOpenOrSave(); if (res == BrowserOpenOrSaveQuestion::Save) { save( KRun::url(), suggestedFileName() ); kDebug(1000) << "Save: returning Handled"; setFinished( true ); return Handled; } else if (res == BrowserOpenOrSaveQuestion::Cancel) { // saving done or canceled kDebug(1000) << "Cancel: returning Handled"; setFinished( true ); return Handled; } else // "Open" chosen (done by KRun::foundMimeType, called when returning NotHandled) { // If we were in a POST, we can't just pass a URL to an external application. // We must save the data to a tempfile first. if ( d->m_browserArgs.doPost() ) { kDebug(1000) << "request comes from a POST, can't pass a URL to another app, need to save"; d->m_mimeType = mimeType; QString extension; QString fileName = suggestedFileName().isEmpty() ? KRun::url().fileName() : suggestedFileName(); int extensionPos = fileName.lastIndexOf( '.' ); if ( extensionPos != -1 ) extension = fileName.mid( extensionPos ); // keep the '.' KTemporaryFile tempFile; tempFile.setSuffix(extension); tempFile.setAutoRemove(false); tempFile.open(); KUrl destURL; destURL.setPath( tempFile.fileName() ); KIO::Job *job = KIO::file_copy( KRun::url(), destURL, 0600, KIO::Overwrite ); job->ui()->setWindow(d->m_window); connect( job, SIGNAL(result(KJob*)), this, SLOT(slotCopyToTempFileResult(KJob*)) ); return Delayed; // We'll continue after the job has finished } if (selectedService && question.selectedService()) { *selectedService = question.selectedService(); // KRun will use this when starting an app KRun::setPreferredService(question.selectedService()->desktopEntryName()); } } } // Check if running is allowed if ( !d->m_bTrustedSource && // ... and untrusted source... !allowExecution( mimeType, KRun::url() ) ) // ...and the user said no (for executables etc.) { setFinished( true ); return Handled; } KIO::Scheduler::publishSlaveOnHold(); // publish any slave on hold so it can be reused. return NotHandled; } //static bool BrowserRun::allowExecution( const QString &mimeType, const KUrl &url ) { if ( !KRun::isExecutable( mimeType ) ) return true; if ( !url.isLocalFile() ) // Don't permit to execute remote files return false; return ( KMessageBox::warningContinueCancel( 0, i18n( "Do you really want to execute '%1'?", url.prettyUrl() ), i18n("Execute File?"), KGuiItem(i18n("Execute")) ) == KMessageBox::Continue ); } // Default implementation, overridden in KHTMLRun void BrowserRun::save( const KUrl & url, const QString & suggestedFileName ) { saveUrl(url, suggestedFileName, d->m_window, d->m_args); } // static void BrowserRun::simpleSave( const KUrl & url, const QString & suggestedFileName, QWidget* window ) { saveUrl(url, suggestedFileName, window, KParts::OpenUrlArguments()); } void KParts::BrowserRun::saveUrl(const KUrl & url, const QString & suggestedFileName, QWidget* window, const KParts::OpenUrlArguments& args) { // DownloadManager <-> konqueror integration // find if the integration is enabled // the empty key means no integration // only use the downloadmanager for non-local urls if ( !url.isLocalFile() ) { KConfigGroup cfg = KSharedConfig::openConfig("konquerorrc", KConfig::NoGlobals)->group("HTML Settings"); QString downloadManger = cfg.readPathEntry("DownloadManager", QString()); if (!downloadManger.isEmpty()) { // then find the download manager location kDebug(1000) << "Using: "<setOperationMode( KFileDialog::Saving ); dlg->setCaption(i18n("Save As")); dlg->setConfirmOverwrite(true); QString name; if ( !suggestedFileName.isEmpty() ) name = suggestedFileName; else name = url.fileName(KUrl::ObeyTrailingSlash); // can be empty, e.g. in case http://www.kde.org/ dlg->setSelection(name); if ( dlg->exec() ) { KUrl destURL( dlg->selectedUrl() ); if ( destURL.isValid() ) { saveUrlUsingKIO(url, destURL, window, args.metaData()); } } delete dlg; } void BrowserRun::saveUrlUsingKIO(const KUrl & srcUrl, const KUrl& destUrl, QWidget* window, const QMap &metaData) { KIO::FileCopyJob *job = KIO::file_copy(srcUrl, destUrl, -1, KIO::Overwrite); const QString modificationTime = metaData[QLatin1String("content-disposition-modification-date")]; if (!modificationTime.isEmpty()) { job->setModificationTime(KDateTime::fromString(modificationTime, KDateTime::RFCDate).dateTime()); } job->setMetaData(metaData); job->addMetaData("MaxCacheSize", "0"); // Don't store in http cache. job->addMetaData("cache", "cache"); // Use entry from cache if available. job->ui()->setWindow(window); job->ui()->setAutoErrorHandlingEnabled( true ); new DownloadJobWatcher(job, metaData); } void BrowserRun::slotStatResult( KJob *job ) { if ( job->error() ) { kDebug(1000) << job->errorString(); handleError( job ); } else KRun::slotStatResult( job ); } void BrowserRun::handleError( KJob * job ) { if ( !job ) { // Shouldn't happen, see docu. kWarning(1000) << "handleError called with job=0! hideErrorDialog=" << d->m_bHideErrorDialog; return; } KIO::TransferJob *tjob = qobject_cast(job); if (tjob && tjob->isErrorPage() && !job->error()) { // The default handling of error pages is to show them like normal pages // But this is done here in handleError so that KHTMLRun can reimplement it tjob->putOnHold(); setJob(0); if (!d->m_mimeType.isEmpty()) mimeTypeDetermined(d->m_mimeType); return; } if (d->m_bHideErrorDialog && job->error() != KIO::ERR_NO_CONTENT) { redirectToError( job->error(), job->errorText() ); return; } // Reuse code in KRun, to benefit from d->m_showingError etc. KRun::slotStatResult( job ); } // static KUrl BrowserRun::makeErrorUrl(int error, const QString& errorText, const QString& initialUrl) { /* * The format of the error:/ URL is error:/?query#url, * where two variables are passed in the query: * error = int kio error code, errText = QString error text from kio * The sub-url is the URL that we were trying to open. */ KUrl newURL(QString("error:/?error=%1&errText=%2") .arg( error ) .arg( QString::fromUtf8( QUrl::toPercentEncoding( errorText ) ) ) ); QString cleanedOrigUrl = initialUrl; KUrl runURL = cleanedOrigUrl; if (runURL.isValid()) { runURL.setPass( QString() ); // don't put the password in the error URL cleanedOrigUrl = runURL.url(); } newURL.setFragment(cleanedOrigUrl); return newURL; // The kde3 approach broke with invalid urls, now that they become empty in qt4. //KUrl::List lst; //lst << newURL << runURL; //return KUrl::join(lst); } void BrowserRun::redirectToError( int error, const QString& errorText ) { /** * To display this error in KHTMLPart instead of inside a dialog box, * we tell konq that the mimetype is text/html, and we redirect to * an error:/ URL that sends the info to khtml. */ KRun::setUrl(makeErrorUrl(error, errorText, url().url())); setJob( 0 ); mimeTypeDetermined( "text/html" ); } void BrowserRun::slotCopyToTempFileResult(KJob *job) { if ( job->error() ) { job->uiDelegate()->showErrorMessage(); } else { // Same as KRun::foundMimeType but with a different URL (void) (KRun::runUrl( static_cast(job)->destUrl(), d->m_mimeType, d->m_window )); } setError( true ); // see above setFinished( true ); } bool BrowserRun::isTextExecutable( const QString &mimeType ) { return ( mimeType == "application/x-desktop" || mimeType == "application/x-shellscript" ); } bool BrowserRun::hideErrorDialog() const { return d->m_bHideErrorDialog; } QString BrowserRun::contentDisposition() const { return d->m_contentDisposition; } bool BrowserRun::serverSuggestsSave() const { // RfC 2183, section 2.8: // Unrecognized disposition types should be treated as `attachment'. return !contentDisposition().isEmpty() && (contentDisposition() != "inline"); } KParts::OpenUrlArguments& KParts::BrowserRun::arguments() { return d->m_args; } KParts::BrowserArguments& KParts::BrowserRun::browserArguments() { return d->m_browserArgs; } #include "moc_browserrun.cpp" #include "moc_browserrun_p.cpp"