aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth/Source/RPCs/FIRSetAccountInfoRequest.m
blob: f455d474ecb3485924d846cb05ca1c6b406f2fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
 * Copyright 2017 Google
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#import "FIRSetAccountInfoRequest.h"

#import "FIRAuthErrorUtils.h"
#import "FIRAuth_Internal.h"
#import "FIRGetAccountInfoResponse.h"

NSString *const FIRSetAccountInfoUserAttributeEmail = @"EMAIL";

NSString *const FIRSetAccountInfoUserAttributeDisplayName = @"DISPLAY_NAME";

NSString *const FIRSetAccountInfoUserAttributeProvider = @"PROVIDER";

NSString *const FIRSetAccountInfoUserAttributePhotoURL = @"PHOTO_URL";

NSString *const FIRSetAccountInfoUserAttributePassword = @"PASSWORD";

/** @var kCreateAuthURIEndpoint
    @brief The "setAccountInfo" endpoint.
 */
static NSString *const kSetAccountInfoEndpoint = @"setAccountInfo";

/** @var kIDTokenKey
    @brief The key for the "idToken" value in the request. This is actually the STS Access Token,
        despite it's confusing (backwards compatiable) parameter name.
 */
static NSString *const kIDTokenKey = @"idToken";

/** @var kDisplayNameKey
    @brief The key for the "displayName" value in the request.
 */
static NSString *const kDisplayNameKey = @"displayName";

/** @var kLocalIDKey
    @brief The key for the "localID" value in the request.
 */
static NSString *const kLocalIDKey = @"localId";

/** @var kEmailKey
    @brief The key for the "email" value in the request.
 */
static NSString *const kEmailKey = @"email";

/** @var kPasswordKey
    @brief The key for the "password" value in the request.
 */
static NSString *const kPasswordKey = @"password";

/** @var kPhotoURLKey
    @brief The key for the "photoURL" value in the request.
 */
static NSString *const kPhotoURLKey = @"photoUrl";

/** @var kProvidersKey
    @brief The key for the "providers" value in the request.
 */
static NSString *const kProvidersKey = @"provider";

/** @var kOOBCodeKey
    @brief The key for the "OOBCode" value in the request.
 */
static NSString *const kOOBCodeKey = @"oobCode";

/** @var kEmailVerifiedKey
    @brief The key for the "emailVerified" value in the request.
 */
static NSString *const kEmailVerifiedKey = @"emailVerified";

/** @var kUpgradeToFederatedLoginKey
    @brief The key for the "upgradeToFederatedLogin" value in the request.
 */
static NSString *const kUpgradeToFederatedLoginKey = @"upgradeToFederatedLogin";

/** @var kCaptchaChallengeKey
    @brief The key for the "captchaChallenge" value in the request.
 */
static NSString *const kCaptchaChallengeKey = @"captchaChallenge";

/** @var kCaptchaResponseKey
    @brief The key for the "captchaResponse" value in the request.
 */
static NSString *const kCaptchaResponseKey = @"captchaResponse";

/** @var kDeleteAttributesKey
    @brief The key for the "deleteAttribute" value in the request.
 */
static NSString *const kDeleteAttributesKey = @"deleteAttribute";

/** @var kDeleteProvidersKey
    @brief The key for the "deleteProvider" value in the request.
 */
static NSString *const kDeleteProvidersKey = @"deleteProvider";

/** @var kReturnSecureTokenKey
    @brief The key for the "returnSecureToken" value in the request.
 */
static NSString *const kReturnSecureTokenKey = @"returnSecureToken";

@implementation FIRSetAccountInfoRequest

- (nullable instancetype)initWithRequestConfiguration:
    (FIRAuthRequestConfiguration *)requestConfiguration {
  self = [super initWithEndpoint:kSetAccountInfoEndpoint requestConfiguration:requestConfiguration];
  if (self) {
    _returnSecureToken = YES;
  }
  return self;
}

- (nullable id)unencodedHTTPRequestBodyWithError:(NSError *_Nullable *_Nullable)error {
  NSMutableDictionary *postBody = [NSMutableDictionary dictionary];
  if (_accessToken) {
    postBody[kIDTokenKey] = _accessToken;
  }
  if (_displayName) {
    postBody[kDisplayNameKey] = _displayName;
  }
  if (_localID) {
    postBody[kLocalIDKey] = _localID;
  }
  if (_email) {
    postBody[kEmailKey] = _email;
  }
  if (_password) {
    postBody[kPasswordKey] = _password;
  }
  if (_photoURL) {
    postBody[kPhotoURLKey] = _photoURL.absoluteString;
  }
  if (_providers) {
    postBody[kProvidersKey] = _providers;
  }
  if (_OOBCode) {
    postBody[kOOBCodeKey] = _OOBCode;
  }
  if (_emailVerified) {
    postBody[kEmailVerifiedKey] = @YES;
  }
  if (_upgradeToFederatedLogin) {
    postBody[kUpgradeToFederatedLoginKey] = @YES;
  }
  if (_captchaChallenge) {
    postBody[kCaptchaChallengeKey] = _captchaChallenge;
  }
  if (_captchaResponse) {
    postBody[kCaptchaResponseKey] = _captchaResponse;
  }
  if (_deleteAttributes) {
    postBody[kDeleteAttributesKey] = _deleteAttributes;
  }
  if (_deleteProviders) {
    postBody[kDeleteProvidersKey] = _deleteProviders;
  }
  if (_returnSecureToken) {
    postBody[kReturnSecureTokenKey] = @YES;
  }
  return postBody;
}

@end