RLMCredentials.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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/RLMSyncUtil.h>
  19. NS_ASSUME_NONNULL_BEGIN
  20. @protocol RLMBSON;
  21. /// A token representing an identity provider's credentials.
  22. typedef NSString *RLMCredentialsToken;
  23. /// A type representing the unique identifier of a MongoDB Realm identity provider.
  24. typedef NSString *RLMIdentityProvider NS_EXTENSIBLE_STRING_ENUM;
  25. /// The username/password identity provider. User accounts are handled by MongoDB Realm 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. @interface RLMCredentials : NSObject
  48. /// The name of the identity provider which generated the credentials token.
  49. @property (nonatomic) RLMIdentityProvider provider;
  50. /**
  51. Construct and return credentials from a Facebook account token.
  52. */
  53. + (instancetype)credentialsWithFacebookToken:(RLMCredentialsToken)token;
  54. /**
  55. Construct and return credentials from a Google account token.
  56. */
  57. + (instancetype)credentialsWithGoogleAuthCode:(RLMCredentialsToken)token;
  58. /**
  59. Construct and return credentials from a Google id token.
  60. */
  61. + (instancetype)credentialsWithGoogleIdToken:(RLMCredentialsToken)token;
  62. /**
  63. Construct and return credentials from an Apple account token.
  64. */
  65. + (instancetype)credentialsWithAppleToken:(RLMCredentialsToken)token;
  66. /**
  67. Construct and return credentials for a MongoDB Realm function using a mongodb document as a json payload.
  68. */
  69. + (instancetype)credentialsWithFunctionPayload:(NSDictionary<NSString *, id<RLMBSON>> *)payload;
  70. /**
  71. Construct and return credentials from a user api key.
  72. */
  73. + (instancetype)credentialsWithUserAPIKey:(NSString *)apiKey;
  74. /**
  75. Construct and return credentials from a server api key.
  76. */
  77. + (instancetype)credentialsWithServerAPIKey:(NSString *)apiKey;
  78. /**
  79. Construct and return MongoDB Realm credentials from an email and password.
  80. */
  81. + (instancetype)credentialsWithEmail:(NSString *)email
  82. password:(NSString *)password;
  83. /**
  84. Construct and return credentials from a JSON Web Token.
  85. */
  86. + (instancetype)credentialsWithJWT:(NSString *)token;
  87. /**
  88. Construct and return anonymous credentials
  89. */
  90. + (instancetype)anonymousCredentials;
  91. /// :nodoc:
  92. - (instancetype)init __attribute__((unavailable("RLMAppCredentials cannot be created directly")));
  93. /// :nodoc:
  94. + (instancetype)new __attribute__((unavailable("RLMAppCredentials cannot be created directly")));
  95. NS_ASSUME_NONNULL_END
  96. @end