Account.py 4.8 KB

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