2020-02-18 12:39:33 +08:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Created on 2020年2月18日
|
|
|
|
|
@author: Irony
|
2021-07-13 14:52:26 +08:00
|
|
|
|
@site: https://pyqt.site , https://github.com/PyQt5
|
2020-02-18 12:39:33 +08:00
|
|
|
|
@email: 892768447@qq.com
|
2021-07-13 14:52:26 +08:00
|
|
|
|
@file: BlockRequestData
|
2020-02-18 12:39:33 +08:00
|
|
|
|
@description: 拦截请求内容
|
|
|
|
|
"""
|
|
|
|
|
|
2021-07-13 14:52:26 +08:00
|
|
|
|
try:
|
|
|
|
|
from PyQt5.QtCore import QUrl, QFile, QIODevice, QByteArray
|
|
|
|
|
from PyQt5.QtWidgets import QApplication
|
|
|
|
|
from PyQt5.QtWebEngineCore import QWebEngineUrlSchemeHandler, \
|
|
|
|
|
QWebEngineUrlRequestInterceptor, QWebEngineUrlScheme # @UnresolvedImport
|
|
|
|
|
from PyQt5.QtWebEngineWidgets import QWebEngineView, QWebEngineProfile
|
|
|
|
|
except ImportError:
|
|
|
|
|
from PySide2.QtCore import QUrl, QFile, QIODevice, QByteArray
|
|
|
|
|
from PySide2.QtWidgets import QApplication
|
|
|
|
|
from PySide2.QtWebEngineCore import QWebEngineUrlSchemeHandler, \
|
|
|
|
|
QWebEngineUrlRequestInterceptor, QWebEngineUrlScheme # @UnresolvedImport
|
|
|
|
|
from PySide2.QtWebEngineWidgets import QWebEngineView, QWebEngineProfile
|
2020-02-18 12:39:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 自定义url协议头
|
|
|
|
|
class UrlSchemeHandler(QWebEngineUrlSchemeHandler):
|
|
|
|
|
|
|
|
|
|
def requestStarted(self, job):
|
|
|
|
|
url = job.requestUrl().toString()
|
|
|
|
|
if url == 'myurl://png':
|
|
|
|
|
file = QFile('Data/app.png', job)
|
|
|
|
|
file.open(QIODevice.ReadOnly)
|
|
|
|
|
job.reply(b'image/png', file)
|
|
|
|
|
|
2021-07-13 14:52:26 +08:00
|
|
|
|
|
2020-02-18 12:39:33 +08:00
|
|
|
|
# 请求拦截器
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class RequestInterceptor(QWebEngineUrlRequestInterceptor):
|
|
|
|
|
|
|
|
|
|
def interceptRequest(self, info):
|
|
|
|
|
url = info.requestUrl().toString()
|
|
|
|
|
# 这里演示只是拦截所有png图片,可自由发挥比如拦截js文件,修改后再返回
|
|
|
|
|
if url.endswith('.png'):
|
|
|
|
|
# 原理在于重定向到自己的url协议里
|
|
|
|
|
info.redirect(QUrl('myurl://png'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Window(QWebEngineView):
|
|
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
|
super(Window, self).__init__(*args, **kwargs)
|
|
|
|
|
self.resize(800, 600)
|
|
|
|
|
|
|
|
|
|
# 首先获取默认的url协议
|
2021-07-13 14:52:26 +08:00
|
|
|
|
h1 = QWebEngineUrlScheme.schemeByName(QByteArray(b'http'))
|
|
|
|
|
h2 = QWebEngineUrlScheme.schemeByName(QByteArray(b'https'))
|
2020-02-18 12:39:33 +08:00
|
|
|
|
|
|
|
|
|
# 这里需要修改增加本地文件和跨域支持
|
|
|
|
|
CorsEnabled = 0x80 # 5.14才增加
|
|
|
|
|
h1.setFlags(h1.flags() |
|
|
|
|
|
QWebEngineUrlScheme.SecureScheme |
|
|
|
|
|
QWebEngineUrlScheme.LocalScheme |
|
|
|
|
|
QWebEngineUrlScheme.LocalAccessAllowed |
|
|
|
|
|
CorsEnabled)
|
|
|
|
|
h2.setFlags(h2.flags() |
|
|
|
|
|
QWebEngineUrlScheme.SecureScheme |
|
|
|
|
|
QWebEngineUrlScheme.LocalScheme |
|
|
|
|
|
QWebEngineUrlScheme.LocalAccessAllowed |
|
|
|
|
|
CorsEnabled)
|
|
|
|
|
|
|
|
|
|
# 安装url拦截器和自定义url协议处理
|
|
|
|
|
de = QWebEngineProfile.defaultProfile() # @UndefinedVariable
|
|
|
|
|
de.setRequestInterceptor(RequestInterceptor(self))
|
2021-07-13 14:52:26 +08:00
|
|
|
|
de.installUrlSchemeHandler(QByteArray(b'myurl'), UrlSchemeHandler(self))
|
2020-02-18 12:39:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
import sys
|
2021-07-13 14:52:26 +08:00
|
|
|
|
|
2020-02-18 12:39:33 +08:00
|
|
|
|
app = QApplication(sys.argv)
|
|
|
|
|
w = Window()
|
|
|
|
|
w.show()
|
|
|
|
|
w.load(QUrl('https://www.baidu.com/'))
|
|
|
|
|
sys.exit(app.exec_())
|