Account.py 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. # Copyright (c) 2018 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from typing import Optional, Dict, TYPE_CHECKING
  4. from PyQt5.QtCore import QObject, pyqtSignal, pyqtSlot, pyqtProperty
  5. from UM.Message import Message
  6. from UM.i18n import i18nCatalog
  7. from cura.OAuth2.AuthorizationService import AuthorizationService
  8. from cura.OAuth2.Models import OAuth2Settings
  9. from cura.UltimakerCloud import UltimakerCloudAuthentication
  10. if TYPE_CHECKING:
  11. from cura.CuraApplication import CuraApplication
  12. i18n_catalog = i18nCatalog("cura")
  13. ## The account API provides a version-proof bridge to use Ultimaker Accounts
  14. #
  15. # Usage:
  16. # ``from cura.API import CuraAPI
  17. # api = CuraAPI()
  18. # api.account.login()
  19. # api.account.logout()
  20. # api.account.userProfile # Who is logged in``
  21. #
  22. class Account(QObject):
  23. # Signal emitted when user logged in or out.
  24. loginStateChanged = pyqtSignal(bool)
  25. accessTokenChanged = pyqtSignal()
  26. def __init__(self, application: "CuraApplication", parent = None) -> None:
  27. super().__init__(parent)
  28. self._application = application
  29. self._new_cloud_printers_detected = False
  30. self._error_message = None # type: Optional[Message]
  31. self._logged_in = False
  32. self._callback_port = 32118
  33. self._oauth_root = UltimakerCloudAuthentication.CuraCloudAccountAPIRoot
  34. self._oauth_settings = OAuth2Settings(
  35. OAUTH_SERVER_URL= self._oauth_root,
  36. CALLBACK_PORT=self._callback_port,
  37. CALLBACK_URL="http://localhost:{}/callback".format(self._callback_port),
  38. CLIENT_ID="um----------------------------ultimaker_cura",
  39. CLIENT_SCOPES="account.user.read drive.backup.read drive.backup.write packages.download "
  40. "packages.rating.read packages.rating.write connect.cluster.read connect.cluster.write "
  41. "cura.printjob.read cura.printjob.write cura.mesh.read cura.mesh.write",
  42. AUTH_DATA_PREFERENCE_KEY="general/ultimaker_auth_data",
  43. AUTH_SUCCESS_REDIRECT="{}/app/auth-success".format(self._oauth_root),
  44. AUTH_FAILED_REDIRECT="{}/app/auth-error".format(self._oauth_root)
  45. )
  46. self._authorization_service = AuthorizationService(self._oauth_settings)
  47. def initialize(self) -> None:
  48. self._authorization_service.initialize(self._application.getPreferences())
  49. self._authorization_service.onAuthStateChanged.connect(self._onLoginStateChanged)
  50. self._authorization_service.onAuthenticationError.connect(self._onLoginStateChanged)
  51. self._authorization_service.accessTokenChanged.connect(self._onAccessTokenChanged)
  52. self._authorization_service.loadAuthDataFromPreferences()
  53. def _onAccessTokenChanged(self):
  54. self.accessTokenChanged.emit()
  55. ## Returns a boolean indicating whether the given authentication is applied against staging or not.
  56. @property
  57. def is_staging(self) -> bool:
  58. return "staging" in self._oauth_root
  59. @pyqtProperty(bool, notify=loginStateChanged)
  60. def isLoggedIn(self) -> bool:
  61. return self._logged_in
  62. def _onLoginStateChanged(self, logged_in: bool = False, error_message: Optional[str] = None) -> None:
  63. if error_message:
  64. if self._error_message:
  65. self._error_message.hide()
  66. self._error_message = Message(error_message, title = i18n_catalog.i18nc("@info:title", "Login failed"))
  67. self._error_message.show()
  68. self._logged_in = False
  69. self.loginStateChanged.emit(False)
  70. return
  71. if self._logged_in != logged_in:
  72. self._logged_in = logged_in
  73. self.loginStateChanged.emit(logged_in)
  74. @pyqtSlot()
  75. def login(self) -> None:
  76. if self._logged_in:
  77. # Nothing to do, user already logged in.
  78. return
  79. self._authorization_service.startAuthorizationFlow()
  80. @pyqtProperty(str, notify=loginStateChanged)
  81. def userName(self):
  82. user_profile = self._authorization_service.getUserProfile()
  83. if not user_profile:
  84. return None
  85. return user_profile.username
  86. @pyqtProperty(str, notify = loginStateChanged)
  87. def profileImageUrl(self):
  88. user_profile = self._authorization_service.getUserProfile()
  89. if not user_profile:
  90. return None
  91. return user_profile.profile_image_url
  92. @pyqtProperty(str, notify=accessTokenChanged)
  93. def accessToken(self) -> Optional[str]:
  94. return self._authorization_service.getAccessToken()
  95. # Get the profile of the logged in user
  96. # @returns None if no user is logged in, a dict containing user_id, username and profile_image_url
  97. @pyqtProperty("QVariantMap", notify = loginStateChanged)
  98. def userProfile(self) -> Optional[Dict[str, Optional[str]]]:
  99. user_profile = self._authorization_service.getUserProfile()
  100. if not user_profile:
  101. return None
  102. return user_profile.__dict__
  103. @pyqtSlot()
  104. def logout(self) -> None:
  105. if not self._logged_in:
  106. return # Nothing to do, user isn't logged in.
  107. self._authorization_service.deleteAuthData()