123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- ////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2016 Realm Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- ////////////////////////////////////////////////////////////////////////////
- #import <Foundation/Foundation.h>
- #import <Realm/RLMCredentials.h>
- #import <Realm/RLMRealmConfiguration.h>
- @class RLMUser, RLMSyncSession, RLMRealm, RLMUserIdentity, RLMAPIKeyAuth, RLMMongoClient, RLMMongoDatabase, RLMMongoCollection;
- @protocol RLMBSON;
- /**
- The state of the user object.
- */
- typedef NS_ENUM(NSUInteger, RLMUserState) {
- /// The user is logged out. Call `logInWithCredentials:...` with valid credentials to log the user back in.
- RLMUserStateLoggedOut,
- /// The user is logged in, and any Realms associated with it are syncing with MongoDB Realm.
- RLMUserStateLoggedIn,
- /// The user has been removed, and cannot be used.
- RLMUserStateRemoved
- };
- /// A block type used to report an error related to a specific user.
- typedef void(^RLMOptionalUserBlock)(RLMUser * _Nullable, NSError * _Nullable);
- /// A block type used to report an error on a network request from the user.
- typedef void(^RLMUserOptionalErrorBlock)(NSError * _Nullable);
- /// A block which returns a dictionary should there be any custom data set for a user
- typedef void(^RLMUserCustomDataBlock)(NSDictionary * _Nullable, NSError * _Nullable);
- /// A block type for returning from function calls.
- typedef void(^RLMCallFunctionCompletionBlock)(id<RLMBSON> _Nullable, NSError * _Nullable);
- NS_ASSUME_NONNULL_BEGIN
- /**
- A `RLMUser` instance represents a single Realm App user account.
- A user may have one or more credentials associated with it. These credentials
- uniquely identify the user to the authentication provider, and are used to sign
- into a MongoDB Realm user account.
- Note that user objects are only vended out via SDK APIs, and cannot be directly
- initialized. User objects can be accessed from any thread.
- */
- @interface RLMUser : NSObject
- /**
- The unique MongoDB Realm string identifying this user.
- Note this is different from an identitiy: A user may have multiple identities but has a single indentifier. See RLMUserIdentity.
- */
- @property (nonatomic, readonly) NSString *identifier NS_SWIFT_NAME(id);
- /// Returns an array of identities currently linked to a user.
- @property (nonatomic, readonly) NSArray<RLMUserIdentity *> *identities;
- /**
- The user's refresh token used to access the Realm Applcation.
- This is required to make HTTP requests to the Realm App's REST API
- for functionality not exposed natively. It should be treated as sensitive data.
- */
- @property (nullable, nonatomic, readonly) NSString *refreshToken;
- /**
- The user's refresh token used to access the Realm Application.
- This is required to make HTTP requests to MongoDB Realm's REST API
- for functionality not exposed natively. It should be treated as sensitive data.
- */
- @property (nullable, nonatomic, readonly) NSString *accessToken;
- /**
- The current state of the user.
- */
- @property (nonatomic, readonly) RLMUserState state;
- /**
- Indicates if the user is logged in or not. Returns true if the access token and refresh token are not empty.
- */
- @property (nonatomic, readonly) BOOL isLoggedIn;
- #pragma mark - Lifecycle
- /**
- Create a query-based configuration instance for the given url.
- @param partitionValue The `RLMBSON` value the Realm is partitioned on.
- @return A default configuration object with the sync configuration set to use the given partition value.
- */
- - (RLMRealmConfiguration *)configurationWithPartitionValue:(nullable id<RLMBSON>)partitionValue NS_REFINED_FOR_SWIFT;
- #pragma mark - Sessions
- /**
- Retrieve a valid session object belonging to this user for a given URL, or `nil`
- if no such object exists.
- */
- - (nullable RLMSyncSession *)sessionForPartitionValue:(id<RLMBSON>)partitionValue;
- /// Retrieve all the valid sessions belonging to this user.
- @property (nonatomic, readonly) NSArray<RLMSyncSession *> *allSessions;
- #pragma mark - Custom Data
- /**
- The custom data of the user.
- This is configured in your MongoDB Realm App.
- */
- @property (nonatomic, readonly) NSDictionary *customData NS_REFINED_FOR_SWIFT;
- /**
- Refresh a user's custom data. This will, in effect, refresh the user's auth session.
- */
- - (void)refreshCustomDataWithCompletion:(RLMUserCustomDataBlock)completion;
- /**
- Links the currently authenticated user with a new identity, where the identity is defined by the credential
- specified as a parameter. This will only be successful if this `RLMUser` is the currently authenticated
- with the client from which it was created. On success a new user will be returned with the new linked credentials.
- @param credentials The `RLMCredentials` used to link the user to a new identity.
- @param completion The completion handler to call when the linking is complete.
- If the operation is successful, the result will contain a new
- `RLMUser` object representing the currently logged in user.
- */
- - (void)linkUserWithCredentials:(RLMCredentials *)credentials
- completion:(RLMOptionalUserBlock)completion NS_REFINED_FOR_SWIFT;
- /**
- Removes the user
- This logs out and destroys the session related to this user. The completion block will return an error
- if the user is not found or is already removed.
- @param completion A callback invoked on completion
- */
- - (void)removeWithCompletion:(RLMUserOptionalErrorBlock)completion;
- /**
- Logs out the current user
- 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
- If the logout request fails, this method will still clear local authentication state.
- @param completion A callback invoked on completion
- */
- - (void)logOutWithCompletion:(RLMUserOptionalErrorBlock)completion;
- /**
- A client for the user API key authentication provider which
- can be used to create and modify user API keys.
- This client should only be used by an authenticated user.
- */
- @property (nonatomic, readonly) RLMAPIKeyAuth *apiKeysAuth;
- /// A client for interacting with a remote MongoDB instance
- /// @param serviceName The name of the MongoDB service
- - (RLMMongoClient *)mongoClientWithServiceName:(NSString *)serviceName NS_REFINED_FOR_SWIFT;
- /**
- Calls the MongoDB Realm function with the provided name and arguments.
- @param name The name of the MongoDB Realm function to be called.
- @param arguments The `BSONArray` of arguments to be provided to the function.
- @param completion The completion handler to call when the function call is complete.
- This handler is executed on a non-main global `DispatchQueue`.
- */
- - (void)callFunctionNamed:(NSString *)name
- arguments:(NSArray<id<RLMBSON>> *)arguments
- completionBlock:(RLMCallFunctionCompletionBlock)completion NS_REFINED_FOR_SWIFT;
- /// :nodoc:
- - (instancetype)init __attribute__((unavailable("RLMUser cannot be created directly")));
- /// :nodoc:
- + (instancetype)new __attribute__((unavailable("RLMUser cannot be created directly")));
- @end
- #pragma mark - User info classes
- /**
- An identity of a user. A user can have multiple identities, usually associated with multiple providers.
- Note this is different from a user's unique identifier string.
- @seeAlso `RLMUser.identifier`
- */
- @interface RLMUserIdentity : NSObject
- /**
- The associated provider type
- */
- @property (nonatomic, readonly) NSString *providerType;
- /**
- The string which identifies the RLMUserIdentity
- */
- @property (nonatomic, readonly) NSString *identifier;
- /**
- Initialize an RLMUserIdentity for the given identifier and provider type.
- @param providerType the associated provider type
- @param identifier the identifier of the identity
- */
- - (instancetype)initUserIdentityWithProviderType:(NSString *)providerType
- identifier:(NSString *)identifier;
- @end
- NS_ASSUME_NONNULL_END
|