RLMAPIKeyAuth.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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/RLMProviderClient.h>
  19. @class RLMUserAPIKey, RLMObjectId;
  20. NS_ASSUME_NONNULL_BEGIN
  21. /// Provider client for user API keys.
  22. @interface RLMAPIKeyAuth : RLMProviderClient
  23. /// A block type used to report an error
  24. typedef void(^RLMAPIKeyAuthOptionalErrorBlock)(NSError * _Nullable);
  25. /// A block type used to return an `RLMUserAPIKey` on success, or an `NSError` on failure
  26. typedef void(^RLMOptionalUserAPIKeyBlock)(RLMUserAPIKey * _Nullable, NSError * _Nullable);
  27. /// A block type used to return an array of `RLMUserAPIKey` on success, or an `NSError` on failure
  28. typedef void(^RLMUserAPIKeysBlock)(NSArray<RLMUserAPIKey *> * _Nullable, NSError * _Nullable);
  29. /**
  30. Creates a user API key that can be used to authenticate as the current user.
  31. @param name The name of the API key to be created.
  32. @param completion A callback to be invoked once the call is complete.
  33. */
  34. - (void)createAPIKeyWithName:(NSString *)name
  35. completion:(RLMOptionalUserAPIKeyBlock)completion NS_SWIFT_NAME(createAPIKey(named:completion:));
  36. /**
  37. Fetches a user API key associated with the current user.
  38. @param objectId The ObjectId of the API key to fetch.
  39. @param completion A callback to be invoked once the call is complete.
  40. */
  41. - (void)fetchAPIKey:(RLMObjectId *)objectId
  42. completion:(RLMOptionalUserAPIKeyBlock)completion;
  43. /**
  44. Fetches the user API keys associated with the current user.
  45. @param completion A callback to be invoked once the call is complete.
  46. */
  47. - (void)fetchAPIKeysWithCompletion:(RLMUserAPIKeysBlock)completion;
  48. /**
  49. Deletes a user API key associated with the current user.
  50. @param objectId The ObjectId of the API key to delete.
  51. @param completion A callback to be invoked once the call is complete.
  52. */
  53. - (void)deleteAPIKey:(RLMObjectId *)objectId
  54. completion:(RLMAPIKeyAuthOptionalErrorBlock)completion;
  55. /**
  56. Enables a user API key associated with the current user.
  57. @param objectId The ObjectId of the API key to enable.
  58. @param completion A callback to be invoked once the call is complete.
  59. */
  60. - (void)enableAPIKey:(RLMObjectId *)objectId
  61. completion:(RLMAPIKeyAuthOptionalErrorBlock)completion;
  62. /**
  63. Disables a user API key associated with the current user.
  64. @param objectId The ObjectId of the API key to disable.
  65. @param completion A callback to be invoked once the call is complete.
  66. */
  67. - (void)disableAPIKey:(RLMObjectId *)objectId
  68. completion:(RLMAPIKeyAuthOptionalErrorBlock)completion;
  69. @end
  70. NS_ASSUME_NONNULL_END