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.i18n import i18nCatalog
  6. from UM.Message import Message
  7. from cura import UltimakerCloudAuthentication
  8. from cura.OAuth2.AuthorizationService import AuthorizationService
  9. from cura.OAuth2.Models import OAuth2Settings
  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._error_message = None # type: Optional[Message]
  30. self._logged_in = False
  31. self._callback_port = 32118
  32. self._oauth_root = UltimakerCloudAuthentication.CuraCloudAccountAPIRoot
  33. self._oauth_settings = OAuth2Settings(
  34. OAUTH_SERVER_URL= self._oauth_root,
  35. CALLBACK_PORT=self._callback_port,
  36. CALLBACK_URL="http://localhost:{}/callback".format(self._callback_port),
  37. CLIENT_ID="um----------------------------ultimaker_cura",
  38. CLIENT_SCOPES="account.user.read drive.backup.read drive.backup.write packages.download "
  39. "packages.rating.read packages.rating.write connect.cluster.read connect.cluster.write "
  40. "cura.printjob.read cura.printjob.write cura.mesh.read cura.mesh.write",
  41. AUTH_DATA_PREFERENCE_KEY="general/ultimaker_auth_data",
  42. AUTH_SUCCESS_REDIRECT="{}/app/auth-success".format(self._oauth_root),
  43. AUTH_FAILED_REDIRECT="{}/app/auth-error".format(self._oauth_root)
  44. )
  45. self._authorization_service = AuthorizationService(self._oauth_settings)
  46. def initialize(self) -> None:
  47. self._authorization_service.initialize(self._application.getPreferences())
  48. self._authorization_service.onAuthStateChanged.connect(self._onLoginStateChanged)
  49. self._authorization_service.onAuthenticationError.connect(self._onLoginStateChanged)
  50. self._authorization_service.accessTokenChanged.connect(self._onAccessTokenChanged)
  51. self._authorization_service.loadAuthDataFromPreferences()
  52. def _onAccessTokenChanged(self):
  53. self.accessTokenChanged.emit()
  54. ## Returns a boolean indicating whether the given authentication is applied against staging or not.
  55. @property
  56. def is_staging(self) -> bool:
  57. return "staging" in self._oauth_root
  58. @pyqtProperty(bool, notify=loginStateChanged)
  59. def isLoggedIn(self) -> bool:
  60. return self._logged_in
  61. def _onLoginStateChanged(self, logged_in: bool = False, error_message: Optional[str] = None) -> None:
  62. if error_message:
  63. if self._error_message:
  64. self._error_message.hide()
  65. self._error_message = Message(error_message, title = i18n_catalog.i18nc("@info:title", "Login failed"))
  66. self._error_message.show()
  67. self._logged_in = False
  68. self.loginStateChanged.emit(False)
  69. return
  70. if self._logged_in != logged_in:
  71. self._logged_in = logged_in
  72. self.loginStateChanged.emit(logged_in)
  73. @pyqtSlot()
  74. def login(self) -> None:
  75. if self._logged_in:
  76. # Nothing to do, user already logged in.
  77. return
  78. self._authorization_service.startAuthorizationFlow()
  79. @pyqtProperty(str, notify=loginStateChanged)
  80. def userName(self):
  81. user_profile = self._authorization_service.getUserProfile()
  82. if not user_profile:
  83. return None
  84. return user_profile.username
  85. @pyqtProperty(str, notify = loginStateChanged)
  86. def profileImageUrl(self):
  87. user_profile = self._authorization_service.getUserProfile()
  88. if not user_profile:
  89. return None
  90. return user_profile.profile_image_url
  91. @pyqtProperty(str, notify=accessTokenChanged)
  92. def accessToken(self) -> Optional[str]:
  93. return self._authorization_service.getAccessToken()
  94. # Get the profile of the logged in user
  95. # @returns None if no user is logged in, a dict containing user_id, username and profile_image_url
  96. @pyqtProperty("QVariantMap", notify = loginStateChanged)
  97. def userProfile(self) -> Optional[Dict[str, Optional[str]]]:
  98. user_profile = self._authorization_service.getUserProfile()
  99. if not user_profile:
  100. return None
  101. return user_profile.__dict__
  102. @pyqtSlot()
  103. def logout(self) -> None:
  104. if not self._logged_in:
  105. return # Nothing to do, user isn't logged in.
  106. self._authorization_service.deleteAuthData()