RLMUser.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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 <Realm/RLMConstants.h>
  19. #import <Realm/RLMCredentials.h>
  20. #import <Realm/RLMRealmConfiguration.h>
  21. #import <Realm/RLMSyncConfiguration.h>
  22. @class RLMUser, RLMSyncSession, RLMRealm, RLMUserIdentity, RLMAPIKeyAuth, RLMMongoClient, RLMMongoDatabase, RLMMongoCollection, RLMUserProfile;
  23. @protocol RLMBSON;
  24. /**
  25. The state of the user object.
  26. */
  27. typedef NS_ENUM(NSUInteger, RLMUserState) {
  28. /// The user is logged out. Call `logInWithCredentials:...` with valid credentials to log the user back in.
  29. RLMUserStateLoggedOut,
  30. /// The user is logged in, and any Realms associated with it are syncing with Atlas App Services.
  31. RLMUserStateLoggedIn,
  32. /// The user has been removed, and cannot be used.
  33. RLMUserStateRemoved
  34. };
  35. /// A block type used to report an error related to a specific user.
  36. RLM_SWIFT_SENDABLE
  37. typedef void(^RLMOptionalUserBlock)(RLMUser * _Nullable, NSError * _Nullable);
  38. /// A block type used to report an error on a network request from the user.
  39. RLM_SWIFT_SENDABLE
  40. typedef void(^RLMUserOptionalErrorBlock)(NSError * _Nullable);
  41. /// A block which returns a dictionary should there be any custom data set for a user
  42. RLM_SWIFT_SENDABLE
  43. typedef void(^RLMUserCustomDataBlock)(NSDictionary * _Nullable, NSError * _Nullable);
  44. /// A block type for returning from function calls.
  45. RLM_SWIFT_SENDABLE
  46. typedef void(^RLMCallFunctionCompletionBlock)(id<RLMBSON> _Nullable, NSError * _Nullable);
  47. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  48. /**
  49. A `RLMUser` instance represents a single Realm App user account.
  50. A user may have one or more credentials associated with it. These credentials
  51. uniquely identify the user to the authentication provider, and are used to sign
  52. into an Atlas App Services user account.
  53. Note that user objects are only vended out via SDK APIs, and cannot be directly
  54. initialized. User objects can be accessed from any thread.
  55. */
  56. RLM_SWIFT_SENDABLE RLM_FINAL // internally thread-safe
  57. @interface RLMUser : NSObject
  58. /**
  59. The unique Atlas App Services string identifying this user.
  60. Note this is different from an identitiy: A user may have multiple identities but has a single indentifier. See RLMUserIdentity.
  61. */
  62. @property (nonatomic, readonly) NSString *identifier NS_SWIFT_NAME(id);
  63. /// Returns an array of identities currently linked to a user.
  64. @property (nonatomic, readonly) NSArray<RLMUserIdentity *> *identities;
  65. /**
  66. The user's refresh token used to access the Realm Applcation.
  67. This is required to make HTTP requests to the Realm App's REST API
  68. for functionality not exposed natively. It should be treated as sensitive data.
  69. */
  70. @property (nullable, nonatomic, readonly) NSString *refreshToken;
  71. /**
  72. The user's refresh token used to access the Realm Application.
  73. This is required to make HTTP requests to Atlas App Services' REST API
  74. for functionality not exposed natively. It should be treated as sensitive data.
  75. */
  76. @property (nullable, nonatomic, readonly) NSString *accessToken;
  77. /**
  78. The current state of the user.
  79. */
  80. @property (nonatomic, readonly) RLMUserState state;
  81. /**
  82. Indicates if the user is logged in or not. Returns true if the access token and refresh token are not empty.
  83. */
  84. @property (nonatomic, readonly) BOOL isLoggedIn;
  85. #pragma mark - Lifecycle
  86. /**
  87. Create a partition-based sync configuration instance for the given partition value.
  88. @param partitionValue The `RLMBSON` value the Realm is partitioned on.
  89. @return A default configuration object with the sync configuration set to use the given partition value.
  90. */
  91. - (RLMRealmConfiguration *)configurationWithPartitionValue:(nullable id<RLMBSON>)partitionValue NS_REFINED_FOR_SWIFT;
  92. /**
  93. Create a partition-based sync configuration instance for the given partition value.
  94. @param partitionValue The `RLMBSON` value the Realm is partitioned on.
  95. @param clientResetMode Determines file recovery behavior in the event of a client reset.
  96. See: https://docs.mongodb.com/realm/sync/error-handling/client-resets/
  97. @return A configuration object with the sync configuration set to use the given partition value.
  98. */
  99. - (RLMRealmConfiguration *)configurationWithPartitionValue:(nullable id<RLMBSON>)partitionValue
  100. clientResetMode:(RLMClientResetMode)clientResetMode NS_REFINED_FOR_SWIFT;
  101. /**
  102. Create a partition-based sync configuration instance for the given partition value.
  103. @param partitionValue The `RLMBSON` value the Realm is partitioned on.
  104. @param clientResetMode Determines file recovery behavior in the event of a client reset.
  105. See: https://docs.mongodb.com/realm/sync/error-handling/client-resets/
  106. @param beforeResetBlock A callback which notifies prior to a client reset occurring. See: `RLMClientResetBeforeBlock`
  107. @param afterResetBlock A callback which notifies after a client reset has occurred. See: `RLMClientResetAfterBlock`
  108. @return A configuration object with the sync configuration set to use the given partition value.
  109. */
  110. - (RLMRealmConfiguration *)configurationWithPartitionValue:(nullable id<RLMBSON>)partitionValue
  111. clientResetMode:(RLMClientResetMode)clientResetMode
  112. notifyBeforeReset:(nullable RLMClientResetBeforeBlock)beforeResetBlock
  113. notifyAfterReset:(nullable RLMClientResetAfterBlock)afterResetBlock NS_REFINED_FOR_SWIFT;
  114. /**
  115. Create a partition-based sync configuration instance for the given partition value.
  116. @param partitionValue The `RLMBSON` value the Realm is partitioned on.
  117. @param clientResetMode Determines file recovery behavior in the event of a client reset.
  118. See: https://docs.mongodb.com/realm/sync/error-handling/client-resets/
  119. @param manualClientResetHandler An error reporting block that is invoked during a client reset.
  120. @See ``RLMSyncErrorReportingBlock`` and ``RLMClientResetInfo``
  121. @return A configuration object with the sync configuration set to use the given partition value.
  122. */
  123. - (RLMRealmConfiguration *)configurationWithPartitionValue:(nullable id<RLMBSON>)partitionValue
  124. clientResetMode:(RLMClientResetMode)clientResetMode
  125. manualClientResetHandler:(nullable RLMSyncErrorReportingBlock)manualClientResetHandler NS_REFINED_FOR_SWIFT;
  126. /**
  127. Create a flexible sync configuration instance, which can be used to open a Realm that
  128. supports flexible sync.
  129. @note A single server-side Device Sync App can sync data with either partition-based realms or flexible sync based realms.
  130. In order for an application to contain both partition-based and flexible sync realms, more than one
  131. server-side Device Sync App must be used.
  132. @return A ``RLMRealmConfiguration`` instance with a flexible sync configuration.
  133. */
  134. - (RLMRealmConfiguration *)flexibleSyncConfiguration NS_REFINED_FOR_SWIFT;
  135. /**
  136. Create a flexible sync configuration instance, which can be used to open a Realm that
  137. supports flexible sync.
  138. @note A single server-side Device Sync App can sync data with either partition-based realms or flexible sync based realms.
  139. In order for an application to contain both partition-based and flexible sync realms, more than one
  140. server-side Device Sync App must be used.
  141. @param clientResetMode Determines file recovery behavior in the event of a client reset.
  142. See: https://docs.mongodb.com/realm/sync/error-handling/client-resets/
  143. @param beforeResetBlock A callback which notifies prior to a client reset occurring. See: `RLMClientResetBeforeBlock`
  144. @param afterResetBlock A callback which notifies after a client reset has occurred. See: `RLMClientResetAfterBlock`
  145. @return A `RLMRealmConfiguration` instance with a flexible sync configuration.
  146. */
  147. - (RLMRealmConfiguration *)flexibleSyncConfigurationWithClientResetMode:(RLMClientResetMode)clientResetMode
  148. notifyBeforeReset:(nullable RLMClientResetBeforeBlock)beforeResetBlock
  149. notifyAfterReset:(nullable RLMClientResetAfterBlock)afterResetBlock NS_REFINED_FOR_SWIFT;
  150. /**
  151. Create a flexible sync configuration instance, which can be used to open a Realm that
  152. supports flexible sync.
  153. @note A single server-side Device Sync App can sync data with either partition-based realms or flexible sync based realms.
  154. In order for an application to contain both partition-based and flexible sync realms, more than one
  155. server-side Device Sync App must be used.
  156. @param clientResetMode Determines file recovery behavior in the event of a client reset.
  157. See: https://docs.mongodb.com/realm/sync/error-handling/client-resets/
  158. @param manualClientResetHandler An error reporting block that is invoked during a client reset.
  159. @See `RLMSyncErrorReportingBlock` and `RLMClientResetInfo`
  160. @return A `RLMRealmConfiguration` instance with a flexible sync configuration.
  161. */
  162. - (RLMRealmConfiguration *)flexibleSyncConfigurationWithClientResetMode:(RLMClientResetMode)clientResetMode
  163. manualClientResetHandler:(nullable RLMSyncErrorReportingBlock)manualClientResetHandler NS_REFINED_FOR_SWIFT;
  164. /**
  165. Create a flexible sync configuration instance, which can be used to open a Realm that
  166. supports flexible sync.
  167. @note A single server-side Device Sync App can sync data with either partition-based realms or flexible sync based realms.
  168. In order for an application to contain both partition-based and flexible sync realms, more than one
  169. server-side Device Sync App must be used.
  170. @param initialSubscriptions A block which receives a subscription set instance, that can be
  171. used to add an initial set of subscriptions which will be executed
  172. when the Realm is first opened.
  173. @param rerunOnOpen If true, allows to run the initial set of subscriptions specified, on every app startup.
  174. This can be used to re-run dynamic time ranges and other queries that require a
  175. re-computation of a static variable.
  176. @return A `RLMRealmConfiguration` instance with a flexible sync configuration.
  177. */
  178. - (RLMRealmConfiguration *)flexibleSyncConfigurationWithInitialSubscriptions:(RLMFlexibleSyncInitialSubscriptionsBlock)initialSubscriptions
  179. rerunOnOpen:(BOOL)rerunOnOpen NS_REFINED_FOR_SWIFT;
  180. /**
  181. Create a flexible sync configuration instance, which can be used to open a Realm that
  182. supports flexible sync.
  183. @note A single server-side Device Sync App can sync data with either partition-based realms or flexible sync based realms.
  184. In order for an application to contain both partition-based and flexible sync realms, more than one
  185. server-side Device Sync App must be used.
  186. @param initialSubscriptions A block which receives a subscription set instance, that can be
  187. used to add an initial set of subscriptions which will be executed
  188. when the Realm is first opened.
  189. @param rerunOnOpen If true, allows to run the initial set of subscriptions specified, on every app startup.
  190. This can be used to re-run dynamic time ranges and other queries that require a
  191. re-computation of a static variable.
  192. @param clientResetMode Determines file recovery behavior in the event of a client reset.
  193. See: https://docs.mongodb.com/realm/sync/error-handling/client-resets/
  194. @param beforeResetBlock A callback which notifies prior to a client reset occurring. See: `RLMClientResetBeforeBlock`
  195. @param afterResetBlock A callback which notifies after a client reset has occurred. See: `RLMClientResetAfterBlock`
  196. @return A `RLMRealmConfiguration` instance with a flexible sync configuration.
  197. */
  198. - (RLMRealmConfiguration *)flexibleSyncConfigurationWithInitialSubscriptions:(RLMFlexibleSyncInitialSubscriptionsBlock)initialSubscriptions
  199. rerunOnOpen:(BOOL)rerunOnOpen
  200. clientResetMode:(RLMClientResetMode)clientResetMode
  201. notifyBeforeReset:(nullable RLMClientResetBeforeBlock)beforeResetBlock
  202. notifyAfterReset:(nullable RLMClientResetAfterBlock)afterResetBlock NS_REFINED_FOR_SWIFT;
  203. /**
  204. Create a flexible sync configuration instance, which can be used to open a Realm that
  205. supports flexible sync.
  206. @note A single server-side Device Sync App can sync data with either partition-based realms or flexible sync based realms.
  207. In order for an application to contain both partition-based and flexible sync realms, more than one
  208. server-side Device Sync App must be used.
  209. @param initialSubscriptions A block which receives a subscription set instance, that can be
  210. used to add an initial set of subscriptions which will be executed
  211. when the Realm is first opened.
  212. @param rerunOnOpen If true, allows to run the initial set of subscriptions specified, on every app startup.
  213. This can be used to re-run dynamic time ranges and other queries that require a
  214. re-computation of a static variable.
  215. @param clientResetMode Determines file recovery behavior in the event of a client reset.
  216. See: https://docs.mongodb.com/realm/sync/error-handling/client-resets/
  217. @param manualClientResetHandler An error reporting block that is invoked during a client reset.
  218. @See `RLMSyncErrorReportingBlock` and `RLMClientResetInfo`
  219. @return A `RLMRealmConfiguration` instance with a flexible sync configuration.
  220. */
  221. - (RLMRealmConfiguration *)flexibleSyncConfigurationWithInitialSubscriptions:(RLMFlexibleSyncInitialSubscriptionsBlock)initialSubscriptions
  222. rerunOnOpen:(BOOL)rerunOnOpen
  223. clientResetMode:(RLMClientResetMode)clientResetMode
  224. manualClientResetHandler:(nullable RLMSyncErrorReportingBlock)manualClientResetHandler NS_REFINED_FOR_SWIFT;
  225. #pragma mark - Sessions
  226. /**
  227. Retrieve a valid session object belonging to this user for a given URL, or `nil`
  228. if no such object exists.
  229. */
  230. - (nullable RLMSyncSession *)sessionForPartitionValue:(id<RLMBSON>)partitionValue;
  231. /// Retrieve all the valid sessions belonging to this user.
  232. @property (nonatomic, readonly) NSArray<RLMSyncSession *> *allSessions;
  233. #pragma mark - Custom Data
  234. /**
  235. The custom data of the user.
  236. This is configured in your Atlas App Services app.
  237. */
  238. @property (nonatomic, readonly) NSDictionary *customData NS_REFINED_FOR_SWIFT;
  239. /**
  240. The profile of the user.
  241. */
  242. @property (nonatomic, readonly) RLMUserProfile *profile;
  243. /**
  244. Refresh a user's custom data. This will, in effect, refresh the user's auth session.
  245. */
  246. - (void)refreshCustomDataWithCompletion:(RLMUserCustomDataBlock)completion;
  247. /**
  248. Links the currently authenticated user with a new identity, where the identity is defined by the credential
  249. specified as a parameter. This will only be successful if this `RLMUser` is the currently authenticated
  250. with the client from which it was created. On success a new user will be returned with the new linked credentials.
  251. @param credentials The `RLMCredentials` used to link the user to a new identity.
  252. @param completion The completion handler to call when the linking is complete.
  253. If the operation is successful, the result will contain a new
  254. `RLMUser` object representing the currently logged in user.
  255. */
  256. - (void)linkUserWithCredentials:(RLMCredentials *)credentials
  257. completion:(RLMOptionalUserBlock)completion NS_REFINED_FOR_SWIFT;
  258. /**
  259. Removes the user
  260. This logs out and destroys the session related to this user. The completion block will return an error
  261. if the user is not found or is already removed.
  262. @param completion A callback invoked on completion
  263. */
  264. - (void)removeWithCompletion:(RLMUserOptionalErrorBlock)completion;
  265. /**
  266. Permanently deletes this user from your Atlas App Services app.
  267. The users state will be set to `Removed` and the session will be destroyed.
  268. If the delete request fails, the local authentication state will be untouched.
  269. @param completion A callback invoked on completion
  270. */
  271. - (void)deleteWithCompletion:(RLMUserOptionalErrorBlock)completion;
  272. /**
  273. Logs out the current user
  274. 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
  275. If the logout request fails, this method will still clear local authentication state.
  276. @param completion A callback invoked on completion
  277. */
  278. - (void)logOutWithCompletion:(RLMUserOptionalErrorBlock)completion;
  279. /**
  280. A client for the user API key authentication provider which
  281. can be used to create and modify user API keys.
  282. This client should only be used by an authenticated user.
  283. */
  284. @property (nonatomic, readonly) RLMAPIKeyAuth *apiKeysAuth;
  285. /// A client for interacting with a remote MongoDB instance
  286. /// @param serviceName The name of the MongoDB service
  287. - (RLMMongoClient *)mongoClientWithServiceName:(NSString *)serviceName NS_REFINED_FOR_SWIFT;
  288. /**
  289. Calls the Atlas App Services function with the provided name and arguments.
  290. @param name The name of the Atlas App Services function to be called.
  291. @param arguments The `BSONArray` of arguments to be provided to the function.
  292. @param completion The completion handler to call when the function call is complete.
  293. This handler is executed on a non-main global `DispatchQueue`.
  294. */
  295. - (void)callFunctionNamed:(NSString *)name
  296. arguments:(NSArray<id<RLMBSON>> *)arguments
  297. completionBlock:(RLMCallFunctionCompletionBlock)completion NS_REFINED_FOR_SWIFT;
  298. /// :nodoc:
  299. - (instancetype)init __attribute__((unavailable("RLMUser cannot be created directly")));
  300. /// :nodoc:
  301. + (instancetype)new __attribute__((unavailable("RLMUser cannot be created directly")));
  302. @end
  303. #pragma mark - User info classes
  304. /**
  305. An identity of a user. A user can have multiple identities, usually associated with multiple providers.
  306. Note this is different from a user's unique identifier string.
  307. @seeAlso `RLMUser.identifier`
  308. */
  309. RLM_SWIFT_SENDABLE RLM_FINAL // immutable final class
  310. @interface RLMUserIdentity : NSObject
  311. /**
  312. The associated provider type
  313. */
  314. @property (nonatomic, readonly) NSString *providerType;
  315. /**
  316. The string which identifies the RLMUserIdentity
  317. */
  318. @property (nonatomic, readonly) NSString *identifier;
  319. /**
  320. Initialize an RLMUserIdentity for the given identifier and provider type.
  321. @param providerType the associated provider type
  322. @param identifier the identifier of the identity
  323. */
  324. - (instancetype)initUserIdentityWithProviderType:(NSString *)providerType
  325. identifier:(NSString *)identifier;
  326. @end
  327. /**
  328. A profile for a given User.
  329. */
  330. RLM_SWIFT_SENDABLE RLM_FINAL // immutable final class
  331. @interface RLMUserProfile : NSObject
  332. /// The full name of the user.
  333. @property (nonatomic, readonly, nullable) NSString *name;
  334. /// The email address of the user.
  335. @property (nonatomic, readonly, nullable) NSString *email;
  336. /// A URL to the user's profile picture.
  337. @property (nonatomic, readonly, nullable) NSString *pictureURL;
  338. /// The first name of the user.
  339. @property (nonatomic, readonly, nullable) NSString *firstName;
  340. /// The last name of the user.
  341. @property (nonatomic, readonly, nullable) NSString *lastName;
  342. /// The gender of the user.
  343. @property (nonatomic, readonly, nullable) NSString *gender;
  344. /// The birthdate of the user.
  345. @property (nonatomic, readonly, nullable) NSString *birthday;
  346. /// The minimum age of the user.
  347. @property (nonatomic, readonly, nullable) NSString *minAge;
  348. /// The maximum age of the user.
  349. @property (nonatomic, readonly, nullable) NSString *maxAge;
  350. /// The BSON dictionary of metadata associated with this user.
  351. @property (nonatomic, readonly) NSDictionary *metadata NS_REFINED_FOR_SWIFT;
  352. @end
  353. RLM_HEADER_AUDIT_END(nullability, sendability)