Class: QgsNetworkAccessManager¶
QNetworkAccessManager with additional QGIS specific logic.
This class implements the QGIS network access manager. It’s a singleton that can be used across QGIS.
Plugins can insert proxy factories and thereby redirect requests to individual proxies.
If no proxy factories are there or none returns a proxy for an URL a fallback proxy can be set. There’s also a exclude list that defines URLs that the fallback proxy should not be used for, then no proxy will be used.
Class Hierarchy¶
Base classes¶
Methods
Abort any outstanding external browser login request. |
|
Returns the proxy exclude list. |
|
Returns the fallback proxy used by the manager. |
|
Inserts a factory into the proxy factories list. |
|
Returns the no proxy list. |
|
Preprocesses request |
|
Returns a list of proxy factories used by the manager. |
|
Removes a factory from the proxy factories list. |
|
Forwards an external browser login closure request to the authentication handler. |
|
Forwards an external browser login url opening request to the authentication handler. |
|
Sets the fallback proxy and URLs which shouldn't use it. |
|
Setup the |
|
Returns whether the system proxy should be used. |
Static Methods
Posts a GET request to obtain the contents of the target request and returns a new |
|
Posts a POST request to obtain the contents of the target request, using the given data, and returns a new |
|
Returns QNetworkRequest.CacheLoadControl from a name. |
|
Returns the name for QNetworkRequest.CacheLoadControl. |
|
Returns a pointer to the active |
|
Removes an advanced request pre-processor function with matching id. |
|
Removes the custom reply pre-processor function with matching id. |
|
Removes the custom request pre-processor function with matching id. |
|
Sets an advanced request pre-processor function, which allows manipulation of a network request before it is processed. |
|
Sets a reply pre-processor function, which allows manipulation of QNetworkReply objects after they are created (but before they are fetched). |
|
Sets a request pre-processor function, which allows manipulation of a network request before it is processed. |
|
Sets the maximum timeout time for network requests, in milliseconds. |
|
Returns the network timeout length, in milliseconds. |
Signals
Emitted when external browser logins are to be aborted. |
|
Emitted when the cookies changed. |
|
Emitted when a network reply receives a progress report. |
|
Emitted when a network request is about to be created. |
|
Emitted when network authentication details have been added to a request. |
|
Emitted when a network request encounters SSL errors. |
|
Emitted when a network request prompts an authentication request. |
|
Emitted when a request times out. |
- class qgis.core.QgsNetworkAccessManager[source]¶
Bases:
QNetworkAccessManager
- abortAuthBrowser(self)[source]¶
Abort any outstanding external browser login request.
Note
Background threads will listen to aborted browser request signals from the network manager on the main thread.
Added in version 3.20.
- signal authBrowserAborted[source]¶
Emitted when external browser logins are to be aborted.
Added in version 3.20.
- static blockingGet(request: QNetworkRequest, authCfg: str | None = '', forceRefresh: bool = False, feedback: QgsFeedback | None = None) QgsNetworkReplyContent [source]¶
Posts a GET request to obtain the contents of the target request and returns a new
QgsNetworkReplyContent
object for reading. The current thread will be blocked until the request is returned.This method is safe to call in either the main thread or a worker thread.
If
forceRefresh
isFalse
then previously cached replies may be used for the request. If it is set toTrue
then a new query is always performed.If an
authCfg
has been specified, then that authentication configuration required will automatically be applied torequest
. There is no need to manually apply the authentication to the request prior to calling this method.The optional
feedback
argument can be used to abort ongoing requests.The contents of the reply will be returned after the request is completed or an error occurs.
See also
Added in version 3.6.
- Parameters:
request (QNetworkRequest)
authCfg (Optional[str] = '')
forceRefresh (bool = False)
feedback (Optional[QgsFeedback] = None)
- Return type:
- static blockingPost(request: QNetworkRequest, data: QByteArray | bytes | bytearray, authCfg: str | None = '', forceRefresh: bool = False, feedback: QgsFeedback | None = None) QgsNetworkReplyContent [source]¶
Posts a POST request to obtain the contents of the target
request
, using the givendata
, and returns a newQgsNetworkReplyContent
object for reading. The current thread will be blocked until the request is returned.This method is safe to call in either the main thread or a worker thread.
If
forceRefresh
isFalse
then previously cached replies may be used for the request. If it is set toTrue
then a new query is always performed.If an
authCfg
has been specified, then that authentication configuration required will automatically be applied torequest
. There is no need to manually apply the authentication to the request prior to calling this method.The optional
feedback
argument can be used to abort ongoing requests.The contents of the reply will be returned after the request is completed or an error occurs.
See also
Added in version 3.6.
- Parameters:
request (QNetworkRequest)
data (Union[QByteArray, bytes, bytearray])
authCfg (Optional[str] = '')
forceRefresh (bool = False)
feedback (Optional[QgsFeedback] = None)
- Return type:
- static cacheLoadControlFromName(name: str | None) QNetworkRequest.CacheLoadControl [source]¶
Returns QNetworkRequest.CacheLoadControl from a
name
.See also
- Parameters:
name (Optional[str])
- Return type:
QNetworkRequest.CacheLoadControl
- static cacheLoadControlName(control: QNetworkRequest.CacheLoadControl) str [source]¶
Returns the name for QNetworkRequest.CacheLoadControl.
See also
- Parameters:
control (QNetworkRequest.CacheLoadControl)
- Return type:
str
- signal cookiesChanged(cookies: List[QNetworkCookie])[source]¶
Emitted when the cookies changed.
Added in version 3.22.
- Parameters:
cookies (List[QNetworkCookie])
- signal downloadProgress(requestId: int, bytesReceived: int, bytesTotal: int)[source]¶
Emitted when a network reply receives a progress report.
The
requestId
argument reflects the unique ID identifying the original request which the progress report relates to.The
bytesReceived
parameter indicates the number of bytes received, whilebytesTotal
indicates the total number of bytes expected to be downloaded. If the number of bytes to be downloaded is not known,bytesTotal
will be -1.This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about requests created in any thread.
Added in version 3.6.
- Parameters:
requestId (int)
bytesReceived (int)
bytesTotal (int)
- excludeList(self) List[str] [source]¶
Returns the proxy exclude list.
This list consists of the beginning of URL strings which will not use the fallback proxy.
See also
See also
See also
- Return type:
List[str]
- fallbackProxy(self) QNetworkProxy ¶
Returns the fallback proxy used by the manager.
The fallback proxy is used for URLs which no other proxy factory returned proxies for.
See also
See also
- Return type:
QNetworkProxy
- insertProxyFactory(self, factory: QNetworkProxyFactory | None)[source]¶
Inserts a
factory
into the proxy factories list.Ownership of
factory
is transferred to the manager.See also
See also
- Parameters:
factory (Optional[QNetworkProxyFactory])
- static instance(connectionType: Qt.ConnectionType = Qt.BlockingQueuedConnection) QgsNetworkAccessManager | None [source]¶
Returns a pointer to the active
QgsNetworkAccessManager
for the current thread.With the
connectionType
parameter it is possible to setup the default connection type that is used to handle signals that might require user interaction and therefore need to be handled on the main thread. See in-depth discussion below.- Parameters:
connectionType (Qt.ConnectionType = Qt.BlockingQueuedConnection) – In most cases the default of using a
Qt.BlockingQueuedConnection
is ok, to make a background thread wait for the main thread to answer such a request is fine and anything else is dangerous. However, in case the request was started on the main thread, one should execute a local event loop in a helper thread and freeze the main thread for the duration of the download. In this case, if an authentication request is sent from the background thread network access manager, the background thread should be blocked, the main thread be woken up,processEvents()
executed once, the main thread frozen again and the background thread continued.- Return type:
Optional[QgsNetworkAccessManager]
- noProxyList(self) List[str] [source]¶
Returns the no proxy list.
This list consists of the beginning of URL strings which will not use any proxy at all
See also
See also
See also
- Return type:
List[str]
- preprocessRequest(self, req: QNetworkRequest | None)[source]¶
Preprocesses request
- Parameters:
req (Optional[QNetworkRequest]) – the request to preprocess
Added in version 3.22.
- proxyFactories(self) List[QNetworkProxyFactory] ¶
Returns a list of proxy factories used by the manager.
See also
See also
- Return type:
List[QNetworkProxyFactory]
- static removeAdvancedRequestPreprocessor(id: str | None)[source]¶
Removes an advanced request pre-processor function with matching
id
.The
id
must correspond to a pre-processor previously added via a call tosetAdvancedRequestPreprocessor()
.Returns
True
if processor existed and was removed.See also
Added in version 3.44.
- Parameters:
id (Optional[str])
- removeProxyFactory(self, factory: QNetworkProxyFactory | None)[source]¶
Removes a
factory
from the proxy factories list.See also
See also
- Parameters:
factory (Optional[QNetworkProxyFactory])
- static removeReplyPreprocessor(id: str | None)[source]¶
Removes the custom reply pre-processor function with matching
id
.The
id
must correspond to a pre-processor previously added via a call tosetReplyPreprocessor()
.Returns
True
if processor existed and was removed.See also
Added in version 3.26.
- Parameters:
id (Optional[str])
- static removeRequestPreprocessor(id: str | None)[source]¶
Removes the custom request pre-processor function with matching
id
.The
id
must correspond to a pre-processor previously added via a call tosetRequestPreprocessor()
.Returns
True
if processor existed and was removed.See also
Added in version 3.22.
- Parameters:
id (Optional[str])
- signal requestAboutToBeCreated(request: QgsNetworkRequestParameters)[source]¶
Emitted when a network request is about to be created.
This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about requests created in any thread.
See also
See also
finished()
See also
Added in version 3.6.
- Parameters:
request (QgsNetworkRequestParameters)
- requestAuthCloseBrowser(self)[source]¶
Forwards an external browser login closure request to the authentication handler.
Note
If called by a background thread, the request will be forwarded to the network manager on the main thread.
Added in version 3.20.
- signal requestAuthDetailsAdded(requestId: int, realm: str, user: str, password: str)[source]¶
Emitted when network authentication details have been added to a request.
The
requestId
argument reflects the unique ID identifying the original request which the authentication relates to.This signal is always sent from the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about authentication requests from any thread.
This signal is for debugging and logging purposes only, and should not be used to respond to the requests. See
QgsNetworkAuthenticationHandler
for details on how to handle authentication requests.See also
Added in version 3.6.
- Parameters:
requestId (int)
realm (str)
user (str)
password (str)
- requestAuthOpenBrowser(self, url: QUrl)[source]¶
Forwards an external browser login
url
opening request to the authentication handler.Note
If called by a background thread, the request will be forwarded to the network manager on the main thread.
Added in version 3.20.
- Parameters:
url (QUrl)
- signal requestCreated(request: QgsNetworkRequestParameters)[source]¶
Deprecated since version 3.40: Use the thread-safe requestAboutToBeCreated(
QgsNetworkRequestParameters
) signal instead.- Parameters:
request (QgsNetworkRequestParameters)
- signal requestEncounteredSslErrors(requestId: int, errors: List[QSslError])[source]¶
Emitted when a network request encounters SSL
errors
.The
requestId
argument reflects the unique ID identifying the original request which the SSL error relates to.This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about SSL errors from any thread.
This signal is for debugging and logging purposes only, and cannot be used to respond to the errors. See
QgsSslErrorHandler
for details on how to handle SSL errors and potentially ignore them.Added in version 3.6.
- Parameters:
requestId (int)
errors (List[QSslError])
- signal requestRequiresAuth(requestId: int, realm: str)[source]¶
Emitted when a network request prompts an authentication request.
The
requestId
argument reflects the unique ID identifying the original request which the authentication relates to.This signal is propagated to the main thread QgsNetworkAccessManager instance, so it is necessary only to connect to the main thread’s signal in order to receive notifications about authentication requests from any thread.
This signal is for debugging and logging purposes only, and cannot be used to respond to the requests. See
QgsNetworkAuthenticationHandler
for details on how to handle authentication requests.See also
Added in version 3.6.
- Parameters:
requestId (int)
realm (str)
- signal requestTimedOut(reply: QNetworkReply)[source]¶
Emitted when a request times out.
- Parameters:
reply (QNetworkReply)
- static setAdvancedRequestPreprocessor(a0: Callable[..., None] | None) str [source]¶
Sets an advanced request pre-processor function, which allows manipulation of a network request before it is processed.
The
processor
function takes the QNetworkRequest, network operation (a QNetworkAccessManager.Operation cast to an integer value), and request data as its arguments, and can mutate the request if necessary.It should return the desired operation (as a QNetworkAccessManager.Operation cast to an integer value) and request data as a tuple, transforming as desired.
- Return type:
str
- Returns:
An auto-generated string uniquely identifying the preprocessor, which can later be used to remove the preprocessor (via a call to
removeAdvancedRequestPreprocessor()
).
See also
Added in version 3.44.
- Parameters:
a0 (Optional[Callable[..., None]])
- setFallbackProxyAndExcludes(self, proxy: QNetworkProxy, excludes: Iterable[str | None], noProxyURLs: Iterable[str | None])[source]¶
Sets the fallback
proxy
and URLs which shouldn’t use it.The fallback proxy is used for URLs which no other proxy factory returned proxies for. The
excludes
list specifies the beginning of URL strings which will not use this fallback proxy. ThenoProxyURLs
list specifies the beginning of URL strings which will not use any proxy at allSee also
See also
See also
- Parameters:
proxy (QNetworkProxy)
excludes (Iterable[Optional[str]])
noProxyURLs (Iterable[Optional[str]])
- static setReplyPreprocessor(a0: Callable[..., None] | None) str [source]¶
Sets a reply pre-processor function, which allows manipulation of QNetworkReply objects after they are created (but before they are fetched).
The
processor
function takes a QNetworkRequest request and a QNetworkReply as arguments, and can connect to QNetworkReply signals directly as desired.- Return type:
str
- Returns:
An auto-generated string uniquely identifying the preprocessor, which can later be used to remove the preprocessor (via a call to
removeReplyPreprocessor()
).
See also
Added in version 3.26.
- Parameters:
a0 (Optional[Callable[..., None]])
- static setRequestPreprocessor(a0: Callable[..., None] | None) str [source]¶
Sets a request pre-processor function, which allows manipulation of a network request before it is processed.
The
processor
function takes the QNetworkRequest as its argument, and can mutate the request if necessary.- Return type:
str
- Returns:
An auto-generated string uniquely identifying the preprocessor, which can later be used to remove the preprocessor (via a call to
removeRequestPreprocessor()
).
See also
Added in version 3.22.
- Parameters:
a0 (Optional[Callable[..., None]])
- static setTimeout(time: int)[source]¶
Sets the maximum timeout
time
for network requests, in milliseconds. If set to 0, no timeout is set.See also
Added in version 3.6.
- Parameters:
time (int)
- setupDefaultProxyAndCache(self, connectionType: Qt.ConnectionType = Qt.BlockingQueuedConnection)[source]¶
Setup the
QgsNetworkAccessManager
(NAM) according to the user’s settings. TheconnectionType
sets up the default connection type that is used to handle signals that might require user interaction and therefore need to be handled on the main thread. See in-depth discussion in the documentation for the constructor of this class.- Parameters:
connectionType (Qt.ConnectionType = Qt.BlockingQueuedConnection)