/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtWebEngine module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qquickwebengineprofile_p.h" #include "qquickwebenginedownloaditem_p.h" #include "qquickwebenginedownloaditem_p_p.h" #include "qquickwebengineprofile_p_p.h" #include #include "browser_context_adapter.h" QT_BEGIN_NAMESPACE static inline QQuickWebEngineDownloadItem::DownloadState toDownloadState(int state) { switch (state) { case BrowserContextAdapterClient::DownloadInProgress: return QQuickWebEngineDownloadItem::DownloadInProgress; case BrowserContextAdapterClient::DownloadCompleted: return QQuickWebEngineDownloadItem::DownloadCompleted; case BrowserContextAdapterClient::DownloadCancelled: return QQuickWebEngineDownloadItem::DownloadCancelled; case BrowserContextAdapterClient::DownloadInterrupted: return QQuickWebEngineDownloadItem::DownloadInterrupted; default: Q_UNREACHABLE(); return QQuickWebEngineDownloadItem::DownloadCancelled; } } QQuickWebEngineProfilePrivate::QQuickWebEngineProfilePrivate(BrowserContextAdapter* browserContext, bool ownsContext) : m_browserContext(browserContext) { if (ownsContext) m_browserContextRef = browserContext; m_browserContext->setClient(this); } QQuickWebEngineProfilePrivate::~QQuickWebEngineProfilePrivate() { m_browserContext->setClient(0); Q_FOREACH (QQuickWebEngineDownloadItem* download, m_ongoingDownloads) { if (download) download->cancel(); } m_ongoingDownloads.clear(); } void QQuickWebEngineProfilePrivate::cancelDownload(quint32 downloadId) { m_browserContext->cancelDownload(downloadId); } void QQuickWebEngineProfilePrivate::downloadDestroyed(quint32 downloadId) { m_ongoingDownloads.remove(downloadId); cancelDownload(downloadId); } void QQuickWebEngineProfilePrivate::downloadRequested(DownloadItemInfo &info) { Q_Q(QQuickWebEngineProfile); Q_ASSERT(!m_ongoingDownloads.contains(info.id)); QQuickWebEngineDownloadItemPrivate *itemPrivate = new QQuickWebEngineDownloadItemPrivate(this); itemPrivate->downloadId = info.id; itemPrivate->downloadState = QQuickWebEngineDownloadItem::DownloadInProgress; itemPrivate->downloadPath = info.path; QQuickWebEngineDownloadItem *download = new QQuickWebEngineDownloadItem(itemPrivate, q); m_ongoingDownloads.insert(info.id, download); QQmlEngine::setObjectOwnership(download, QQmlEngine::JavaScriptOwnership); Q_EMIT q->downloadStarted(download); download->d_func()->downloadStarted = true; info.path = download->path(); info.cancelled = download->state() == QQuickWebEngineDownloadItem::DownloadCancelled; } void QQuickWebEngineProfilePrivate::downloadUpdated(const DownloadItemInfo &info) { if (!m_ongoingDownloads.contains(info.id)) return; Q_Q(QQuickWebEngineProfile); QQuickWebEngineDownloadItem* download = m_ongoingDownloads.value(info.id).data(); if (!download) { downloadDestroyed(info.id); return; } download->d_func()->update(toDownloadState(info.state), info.percentComplete); if (info.state != BrowserContextAdapterClient::DownloadInProgress) { Q_EMIT q->downloadFinished(download); m_ongoingDownloads.remove(info.id); } } /*! \qmltype WebEngineProfile \instantiates QQuickWebEngineProfile \inqmlmodule QtWebEngine 1.1 \since QtWebEngine 1.1 \brief A WebEngineProfile contains common settings for multiple WebEngineView. WebEngineProfile contains settings and history shared by all WebEngineView that belong to the profile. A default profile is built-in that all web pages not specifically created with another profile belongs to. */ QQuickWebEngineProfile::QQuickWebEngineProfile() : d_ptr(new QQuickWebEngineProfilePrivate(new BrowserContextAdapter(false), true)) { d_ptr->q_ptr = this; } QQuickWebEngineProfile::QQuickWebEngineProfile(QQuickWebEngineProfilePrivate *privatePtr) : d_ptr(privatePtr) { d_ptr->q_ptr = this; } QQuickWebEngineProfile::~QQuickWebEngineProfile() { } /*! \qmlproperty QString WebEngineProfile::storageName The storage name is used to give each profile that uses the disk separate subdirectories for persistent data and cache. */ QString QQuickWebEngineProfile::storageName() const { const Q_D(QQuickWebEngineProfile); return d->browserContext()->storageName(); } void QQuickWebEngineProfile::setStorageName(const QString &name) { Q_D(QQuickWebEngineProfile); if (d->browserContext()->storageName() == name) return; BrowserContextAdapter::HttpCacheType oldCacheType = d->browserContext()->httpCacheType(); BrowserContextAdapter::PersistentCookiesPolicy oldPolicy = d->browserContext()->persistentCookiesPolicy(); d->browserContext()->setStorageName(name); emit storageNameChanged(); emit persistentStoragePathChanged(); emit cachePathChanged(); if (d->browserContext()->httpCacheType() != oldCacheType) emit httpCacheTypeChanged(); if (d->browserContext()->persistentCookiesPolicy() != oldPolicy) emit persistentCookiesPolicyChanged(); } /*! \qmlproperty bool WebEngineProfile::offTheRecord An offTheRecord profile forces cookies and HTTP cache to be in memory, but also force all other normally persistent data to be stored in memory. */ bool QQuickWebEngineProfile::isOffTheRecord() const { const Q_D(QQuickWebEngineProfile); return d->browserContext()->isOffTheRecord(); } void QQuickWebEngineProfile::setOffTheRecord(bool offTheRecord) { Q_D(QQuickWebEngineProfile); if (d->browserContext()->isOffTheRecord() == offTheRecord) return; BrowserContextAdapter::HttpCacheType oldCacheType = d->browserContext()->httpCacheType(); BrowserContextAdapter::PersistentCookiesPolicy oldPolicy = d->browserContext()->persistentCookiesPolicy(); d->browserContext()->setOffTheRecord(offTheRecord); emit offTheRecordChanged(); if (d->browserContext()->httpCacheType() != oldCacheType) emit httpCacheTypeChanged(); if (d->browserContext()->persistentCookiesPolicy() != oldPolicy) emit persistentCookiesPolicyChanged(); } /*! \qmlproperty QString WebEngineProfile::persistentStoragePath The persistent storage path is where persistent data for the browser and web content is stored. Persistent data includes persistent cookies, HTML5 local storage and visited links. By default this is below QStandardPaths::writableLocation(QStandardPaths::DataLocation) in a storageName specific directory. */ QString QQuickWebEngineProfile::persistentStoragePath() const { const Q_D(QQuickWebEngineProfile); return d->browserContext()->dataPath(); } void QQuickWebEngineProfile::setPersistentStoragePath(const QString &path) { Q_D(QQuickWebEngineProfile); if (persistentStoragePath() == path) return; d->browserContext()->setDataPath(path); emit persistentStoragePathChanged(); } /*! \qmlproperty QString WebEngineProfile::cachePath By default this is below QStandardPaths::writableLocation(QStandardPaths::CacheLocation) in a storageName specific directory. */ QString QQuickWebEngineProfile::cachePath() const { const Q_D(QQuickWebEngineProfile); return d->browserContext()->cachePath(); } void QQuickWebEngineProfile::setCachePath(const QString &path) { Q_D(QQuickWebEngineProfile); if (cachePath() == path) return; d->browserContext()->setCachePath(path); emit cachePathChanged(); } /*! \qmlproperty QString WebEngineProfile::httpUserAgent The user-agent string send with HTTP to identify the browser. */ QString QQuickWebEngineProfile::httpUserAgent() const { const Q_D(QQuickWebEngineProfile); return d->browserContext()->httpUserAgent(); } void QQuickWebEngineProfile::setHttpUserAgent(const QString &userAgent) { Q_D(QQuickWebEngineProfile); if (d->browserContext()->httpUserAgent() == userAgent) return; d->browserContext()->setHttpUserAgent(userAgent); emit httpUserAgentChanged(); } /*! \qmlproperty enumeration WebEngineProfile::httpCacheType The type of the HTTP cache. \table \header \li Constant \li Description \row \li MemoryHttpCache \li Use a in-memory cache. This is the only setting possible if offTheRecord is set or no cachePath is available. \row \li DiskHttpCache \li DiskHttpCache Use a disk cache. This is the default. \endtable */ QQuickWebEngineProfile::HttpCacheType QQuickWebEngineProfile::httpCacheType() const { const Q_D(QQuickWebEngineProfile); return QQuickWebEngineProfile::HttpCacheType(d->browserContext()->httpCacheType()); } void QQuickWebEngineProfile::setHttpCacheType(QQuickWebEngineProfile::HttpCacheType httpCacheType) { Q_D(QQuickWebEngineProfile); BrowserContextAdapter::HttpCacheType oldCacheType = d->browserContext()->httpCacheType(); d->browserContext()->setHttpCacheType(BrowserContextAdapter::HttpCacheType(httpCacheType)); if (d->browserContext()->httpCacheType() != oldCacheType) emit httpCacheTypeChanged(); } /*! \qmlproperty enumeration WebEngineProfile::persistentCookiesPolicy The policy of cookie persistency. \table \header \li Constant \li Description \row \li NoPersistentCookies \li Both session and persistent cookies are stored in memory. This is the only setting possible if offTheRecord is set or no persistentStoragePath is available. \row \li AllowPersistentCookies \li Cookies marked persistent are save and restored from disk, session cookies are only stored to disk for crash recovery. This is the default setting. \row \li ForcePersistentCookies \li Both session and persistent cookies are save and restored from disk. \endtable */ QQuickWebEngineProfile::PersistentCookiesPolicy QQuickWebEngineProfile::persistentCookiesPolicy() const { const Q_D(QQuickWebEngineProfile); return QQuickWebEngineProfile::PersistentCookiesPolicy(d->browserContext()->persistentCookiesPolicy()); } void QQuickWebEngineProfile::setPersistentCookiesPolicy(QQuickWebEngineProfile::PersistentCookiesPolicy newPersistentCookiesPolicy) { Q_D(QQuickWebEngineProfile); BrowserContextAdapter::PersistentCookiesPolicy oldPolicy = d->browserContext()->persistentCookiesPolicy(); d->browserContext()->setPersistentCookiesPolicy(BrowserContextAdapter::PersistentCookiesPolicy(newPersistentCookiesPolicy)); if (d->browserContext()->persistentCookiesPolicy() != oldPolicy) emit persistentCookiesPolicyChanged(); } /*! \qmlproperty int WebEngineProfile::httpCacheMaximumSize The maximum size of the HTTP cache. If 0 it means the size will be controlled automatically by QtWebEngine. The default value is 0. \sa httpCacheType */ int QQuickWebEngineProfile::httpCacheMaxSize() const { const Q_D(QQuickWebEngineProfile); return d->browserContext()->httpCacheMaxSize(); } void QQuickWebEngineProfile::setHttpCacheMaxSize(int maxSize) { Q_D(QQuickWebEngineProfile); if (d->browserContext()->httpCacheMaxSize() == maxSize) return; d->browserContext()->setHttpCacheMaxSize(maxSize); emit httpCacheMaxSizeChanged(); } QQuickWebEngineProfile *QQuickWebEngineProfile::defaultProfile() { static QQuickWebEngineProfile profile(new QQuickWebEngineProfilePrivate(BrowserContextAdapter::defaultContext(), false)); return &profile; } QT_END_NAMESPACE