mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-16 18:59:39 +08:00

...to their own module Fixes an import error where UltimakerCloudScope was used my both the Toolbox and CuraDrive plugins CURA-7150
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
from PyQt5.QtNetwork import QNetworkRequest
|
|
|
|
from UM.Logger import Logger
|
|
from UM.TaskManagement.HttpRequestScope import DefaultUserAgentScope
|
|
from cura.API import Account
|
|
from cura.CuraApplication import CuraApplication
|
|
|
|
|
|
class UltimakerCloudScope(DefaultUserAgentScope):
|
|
"""Add an Authorization header to the request for Ultimaker Cloud Api requests.
|
|
|
|
When the user is not logged in or a token is not available, a warning will be logged
|
|
Also add the user agent headers (see DefaultUserAgentScope)
|
|
"""
|
|
|
|
def __init__(self, application: CuraApplication):
|
|
super().__init__(application)
|
|
api = application.getCuraAPI()
|
|
self._account = api.account # type: Account
|
|
|
|
def requestHook(self, request: QNetworkRequest):
|
|
super().requestHook(request)
|
|
token = self._account.accessToken
|
|
if not self._account.isLoggedIn or token is None:
|
|
Logger.warning("Cannot add authorization to Cloud Api request")
|
|
return
|
|
|
|
header_dict = {
|
|
"Authorization": "Bearer {}".format(token)
|
|
}
|
|
self.addHeaders(request, header_dict)
|