RLMCredentials.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 Realm Inc.
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. //
  17. ////////////////////////////////////////////////////////////////////////////
  18. #import <Realm/RLMConstants.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. @protocol RLMBSON;
  21. /// A token representing an identity provider's credentials.
  22. typedef NSString *RLMCredentialsToken;
  23. /// A type representing the unique identifier of an Atlas App Services identity provider.
  24. typedef NSString *RLMIdentityProvider NS_EXTENSIBLE_STRING_ENUM;
  25. /// The username/password identity provider. User accounts are handled by Atlas App Services directly without the
  26. /// involvement of a third-party identity provider.
  27. extern RLMIdentityProvider const RLMIdentityProviderUsernamePassword;
  28. /// A Facebook account as an identity provider.
  29. extern RLMIdentityProvider const RLMIdentityProviderFacebook;
  30. /// A Google account as an identity provider.
  31. extern RLMIdentityProvider const RLMIdentityProviderGoogle;
  32. /// An Apple account as an identity provider.
  33. extern RLMIdentityProvider const RLMIdentityProviderApple;
  34. /// A JSON Web Token as an identity provider.
  35. extern RLMIdentityProvider const RLMIdentityProviderJWT;
  36. /// An Anonymous account as an identity provider.
  37. extern RLMIdentityProvider const RLMIdentityProviderAnonymous;
  38. /// An Realm Cloud function as an identity provider.
  39. extern RLMIdentityProvider const RLMIdentityProviderFunction;
  40. /// A user api key as an identity provider.
  41. extern RLMIdentityProvider const RLMIdentityProviderUserAPIKey;
  42. /// A server api key as an identity provider.
  43. extern RLMIdentityProvider const RLMIdentityProviderServerAPIKey;
  44. /**
  45. Opaque credentials representing a specific Realm App user.
  46. */
  47. RLM_SWIFT_SENDABLE RLM_FINAL // immutable final class
  48. @interface RLMCredentials : NSObject
  49. /// The name of the identity provider which generated the credentials token.
  50. @property (nonatomic, readonly) RLMIdentityProvider provider;
  51. /**
  52. Construct and return credentials from a Facebook account token.
  53. */
  54. + (instancetype)credentialsWithFacebookToken:(RLMCredentialsToken)token;
  55. /**
  56. Construct and return credentials from a Google account token.
  57. */
  58. + (instancetype)credentialsWithGoogleAuthCode:(RLMCredentialsToken)token;
  59. /**
  60. Construct and return credentials from a Google id token.
  61. */
  62. + (instancetype)credentialsWithGoogleIdToken:(RLMCredentialsToken)token;
  63. /**
  64. Construct and return credentials from an Apple account token.
  65. */
  66. + (instancetype)credentialsWithAppleToken:(RLMCredentialsToken)token;
  67. /**
  68. Construct and return credentials for an Atlas App Services function using a mongodb document as a json payload.
  69. */
  70. + (instancetype)credentialsWithFunctionPayload:(NSDictionary<NSString *, id<RLMBSON>> *)payload;
  71. /**
  72. Construct and return credentials from a user api key.
  73. */
  74. + (instancetype)credentialsWithUserAPIKey:(NSString *)apiKey;
  75. /**
  76. Construct and return credentials from a server api key.
  77. */
  78. + (instancetype)credentialsWithServerAPIKey:(NSString *)apiKey;
  79. /**
  80. Construct and return Atlas App Services credentials from an email and password.
  81. */
  82. + (instancetype)credentialsWithEmail:(NSString *)email
  83. password:(NSString *)password;
  84. /**
  85. Construct and return credentials from a JSON Web Token.
  86. */
  87. + (instancetype)credentialsWithJWT:(NSString *)token;
  88. /**
  89. Construct and return anonymous credentials
  90. */
  91. + (instancetype)anonymousCredentials;
  92. /// :nodoc:
  93. - (instancetype)init __attribute__((unavailable("RLMAppCredentials cannot be created directly")));
  94. /// :nodoc:
  95. + (instancetype)new __attribute__((unavailable("RLMAppCredentials cannot be created directly")));
  96. @end
  97. RLM_HEADER_AUDIT_END(nullability, sendability)