RLMUser.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2016 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 <Foundation/Foundation.h>
  19. #import <Realm/RLMCredentials.h>
  20. #import <Realm/RLMRealmConfiguration.h>
  21. @class RLMUser, RLMSyncSession, RLMRealm, RLMUserIdentity, RLMAPIKeyAuth, RLMMongoClient, RLMMongoDatabase, RLMMongoCollection;
  22. @protocol RLMBSON;
  23. /**
  24. The state of the user object.
  25. */
  26. typedef NS_ENUM(NSUInteger, RLMUserState) {
  27. /// The user is logged out. Call `logInWithCredentials:...` with valid credentials to log the user back in.
  28. RLMUserStateLoggedOut,
  29. /// The user is logged in, and any Realms associated with it are syncing with MongoDB Realm.
  30. RLMUserStateLoggedIn,
  31. /// The user has been removed, and cannot be used.
  32. RLMUserStateRemoved
  33. };
  34. /// A block type used to report an error related to a specific user.
  35. typedef void(^RLMOptionalUserBlock)(RLMUser * _Nullable, NSError * _Nullable);
  36. /// A block type used to report an error on a network request from the user.
  37. typedef void(^RLMUserOptionalErrorBlock)(NSError * _Nullable);
  38. /// A block which returns a dictionary should there be any custom data set for a user
  39. typedef void(^RLMUserCustomDataBlock)(NSDictionary * _Nullable, NSError * _Nullable);
  40. /// A block type for returning from function calls.
  41. typedef void(^RLMCallFunctionCompletionBlock)(id<RLMBSON> _Nullable, NSError * _Nullable);
  42. NS_ASSUME_NONNULL_BEGIN
  43. /**
  44. A `RLMUser` instance represents a single Realm App user account.
  45. A user may have one or more credentials associated with it. These credentials
  46. uniquely identify the user to the authentication provider, and are used to sign
  47. into a MongoDB Realm user account.
  48. Note that user objects are only vended out via SDK APIs, and cannot be directly
  49. initialized. User objects can be accessed from any thread.
  50. */
  51. @interface RLMUser : NSObject
  52. /**
  53. The unique MongoDB Realm string identifying this user.
  54. Note this is different from an identitiy: A user may have multiple identities but has a single indentifier. See RLMUserIdentity.
  55. */
  56. @property (nonatomic, readonly) NSString *identifier NS_SWIFT_NAME(id);
  57. /// Returns an array of identities currently linked to a user.
  58. @property (nonatomic, readonly) NSArray<RLMUserIdentity *> *identities;
  59. /**
  60. The user's refresh token used to access the Realm Applcation.
  61. This is required to make HTTP requests to the Realm App's REST API
  62. for functionality not exposed natively. It should be treated as sensitive data.
  63. */
  64. @property (nullable, nonatomic, readonly) NSString *refreshToken;
  65. /**
  66. The user's refresh token used to access the Realm Application.
  67. This is required to make HTTP requests to MongoDB Realm's REST API
  68. for functionality not exposed natively. It should be treated as sensitive data.
  69. */
  70. @property (nullable, nonatomic, readonly) NSString *accessToken;
  71. /**
  72. The current state of the user.
  73. */
  74. @property (nonatomic, readonly) RLMUserState state;
  75. /**
  76. Indicates if the user is logged in or not. Returns true if the access token and refresh token are not empty.
  77. */
  78. @property (nonatomic, readonly) BOOL isLoggedIn;
  79. #pragma mark - Lifecycle
  80. /**
  81. Create a query-based configuration instance for the given url.
  82. @param partitionValue The `RLMBSON` value the Realm is partitioned on.
  83. @return A default configuration object with the sync configuration set to use the given partition value.
  84. */
  85. - (RLMRealmConfiguration *)configurationWithPartitionValue:(nullable id<RLMBSON>)partitionValue NS_REFINED_FOR_SWIFT;
  86. #pragma mark - Sessions
  87. /**
  88. Retrieve a valid session object belonging to this user for a given URL, or `nil`
  89. if no such object exists.
  90. */
  91. - (nullable RLMSyncSession *)sessionForPartitionValue:(id<RLMBSON>)partitionValue;
  92. /// Retrieve all the valid sessions belonging to this user.
  93. @property (nonatomic, readonly) NSArray<RLMSyncSession *> *allSessions;
  94. #pragma mark - Custom Data
  95. /**
  96. The custom data of the user.
  97. This is configured in your MongoDB Realm App.
  98. */
  99. @property (nonatomic, readonly) NSDictionary *customData NS_REFINED_FOR_SWIFT;
  100. /**
  101. Refresh a user's custom data. This will, in effect, refresh the user's auth session.
  102. */
  103. - (void)refreshCustomDataWithCompletion:(RLMUserCustomDataBlock)completion;
  104. /**
  105. Links the currently authenticated user with a new identity, where the identity is defined by the credential
  106. specified as a parameter. This will only be successful if this `RLMUser` is the currently authenticated
  107. with the client from which it was created. On success a new user will be returned with the new linked credentials.
  108. @param credentials The `RLMCredentials` used to link the user to a new identity.
  109. @param completion The completion handler to call when the linking is complete.
  110. If the operation is successful, the result will contain a new
  111. `RLMUser` object representing the currently logged in user.
  112. */
  113. - (void)linkUserWithCredentials:(RLMCredentials *)credentials
  114. completion:(RLMOptionalUserBlock)completion NS_REFINED_FOR_SWIFT;
  115. /**
  116. Removes the user
  117. This logs out and destroys the session related to this user. The completion block will return an error
  118. if the user is not found or is already removed.
  119. @param completion A callback invoked on completion
  120. */
  121. - (void)removeWithCompletion:(RLMUserOptionalErrorBlock)completion;
  122. /**
  123. Logs out the current user
  124. The users state will be set to `Removed` is they are an anonymous user or `LoggedOut` if they are authenticated by an email / password or third party auth clients
  125. If the logout request fails, this method will still clear local authentication state.
  126. @param completion A callback invoked on completion
  127. */
  128. - (void)logOutWithCompletion:(RLMUserOptionalErrorBlock)completion;
  129. /**
  130. A client for the user API key authentication provider which
  131. can be used to create and modify user API keys.
  132. This client should only be used by an authenticated user.
  133. */
  134. @property (nonatomic, readonly) RLMAPIKeyAuth *apiKeysAuth;
  135. /// A client for interacting with a remote MongoDB instance
  136. /// @param serviceName The name of the MongoDB service
  137. - (RLMMongoClient *)mongoClientWithServiceName:(NSString *)serviceName NS_REFINED_FOR_SWIFT;
  138. /**
  139. Calls the MongoDB Realm function with the provided name and arguments.
  140. @param name The name of the MongoDB Realm function to be called.
  141. @param arguments The `BSONArray` of arguments to be provided to the function.
  142. @param completion The completion handler to call when the function call is complete.
  143. This handler is executed on a non-main global `DispatchQueue`.
  144. */
  145. - (void)callFunctionNamed:(NSString *)name
  146. arguments:(NSArray<id<RLMBSON>> *)arguments
  147. completionBlock:(RLMCallFunctionCompletionBlock)completion NS_REFINED_FOR_SWIFT;
  148. /// :nodoc:
  149. - (instancetype)init __attribute__((unavailable("RLMUser cannot be created directly")));
  150. /// :nodoc:
  151. + (instancetype)new __attribute__((unavailable("RLMUser cannot be created directly")));
  152. @end
  153. #pragma mark - User info classes
  154. /**
  155. An identity of a user. A user can have multiple identities, usually associated with multiple providers.
  156. Note this is different from a user's unique identifier string.
  157. @seeAlso `RLMUser.identifier`
  158. */
  159. @interface RLMUserIdentity : NSObject
  160. /**
  161. The associated provider type
  162. */
  163. @property (nonatomic, readonly) NSString *providerType;
  164. /**
  165. The string which identifies the RLMUserIdentity
  166. */
  167. @property (nonatomic, readonly) NSString *identifier;
  168. /**
  169. Initialize an RLMUserIdentity for the given identifier and provider type.
  170. @param providerType the associated provider type
  171. @param identifier the identifier of the identity
  172. */
  173. - (instancetype)initUserIdentityWithProviderType:(NSString *)providerType
  174. identifier:(NSString *)identifier;
  175. @end
  176. NS_ASSUME_NONNULL_END