RLMEmailPasswordAuth.mm 3.8 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 "RLMEmailPasswordAuth.h"
  19. #import "RLMApp_Private.hpp"
  20. #import "RLMBSON_Private.hpp"
  21. #import "RLMProviderClient_Private.hpp"
  22. #import <realm/object-store/sync/app.hpp>
  23. @implementation RLMEmailPasswordAuth
  24. - (realm::app::App::UsernamePasswordProviderClient)client {
  25. return self.app._realmApp->provider_client<realm::app::App::UsernamePasswordProviderClient>();
  26. }
  27. - (void)registerUserWithEmail:(NSString *)email
  28. password:(NSString *)password
  29. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completion {
  30. self.client.register_email(email.UTF8String, password.UTF8String, ^(realm::util::Optional<realm::app::AppError> error) {
  31. [self handleResponse:error completion:completion];
  32. });
  33. }
  34. - (void)confirmUser:(NSString *)token
  35. tokenId:(NSString *)tokenId
  36. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completion {
  37. self.client.confirm_user(token.UTF8String, tokenId.UTF8String, ^(realm::util::Optional<realm::app::AppError> error) {
  38. [self handleResponse:error completion:completion];
  39. });
  40. }
  41. - (void)retryCustomConfirmation:(NSString *)email
  42. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completion {
  43. self.client.retry_custom_confirmation(email.UTF8String, ^(realm::util::Optional<realm::app::AppError> error) {
  44. [self handleResponse:error completion:completion];
  45. });
  46. }
  47. - (void)resendConfirmationEmail:(NSString *)email
  48. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completion {
  49. self.client.resend_confirmation_email(email.UTF8String, ^(realm::util::Optional<realm::app::AppError> error) {
  50. [self handleResponse:error completion:completion];
  51. });
  52. }
  53. - (void)sendResetPasswordEmail:(NSString *)email
  54. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completion {
  55. self.client.send_reset_password_email(email.UTF8String, ^(realm::util::Optional<realm::app::AppError> error) {
  56. [self handleResponse:error completion:completion];
  57. });
  58. }
  59. - (void)resetPasswordTo:(NSString *)password
  60. token:(NSString *)token
  61. tokenId:(NSString *)tokenId
  62. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completion {
  63. self.client.reset_password(password.UTF8String, token.UTF8String, tokenId.UTF8String, ^(realm::util::Optional<realm::app::AppError> error) {
  64. [self handleResponse:error completion:completion];
  65. });
  66. }
  67. - (void)callResetPasswordFunction:(NSString *)email
  68. password:(NSString *)password
  69. args:(NSArray<id<RLMBSON>> *)args
  70. completion:(RLMEmailPasswordAuthOptionalErrorBlock)completion {
  71. self.client.call_reset_password_function(email.UTF8String,
  72. password.UTF8String,
  73. static_cast<realm::bson::BsonArray>(RLMConvertRLMBSONToBson(args)),
  74. ^(realm::util::Optional<realm::app::AppError> error) {
  75. [self handleResponse:error completion:completion];
  76. });
  77. }
  78. @end