RLMEmailPasswordAuth.h 4.5 KB

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