AuthorizationService.py 15 KB

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