RLMAPIKeyAuth.h 3.5 KB

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