Move _on_proxy_authentication_required to WebEngineTab
This commit is contained in:
parent
a3456c41e4
commit
e2e9bbacce
@ -22,6 +22,7 @@
|
|||||||
import os
|
import os
|
||||||
import math
|
import math
|
||||||
import functools
|
import functools
|
||||||
|
import html
|
||||||
|
|
||||||
import sip
|
import sip
|
||||||
from PyQt5.QtCore import pyqtSlot, Qt, QEvent, QPoint, QUrl, QTimer
|
from PyQt5.QtCore import pyqtSlot, Qt, QEvent, QPoint, QUrl, QTimer
|
||||||
@ -37,7 +38,7 @@ from qutebrowser.browser.webengine import (webview, webengineelem, tabhistory,
|
|||||||
webenginesettings)
|
webenginesettings)
|
||||||
from qutebrowser.misc import miscwidgets
|
from qutebrowser.misc import miscwidgets
|
||||||
from qutebrowser.utils import (usertypes, qtutils, log, javascript, utils,
|
from qutebrowser.utils import (usertypes, qtutils, log, javascript, utils,
|
||||||
objreg, jinja, debug, version)
|
message, objreg, jinja, debug, version)
|
||||||
|
|
||||||
|
|
||||||
_qute_scheme_handler = None
|
_qute_scheme_handler = None
|
||||||
@ -682,6 +683,20 @@ class WebEngineTab(browsertab.AbstractTab):
|
|||||||
|
|
||||||
self.add_history_item.emit(url, requested_url, title)
|
self.add_history_item.emit(url, requested_url, title)
|
||||||
|
|
||||||
|
@pyqtSlot(QUrl, 'QAuthenticator*', 'QString')
|
||||||
|
def _on_proxy_authentication_required(self, _url, authenticator,
|
||||||
|
proxy_host):
|
||||||
|
"""Called when a proxy needs authentication."""
|
||||||
|
msg = "<b>{}</b> requires a username and password.".format(
|
||||||
|
html.escape(proxy_host))
|
||||||
|
answer = message.ask(
|
||||||
|
title="Proxy authentication required", text=msg,
|
||||||
|
mode=usertypes.PromptMode.user_pwd,
|
||||||
|
abort_on=[self.shutting_down, self.load_started])
|
||||||
|
if answer is not None:
|
||||||
|
authenticator.setUser(answer.user)
|
||||||
|
authenticator.setPassword(answer.password)
|
||||||
|
|
||||||
@pyqtSlot(QUrl, 'QAuthenticator*')
|
@pyqtSlot(QUrl, 'QAuthenticator*')
|
||||||
def _on_authentication_required(self, url, authenticator):
|
def _on_authentication_required(self, url, authenticator):
|
||||||
# FIXME:qtwebengine support .netrc
|
# FIXME:qtwebengine support .netrc
|
||||||
@ -759,6 +774,8 @@ class WebEngineTab(browsertab.AbstractTab):
|
|||||||
page.loadFinished.connect(self._on_load_finished)
|
page.loadFinished.connect(self._on_load_finished)
|
||||||
page.certificate_error.connect(self._on_ssl_errors)
|
page.certificate_error.connect(self._on_ssl_errors)
|
||||||
page.authenticationRequired.connect(self._on_authentication_required)
|
page.authenticationRequired.connect(self._on_authentication_required)
|
||||||
|
page.proxyAuthenticationRequired.connect(
|
||||||
|
self._on_proxy_authentication_required)
|
||||||
page.fullScreenRequested.connect(self._on_fullscreen_requested)
|
page.fullScreenRequested.connect(self._on_fullscreen_requested)
|
||||||
page.contentsSizeChanged.connect(self.contents_size_changed)
|
page.contentsSizeChanged.connect(self.contents_size_changed)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user