Trước đây công tắc chỉ chặn tool mạng của agent; lệnh shell chỉ bị proxy giả, còn M365, Teams, nút Test, MCP đang chạy, task script, link đính kèm task, pip tự cài và tài nguyên web trong xem trước HTML vẫn ra mạng tự do. - Cổng chung application/network/network_guard.py, nối vào cấu hình sống ở Composition Root; nhà cung cấp AI (chat, danh sách model, thử model) không đi qua cổng này. - Lệnh shell của agent và task script chạy trong Windows AppContainer không có quyền mạng (macOS: sandbox-exec, Linux: unshare --net); không cô lập được thì từ chối chạy. - Không cấp quyền kế thừa của AppContainer lên thư mục chứa PySide6: Chromium không nạp được Qt6WebEngineCore.dll và tab Graph bị hỏng. - Bật chặn thì dừng MCP đang chạy; tool OneDrive đồng bộ trên máy vẫn dùng. - Mặc định tắt khi mở app lần đầu; nhãn và tooltip 3 ngôn ngữ cập nhật. - Test: tests/test_network_guard_lanes.py (có bài AppContainer thật). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
40 lines
1.7 KiB
Python
40 lines
1.7 KiB
Python
"""HTML preview page that loads nothing from the web while "Block network" is on.
|
|
|
|
``QWebEngineView.setHtml`` happily fetches every ``<img src="https://...">``,
|
|
``<script src>`` and stylesheet the previewed file references — an outbound
|
|
connection the user never asked for, made by the app itself. The preview gets
|
|
its own off-the-record profile (so the interceptor below touches no other web
|
|
view, e.g. the GraphRAG renderer) and every remote request is refused while
|
|
the switch is on. Local files, ``data:`` and ``qrc:`` URLs still load.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from PySide6.QtWebEngineCore import (
|
|
QWebEnginePage, QWebEngineProfile, QWebEngineUrlRequestInterceptor,
|
|
)
|
|
|
|
from cowork_local.application.network import network_guard
|
|
|
|
_REMOTE_SCHEMES = frozenset({"http", "https", "ws", "wss", "ftp"})
|
|
|
|
|
|
class RemoteRequestBlocker(QWebEngineUrlRequestInterceptor):
|
|
"""Refuses remote URLs whenever the network guard says the network is blocked."""
|
|
|
|
def interceptRequest(self, info) -> None: # noqa: N802 - Qt override
|
|
"""Called by WebEngine for every request the page makes."""
|
|
if info.requestUrl().scheme().lower() in _REMOTE_SCHEMES and network_guard.is_blocked():
|
|
info.block(True)
|
|
|
|
|
|
def install_offline_page(view) -> None:
|
|
"""Give ``view`` a private profile whose remote requests obey the guard."""
|
|
profile = QWebEngineProfile(view) # no storage name = off the record
|
|
blocker = RemoteRequestBlocker(profile)
|
|
profile.setUrlRequestInterceptor(blocker)
|
|
view.setPage(QWebEnginePage(profile, view))
|
|
view._remote_blocker = blocker # keep the interceptor alive with the view
|
|
|
|
|
|
__all__ = ["RemoteRequestBlocker", "install_offline_page"]
|