AuthorizationService.py 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. # Copyright (c) 2021 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. import json
  4. from datetime import datetime, timedelta
  5. from typing import Callable, Dict, Optional, TYPE_CHECKING, Union
  6. from urllib.parse import urlencode, quote_plus
  7. from PyQt6.QtCore import QUrl
  8. from PyQt6.QtGui import QDesktopServices
  9. from UM.Logger import Logger
  10. from UM.Message import Message
  11. from UM.Signal import Signal
  12. from UM.i18n import i18nCatalog
  13. from cura.OAuth2.AuthorizationHelpers import AuthorizationHelpers, TOKEN_TIMESTAMP_FORMAT
  14. from cura.OAuth2.LocalAuthorizationServer import LocalAuthorizationServer
  15. from cura.OAuth2.Models import AuthenticationResponse, BaseModel
  16. i18n_catalog = i18nCatalog("cura")
  17. if TYPE_CHECKING:
  18. from cura.OAuth2.Models import UserProfile, OAuth2Settings
  19. from UM.Preferences import Preferences
  20. MYCLOUD_LOGOFF_URL = "https://account.ultimaker.com/logoff?utm_source=cura&utm_medium=software&utm_campaign=change-account-before-adding-printers"
  21. class AuthorizationService:
  22. """The authorization service is responsible for handling the login flow, storing user credentials and providing
  23. account information.
  24. """
  25. def __init__(self,
  26. settings: "OAuth2Settings",
  27. preferences: Optional["Preferences"] = None,
  28. get_user_profile: bool = True) -> None:
  29. # Emit signal when authentication is completed.
  30. self.onAuthStateChanged = Signal()
  31. # Emit signal when authentication failed.
  32. self.onAuthenticationError = Signal()
  33. self.accessTokenChanged = Signal()
  34. self._settings = settings
  35. self._auth_helpers = AuthorizationHelpers(settings)
  36. self._auth_url = "{}/authorize".format(self._settings.OAUTH_SERVER_URL)
  37. self._auth_data: Optional[AuthenticationResponse] = None
  38. self._user_profile: Optional["UserProfile"] = None
  39. self._get_user_profile: bool = get_user_profile
  40. self._preferences = preferences
  41. self._server = LocalAuthorizationServer(self._auth_helpers, self._onAuthStateChanged, daemon=True)
  42. self._currently_refreshing_token = False # Whether we are currently in the process of refreshing auth. Don't make new requests while busy.
  43. self._unable_to_get_data_message: Optional[Message] = None
  44. self.onAuthStateChanged.connect(self._authChanged)
  45. def _authChanged(self, logged_in):
  46. if logged_in and self._unable_to_get_data_message is not None:
  47. self._unable_to_get_data_message.hide()
  48. def initialize(self, preferences: Optional["Preferences"] = None) -> None:
  49. if preferences is not None:
  50. self._preferences = preferences
  51. if self._preferences:
  52. self._preferences.addPreference(self._settings.AUTH_DATA_PREFERENCE_KEY, "{}")
  53. def getUserProfile(self, callback: Optional[Callable[[Optional["UserProfile"]], None]] = None) -> None:
  54. """
  55. Get the user profile as obtained from the JWT (JSON Web Token).
  56. If the JWT is not yet checked and parsed, calling this will take care of that.
  57. :param callback: Once the user profile is obtained, this function will be called with the given user profile. If
  58. the profile fails to be obtained, this function will be called with None.
  59. See also: :py:method:`cura.OAuth2.AuthorizationService.AuthorizationService._parseJWT`
  60. """
  61. if self._user_profile:
  62. # We already obtained the profile. No need to make another request for it.
  63. if callback is not None:
  64. callback(self._user_profile)
  65. return
  66. # If no user profile was stored locally, we try to get it from JWT.
  67. def store_profile(profile: Optional["UserProfile"]) -> None:
  68. if profile is not None:
  69. self._user_profile = profile
  70. if callback is not None:
  71. callback(profile)
  72. elif self._auth_data:
  73. # If there is no user profile from the JWT, we have to log in again.
  74. Logger.warning("The user profile could not be loaded. The user must log in again!")
  75. self.deleteAuthData()
  76. if callback is not None:
  77. callback(None)
  78. else:
  79. if callback is not None:
  80. callback(None)
  81. self._parseJWT(callback = store_profile)
  82. def _parseJWT(self, callback: Callable[[Optional["UserProfile"]], None]) -> None:
  83. """
  84. Tries to parse the JWT (JSON Web Token) data, which it does if all the needed data is there.
  85. :param callback: A function to call asynchronously once the user profile has been obtained. It will be called
  86. with `None` if it failed to obtain a user profile.
  87. """
  88. if not self._auth_data or self._auth_data.access_token is None:
  89. # If no auth data exists, we should always log in again.
  90. Logger.debug("There was no auth data or access token")
  91. callback(None)
  92. return
  93. # When we checked the token we may get a user profile. This callback checks if that is a valid one and tries to refresh the token if it's not.
  94. def check_user_profile(user_profile: Optional["UserProfile"]) -> None:
  95. if user_profile:
  96. # If the profile was found, we call it back immediately.
  97. callback(user_profile)
  98. return
  99. # The JWT was expired or invalid and we should request a new one.
  100. if self._auth_data is None or self._auth_data.refresh_token is None:
  101. Logger.warning("There was no refresh token in the auth data.")
  102. callback(None)
  103. return
  104. def process_auth_data(auth_data: AuthenticationResponse) -> None:
  105. if auth_data.access_token is None:
  106. Logger.warning("Unable to use the refresh token to get a new access token.")
  107. callback(None)
  108. return
  109. # Ensure it gets stored as otherwise we only have it in memory. The stored refresh token has been
  110. # deleted from the server already. Do not store the auth_data if we could not get new auth_data (e.g.
  111. # due to a network error), since this would cause an infinite loop trying to get new auth-data.
  112. if auth_data.success:
  113. self._storeAuthData(auth_data)
  114. self._auth_helpers.checkToken(auth_data.access_token, callback, lambda: callback(None))
  115. self._auth_helpers.getAccessTokenUsingRefreshToken(self._auth_data.refresh_token, process_auth_data)
  116. self._auth_helpers.checkToken(self._auth_data.access_token, check_user_profile, lambda: check_user_profile(None))
  117. def getAccessToken(self) -> Optional[str]:
  118. """Get the access token as provided by the response data."""
  119. if self._auth_data is None:
  120. Logger.log("d", "No auth data to retrieve the access_token from")
  121. return None
  122. # Check if the current access token is expired and refresh it if that is the case.
  123. # We have a fallback on a date far in the past for currently stored auth data in cura.cfg.
  124. received_at = datetime.strptime(self._auth_data.received_at, TOKEN_TIMESTAMP_FORMAT) \
  125. if self._auth_data.received_at else datetime(2000, 1, 1)
  126. expiry_date = received_at + timedelta(seconds = float(self._auth_data.expires_in or 0) - 60)
  127. if datetime.now() > expiry_date:
  128. self.refreshAccessToken()
  129. return self._auth_data.access_token if self._auth_data else None
  130. def refreshAccessToken(self) -> None:
  131. """Try to refresh the access token. This should be used when it has expired."""
  132. if self._auth_data is None or self._auth_data.refresh_token is None:
  133. Logger.log("w", "Unable to refresh access token, since there is no refresh token.")
  134. return
  135. def process_auth_data(response: AuthenticationResponse) -> None:
  136. if response.success:
  137. self._storeAuthData(response)
  138. self.onAuthStateChanged.emit(logged_in = True)
  139. else:
  140. Logger.warning("Failed to get a new access token from the server.")
  141. self.onAuthStateChanged.emit(logged_in = False)
  142. if self._currently_refreshing_token:
  143. Logger.debug("Was already busy refreshing token. Do not start a new request.")
  144. return
  145. self._currently_refreshing_token = True
  146. self._auth_helpers.getAccessTokenUsingRefreshToken(self._auth_data.refresh_token, process_auth_data)
  147. def deleteAuthData(self) -> None:
  148. """Delete the authentication data that we have stored locally (eg; logout)"""
  149. if self._auth_data is not None:
  150. self._storeAuthData()
  151. self.onAuthStateChanged.emit(logged_in = False)
  152. def startAuthorizationFlow(self, force_browser_logout: bool = False) -> None:
  153. """Start the flow to become authenticated. This will start a new webbrowser tap, prompting the user to login."""
  154. Logger.log("d", "Starting new OAuth2 flow...")
  155. # Create the tokens needed for the code challenge (PKCE) extension for OAuth2.
  156. # This is needed because the CuraDrivePlugin is a untrusted (open source) client.
  157. # More details can be found at https://tools.ietf.org/html/rfc7636.
  158. verification_code = self._auth_helpers.generateVerificationCode()
  159. challenge_code = self._auth_helpers.generateVerificationCodeChallenge(verification_code)
  160. state = AuthorizationHelpers.generateVerificationCode()
  161. # Create the query dict needed for the OAuth2 flow.
  162. query_parameters_dict = {
  163. "client_id": self._settings.CLIENT_ID,
  164. "redirect_uri": self._settings.CALLBACK_URL,
  165. "scope": self._settings.CLIENT_SCOPES,
  166. "response_type": "code",
  167. "state": state, # Forever in our Hearts, RIP "(.Y.)" (2018-2020)
  168. "code_challenge": challenge_code,
  169. "code_challenge_method": "S512"
  170. }
  171. # Start a local web server to receive the callback URL on.
  172. try:
  173. self._server.start(verification_code, state)
  174. except OSError:
  175. Logger.logException("w", "Unable to create authorization request server")
  176. Message(i18n_catalog.i18nc("@info",
  177. "Unable to start a new sign in process. Check if another sign in attempt is still active."),
  178. title=i18n_catalog.i18nc("@info:title", "Warning"),
  179. message_type = Message.MessageType.WARNING).show()
  180. return
  181. auth_url = self._generate_auth_url(query_parameters_dict, force_browser_logout)
  182. # Open the authorization page in a new browser window.
  183. QDesktopServices.openUrl(QUrl(auth_url))
  184. def _generate_auth_url(self, query_parameters_dict: Dict[str, Optional[str]], force_browser_logout: bool) -> str:
  185. """
  186. Generates the authentications url based on the original auth_url and the query_parameters_dict to be included.
  187. If there is a request to force logging out of mycloud in the browser, the link to logoff from mycloud is
  188. prepended in order to force the browser to logoff from mycloud and then redirect to the authentication url to
  189. login again. This case is used to sync the accounts between Cura and the browser.
  190. :param query_parameters_dict: A dictionary with the query parameters to be url encoded and added to the
  191. authentication link
  192. :param force_browser_logout: If True, Cura will prepend the MYCLOUD_LOGOFF_URL link before the authentication
  193. link to force the a browser logout from mycloud.ultimaker.com
  194. :return: The authentication URL, properly formatted and encoded
  195. """
  196. auth_url = f"{self._auth_url}?{urlencode(query_parameters_dict)}"
  197. if force_browser_logout:
  198. connecting_char = "&" if "?" in MYCLOUD_LOGOFF_URL else "?"
  199. # The url after 'next=' should be urlencoded
  200. auth_url = f"{MYCLOUD_LOGOFF_URL}{connecting_char}next={quote_plus(auth_url)}"
  201. return auth_url
  202. def _onAuthStateChanged(self, auth_response: AuthenticationResponse) -> None:
  203. """Callback method for the authentication flow."""
  204. if auth_response.success:
  205. Logger.log("d", "Got callback from Authorization state. The user should now be logged in!")
  206. self._storeAuthData(auth_response)
  207. self.onAuthStateChanged.emit(logged_in = True)
  208. else:
  209. Logger.log("d", "Got callback from Authorization state. Something went wrong: [%s]", auth_response.err_message)
  210. self.onAuthenticationError.emit(logged_in = False, error_message = auth_response.err_message)
  211. self._server.stop() # Stop the web server at all times.
  212. def loadAuthDataFromPreferences(self) -> None:
  213. """Load authentication data from preferences."""
  214. Logger.log("d", "Attempting to load the auth data from preferences.")
  215. if self._preferences is None:
  216. Logger.log("e", "Unable to load authentication data, since no preference has been set!")
  217. return
  218. try:
  219. preferences_data = json.loads(self._preferences.getValue(self._settings.AUTH_DATA_PREFERENCE_KEY))
  220. if preferences_data:
  221. self._auth_data = AuthenticationResponse(**preferences_data)
  222. # Also check if we can actually get the user profile information.
  223. def callback(profile: Optional["UserProfile"]) -> None:
  224. if profile is not None:
  225. self.onAuthStateChanged.emit(logged_in = True)
  226. Logger.debug("Auth data was successfully loaded")
  227. else:
  228. if self._unable_to_get_data_message is not None:
  229. self._unable_to_get_data_message.show()
  230. else:
  231. self._unable_to_get_data_message = Message(i18n_catalog.i18nc("@info",
  232. "Unable to reach the UltiMaker account server."),
  233. title = i18n_catalog.i18nc("@info:title", "Log-in failed"),
  234. message_type = Message.MessageType.ERROR)
  235. Logger.warning("Unable to get user profile using auth data from preferences.")
  236. self._unable_to_get_data_message.show()
  237. self.getUserProfile(callback)
  238. except (ValueError, TypeError):
  239. Logger.logException("w", "Could not load auth data from preferences")
  240. def _storeAuthData(self, auth_data: Optional[AuthenticationResponse] = None) -> None:
  241. """Store authentication data in preferences."""
  242. Logger.log("d", "Attempting to store the auth data for [%s]", self._settings.OAUTH_SERVER_URL)
  243. if self._preferences is None:
  244. Logger.log("e", "Unable to save authentication data, since no preference has been set!")
  245. return
  246. self._auth_data = auth_data
  247. self._currently_refreshing_token = False
  248. if auth_data:
  249. if self._get_user_profile:
  250. self.getUserProfile()
  251. self._preferences.setValue(self._settings.AUTH_DATA_PREFERENCE_KEY, json.dumps(auth_data.dump()))
  252. else:
  253. Logger.log("d", "Clearing the user profile")
  254. self._user_profile = None
  255. self._preferences.resetPreference(self._settings.AUTH_DATA_PREFERENCE_KEY)
  256. self.accessTokenChanged.emit()