RLMApp.h 7.6 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 <Realm/RLMConstants.h>
  19. #import <AuthenticationServices/AuthenticationServices.h>
  20. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  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. RLM_SWIFT_SENDABLE RLM_FINAL // internally thread-safe
  73. @interface RLMApp : NSObject
  74. /// The configuration for this Realm app.
  75. @property (nonatomic, readonly) RLMAppConfiguration *configuration;
  76. /// The `RLMSyncManager` for this Realm app.
  77. @property (nonatomic, readonly) RLMSyncManager *syncManager;
  78. /// Get a dictionary containing all users keyed on id.
  79. @property (nonatomic, readonly) NSDictionary<NSString *, RLMUser *> *allUsers;
  80. /// Get the current user logged into the Realm app.
  81. @property (nonatomic, readonly, nullable) RLMUser *currentUser;
  82. /// The app ID for this Realm app.
  83. @property (nonatomic, readonly) NSString *appId;
  84. /**
  85. A client for the email/password authentication provider which
  86. can be used to obtain a credential for logging in.
  87. Used to perform requests specifically related to the email/password provider.
  88. */
  89. @property (nonatomic, readonly) RLMEmailPasswordAuth *emailPasswordAuth;
  90. /**
  91. Get an application with a given appId and configuration.
  92. @param appId The unique identifier of your Realm app.
  93. */
  94. + (instancetype)appWithId:(NSString *)appId;
  95. /**
  96. Get an application with a given appId and configuration.
  97. @param appId The unique identifier of your Realm app.
  98. @param configuration A configuration object to configure this client.
  99. */
  100. + (instancetype)appWithId:(NSString *)appId
  101. configuration:(nullable RLMAppConfiguration *)configuration;
  102. /**
  103. Login to a user for the Realm app.
  104. @param credentials The credentials identifying the user.
  105. @param completion A callback invoked after completion.
  106. */
  107. - (void)loginWithCredential:(RLMCredentials *)credentials
  108. completion:(RLMUserCompletionBlock)completion NS_REFINED_FOR_SWIFT;
  109. /**
  110. Switches the active user to the specified user.
  111. 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.
  112. An exception will be throw if the user is not valid. The current user will remain logged in.
  113. @param syncUser The user to switch to.
  114. @returns The user you intend to switch to
  115. */
  116. - (RLMUser *)switchToUser:(RLMUser *)syncUser;
  117. /**
  118. A client which can be used to register devices with the server to receive push notificatons
  119. */
  120. - (RLMPushClient *)pushClientWithServiceName:(NSString *)serviceName
  121. NS_SWIFT_NAME(pushClient(serviceName:));
  122. /**
  123. RLMApp instances are cached internally by Realm and cannot be created directly.
  124. Use `+[RLMRealm appWithId]` or `+[RLMRealm appWithId:configuration:]`
  125. to obtain a reference to an RLMApp.
  126. */
  127. - (instancetype)init __attribute__((unavailable("Use +appWithId or appWithId:configuration:.")));
  128. /**
  129. RLMApp instances are cached internally by Realm and cannot be created directly.
  130. Use `+[RLMRealm appWithId]` or `+[RLMRealm appWithId:configuration:]`
  131. to obtain a reference to an RLMApp.
  132. */
  133. + (instancetype)new __attribute__((unavailable("Use +appWithId or appWithId:configuration:.")));
  134. @end
  135. #pragma mark - Sign In With Apple Extension
  136. API_AVAILABLE(ios(13.0), macos(10.15), tvos(13.0), watchos(6.0))
  137. /// Use this delegate to be provided a callback once authentication has succeed or failed
  138. @protocol RLMASLoginDelegate
  139. /// Callback that is invoked should the authentication fail.
  140. /// @param error An error describing the authentication failure.
  141. - (void)authenticationDidFailWithError:(NSError *)error NS_SWIFT_NAME(authenticationDidComplete(error:));
  142. /// Callback that is invoked should the authentication succeed.
  143. /// @param user The newly authenticated user.
  144. - (void)authenticationDidCompleteWithUser:(RLMUser *)user NS_SWIFT_NAME(authenticationDidComplete(user:));
  145. @end
  146. API_AVAILABLE(ios(13.0), macos(10.15), tvos(13.0), watchos(6.0))
  147. /// Category extension that deals with Sign In With Apple authentication.
  148. /// This is only available on OS's that support `AuthenticationServices`
  149. @interface RLMApp (ASLogin)
  150. /// Use this delegate to be provided a callback once authentication has succeed or failed.
  151. @property (nonatomic, weak, nullable) id<RLMASLoginDelegate> authorizationDelegate;
  152. /// Sets the ASAuthorizationControllerDelegate to be handled by `RLMApp`
  153. /// @param controller The ASAuthorizationController in which you want `RLMApp` to consume its delegate.
  154. - (void)setASAuthorizationControllerDelegateForController:(ASAuthorizationController *)controller NS_REFINED_FOR_SWIFT;
  155. @end
  156. RLM_HEADER_AUDIT_END(nullability, sendability)