RLMApp.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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 <Foundation/Foundation.h>
  19. #import <AuthenticationServices/AuthenticationServices.h>
  20. NS_ASSUME_NONNULL_BEGIN
  21. @protocol RLMNetworkTransport, RLMBSON;
  22. @class RLMUser, RLMCredentials, RLMSyncManager, RLMEmailPasswordAuth, RLMPushClient;
  23. /// A block type used for APIs which asynchronously vend an `RLMUser`.
  24. typedef void(^RLMUserCompletionBlock)(RLMUser * _Nullable, NSError * _Nullable);
  25. /// A block type used to report an error
  26. typedef void(^RLMOptionalErrorBlock)(NSError * _Nullable);
  27. #pragma mark RLMAppConfiguration
  28. /// Properties representing the configuration of a client
  29. /// that communicate with a particular Realm application.
  30. @interface RLMAppConfiguration : NSObject
  31. /// A custom base URL to request against.
  32. @property (nonatomic, strong, nullable) NSString* baseURL;
  33. /// The custom transport for network calls to the server.
  34. @property (nonatomic, strong, nullable) id<RLMNetworkTransport> transport;
  35. /// A custom app name.
  36. @property (nonatomic, strong, nullable) NSString *localAppName;
  37. /// A custom app version.
  38. @property (nonatomic, strong, nullable) NSString *localAppVersion;
  39. /// The default timeout for network requests.
  40. @property (nonatomic, assign) NSUInteger defaultRequestTimeoutMS;
  41. /**
  42. Create a new Realm App configuration.
  43. @param baseURL A custom base URL to request against.
  44. @param transport A custom network transport.
  45. @param localAppName A custom app name.
  46. @param localAppVersion A custom app version.
  47. */
  48. - (instancetype)initWithBaseURL:(nullable NSString *)baseURL
  49. transport:(nullable id<RLMNetworkTransport>)transport
  50. localAppName:(nullable NSString *)localAppName
  51. localAppVersion:(nullable NSString *)localAppVersion;
  52. /**
  53. Create a new Realm App configuration.
  54. @param baseURL A custom base URL to request against.
  55. @param transport A custom network transport.
  56. @param localAppName A custom app name.
  57. @param localAppVersion A custom app version.
  58. @param defaultRequestTimeoutMS A custom default timeout for network requests.
  59. */
  60. - (instancetype)initWithBaseURL:(nullable NSString *) baseURL
  61. transport:(nullable id<RLMNetworkTransport>)transport
  62. localAppName:(nullable NSString *) localAppName
  63. localAppVersion:(nullable NSString *)localAppVersion
  64. defaultRequestTimeoutMS:(NSUInteger)defaultRequestTimeoutMS;
  65. @end
  66. #pragma mark RLMApp
  67. /**
  68. The `RLMApp` has the fundamental set of methods for communicating with a Realm
  69. application backend.
  70. This interface provides access to login and authentication.
  71. */
  72. @interface RLMApp : NSObject
  73. /// The configuration for this Realm app.
  74. @property (nonatomic, readonly) RLMAppConfiguration *configuration;
  75. /// The `RLMSyncManager` for this Realm app.
  76. @property (nonatomic, readonly) RLMSyncManager *syncManager;
  77. /// Get a dictionary containing all users keyed on id.
  78. @property (nonatomic, readonly) NSDictionary<NSString *, RLMUser *> *allUsers;
  79. /// Get the current user logged into the Realm app.
  80. @property (nonatomic, readonly, nullable) RLMUser *currentUser;
  81. /**
  82. A client for the email/password authentication provider which
  83. can be used to obtain a credential for logging in.
  84. Used to perform requests specifically related to the email/password provider.
  85. */
  86. @property (nonatomic, readonly) RLMEmailPasswordAuth *emailPasswordAuth;
  87. /**
  88. Get an application with a given appId and configuration.
  89. @param appId The unique identifier of your Realm app.
  90. */
  91. + (instancetype)appWithId:(NSString *)appId;
  92. /**
  93. Get an application with a given appId and configuration.
  94. @param appId The unique identifier of your Realm app.
  95. @param configuration A configuration object to configure this client.
  96. */
  97. + (instancetype)appWithId:(NSString *)appId
  98. configuration:(nullable RLMAppConfiguration *)configuration;
  99. /**
  100. Login to a user for the Realm app.
  101. @param credentials The credentials identifying the user.
  102. @param completion A callback invoked after completion.
  103. */
  104. - (void)loginWithCredential:(RLMCredentials *)credentials
  105. completion:(RLMUserCompletionBlock)completion NS_REFINED_FOR_SWIFT;
  106. /**
  107. Switches the active user to the specified user.
  108. This sets which user is used by all RLMApp operations which require a user. This is a local operation which does not access the network.
  109. An exception will be throw if the user is not valid. The current user will remain logged in.
  110. @param syncUser The user to switch to.
  111. @returns The user you intend to switch to
  112. */
  113. - (RLMUser *)switchToUser:(RLMUser *)syncUser;
  114. /**
  115. A client which can be used to register devices with the server to receive push notificatons
  116. */
  117. - (RLMPushClient *)pushClientWithServiceName:(NSString *)serviceName
  118. NS_SWIFT_NAME(pushClient(serviceName:));
  119. /**
  120. RLMApp instances are cached internally by Realm and cannot be created directly.
  121. Use `+[RLMRealm appWithId]` or `+[RLMRealm appWithId:configuration:]`
  122. to obtain a reference to an RLMApp.
  123. */
  124. - (instancetype)init __attribute__((unavailable("Use +appWithId or appWithId:configuration:.")));
  125. /**
  126. RLMApp instances are cached internally by Realm and cannot be created directly.
  127. Use `+[RLMRealm appWithId]` or `+[RLMRealm appWithId:configuration:]`
  128. to obtain a reference to an RLMApp.
  129. */
  130. + (instancetype)new __attribute__((unavailable("Use +appWithId or appWithId:configuration:.")));
  131. @end
  132. NS_ASSUME_NONNULL_END
  133. #pragma mark - Sign In With Apple Extension
  134. NS_ASSUME_NONNULL_BEGIN
  135. API_AVAILABLE(ios(13.0), macos(10.15), tvos(13.0), watchos(6.0))
  136. /// Use this delegate to be provided a callback once authentication has succeed or failed
  137. @protocol RLMASLoginDelegate
  138. /// Callback that is invoked should the authentication fail.
  139. /// @param error An error describing the authentication failure.
  140. - (void)authenticationDidCompleteWithError:(NSError *)error NS_SWIFT_NAME(authenticationDidComplete(error:));
  141. /// Callback that is invoked should the authentication succeed.
  142. /// @param user The newly authenticated user.
  143. - (void)authenticationDidCompleteWithUser:(RLMUser *)user NS_SWIFT_NAME(authenticationDidComplete(user:));
  144. @end
  145. API_AVAILABLE(ios(13.0), macos(10.15), tvos(13.0), watchos(6.0))
  146. /// Category extension that deals with Sign In With Apple authentication.
  147. /// This is only available on OS's that support `AuthenticationServices`
  148. @interface RLMApp (ASLogin)
  149. /// Use this delegate to be provided a callback once authentication has succeed or failed.
  150. @property (nonatomic, weak, nullable) id<RLMASLoginDelegate> authorizationDelegate;
  151. /// Sets the ASAuthorizationControllerDelegate to be handled by `RLMApp`
  152. /// @param controller The ASAuthorizationController in which you want `RLMApp` to consume its delegate.
  153. - (void)setASAuthorizationControllerDelegateForController:(ASAuthorizationController *)controller NS_REFINED_FOR_SWIFT;
  154. @end
  155. NS_ASSUME_NONNULL_END