c8fd0937b0
This reverts commit bf2c7831c8
.
This was a bad idea as we need to access some of the main attributes
from commands via instance=...
107 lines
3.6 KiB
Python
107 lines
3.6 KiB
Python
# Copyright 2014 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
#
|
|
# This file is part of qutebrowser.
|
|
#
|
|
# qutebrowser is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# qutebrowser 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""The main browser widgets."""
|
|
|
|
import sip
|
|
from PyQt5.QtWidgets import QApplication
|
|
from PyQt5.QtNetwork import QNetworkReply
|
|
from PyQt5.QtWebKitWidgets import QWebPage
|
|
|
|
import qutebrowser.utils.url as urlutils
|
|
import qutebrowser.config.config as config
|
|
from qutebrowser.utils.misc import read_file
|
|
|
|
|
|
class BrowserPage(QWebPage):
|
|
|
|
"""Our own QWebPage with advanced features.
|
|
|
|
Attributes:
|
|
_extension_handlers: Mapping of QWebPage extensions to their handlers.
|
|
network_access_manager: The QNetworkAccessManager used.
|
|
"""
|
|
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
self._extension_handlers = {
|
|
QWebPage.ErrorPageExtension: self._handle_errorpage,
|
|
}
|
|
self.setNetworkAccessManager(QApplication.instance().networkmanager)
|
|
|
|
def _handle_errorpage(self, opt, out):
|
|
"""Display an error page if needed.
|
|
|
|
Loosly based on Helpviewer/HelpBrowserWV.py from eric5
|
|
(line 260 @ 5d937eb378dd)
|
|
|
|
Args:
|
|
opt: The QWebPage.ErrorPageExtensionOption instance.
|
|
out: The QWebPage.ErrorPageExtensionReturn instance to write return
|
|
values to.
|
|
|
|
Return:
|
|
False if no error page should be displayed, True otherwise.
|
|
"""
|
|
info = sip.cast(opt, QWebPage.ErrorPageExtensionOption)
|
|
errpage = sip.cast(out, QWebPage.ErrorPageExtensionReturn)
|
|
errpage.baseUrl = info.url
|
|
if (info.domain == QWebPage.QtNetwork and
|
|
info.error == QNetworkReply.OperationCanceledError):
|
|
return False
|
|
urlstr = urlutils.urlstring(info.url)
|
|
title = "Error loading page: {}".format(urlstr)
|
|
errpage.content = read_file('html/error.html').format(
|
|
title=title, url=urlstr, error=info.errorString, icon='')
|
|
return True
|
|
|
|
def userAgentForUrl(self, url):
|
|
"""Override QWebPage::userAgentForUrl to customize the user agent."""
|
|
ua = config.get('network', 'user-agent')
|
|
if not ua:
|
|
return super().userAgentForUrl(url)
|
|
else:
|
|
return ua
|
|
|
|
def supportsExtension(self, ext):
|
|
"""Override QWebPage::supportsExtension to provide error pages.
|
|
|
|
Args:
|
|
ext: The extension to check for.
|
|
|
|
Return:
|
|
True if the extension can be handled, False otherwise.
|
|
"""
|
|
return ext in self._extension_handlers
|
|
|
|
def extension(self, ext, opt, out):
|
|
"""Override QWebPage::extension to provide error pages.
|
|
|
|
Args:
|
|
ext: The extension.
|
|
opt: Extension options instance.
|
|
out: Extension output instance.
|
|
|
|
Return:
|
|
Handler return value.
|
|
"""
|
|
try:
|
|
handler = self._extension_handlers[ext]
|
|
except KeyError:
|
|
return super().extension(ext, opt, out)
|
|
return handler(opt, out)
|