RLMEmailPasswordAuth.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. @protocol RLMBSON;
  20. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  21. /// A block type used to report an error
  22. RLM_SWIFT_SENDABLE // invoked on a background thread
  23. typedef void(^RLMEmailPasswordAuthOptionalErrorBlock)(NSError * _Nullable);
  24. /**
  25. A client for the email/password authentication provider which
  26. can be used to obtain a credential for logging in,
  27. and to perform requests specifically related to the email/password provider.
  28. */
  29. RLM_SWIFT_SENDABLE RLM_FINAL // is internally thread-safe
  30. @interface RLMEmailPasswordAuth : RLMProviderClient
  31. /**
  32. Registers a new email identity with the email/password provider,
  33. and sends a confirmation email to the provided address.
  34. @param email The email address of the user to register.
  35. @param password The password that the user created for the new email/password identity.
  36. @param completionHandler A callback to be invoked once the call is complete.
  37. */
  38. - (void)registerUserWithEmail:(NSString *)email
  39. password:(NSString *)password
  40. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completionHandler NS_SWIFT_NAME(registerUser(email:password:completion:));
  41. /**
  42. Confirms an email identity with the email/password provider.
  43. @param token The confirmation token that was emailed to the user.
  44. @param tokenId The confirmation token id that was emailed to the user.
  45. @param completionHandler A callback to be invoked once the call is complete.
  46. */
  47. - (void)confirmUser:(NSString *)token
  48. tokenId:(NSString *)tokenId
  49. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completionHandler;
  50. /**
  51. Re-sends a confirmation email to a user that has registered but
  52. not yet confirmed their email address.
  53. @param email The email address of the user to re-send a confirmation for.
  54. @param completionHandler A callback to be invoked once the call is complete.
  55. */
  56. - (void)resendConfirmationEmail:(NSString *)email
  57. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completionHandler;
  58. /**
  59. Retries custom confirmation function for a given email address.
  60. @param email The email address of the user to retry custom confirmation logic.
  61. @param completionHandler A callback to be invoked once the call is complete.
  62. */
  63. - (void)retryCustomConfirmation:(NSString *)email
  64. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completionHandler;
  65. /**
  66. Sends a password reset email to the given email address.
  67. @param email The email address of the user to send a password reset email for.
  68. @param completionHandler A callback to be invoked once the call is complete.
  69. */
  70. - (void)sendResetPasswordEmail:(NSString *)email
  71. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completionHandler;
  72. /**
  73. Resets the password of an email identity using the
  74. password reset token emailed to a user.
  75. @param password The new password.
  76. @param token The password reset token that was emailed to the user.
  77. @param tokenId The password reset token id that was emailed to the user.
  78. @param completionHandler A callback to be invoked once the call is complete.
  79. */
  80. - (void)resetPasswordTo:(NSString *)password
  81. token:(NSString *)token
  82. tokenId:(NSString *)tokenId
  83. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completionHandler;
  84. /**
  85. Resets the password of an email identity using the
  86. password reset function set up in the application.
  87. @param email The email address of the user.
  88. @param password The desired new password.
  89. @param args A list of arguments passed in as a BSON array.
  90. @param completionHandler A callback to be invoked once the call is complete.
  91. */
  92. - (void)callResetPasswordFunction:(NSString *)email
  93. password:(NSString *)password
  94. args:(NSArray<id<RLMBSON>> *)args
  95. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completionHandler NS_REFINED_FOR_SWIFT;
  96. @end
  97. RLM_HEADER_AUDIT_END(nullability, sendability)