You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.8 KiB

6 years ago
  1. /*
  2. * Copyright 2017 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import "FIRIdentityToolkitRequest.h"
  17. NS_ASSUME_NONNULL_BEGIN
  18. /** @var kAPIURLFormat
  19. @brief URL format for server API calls.
  20. */
  21. static NSString *const kAPIURLFormat = @"https://%@/identitytoolkit/v3/relyingparty/%@?key=%@";
  22. /** @var gAPIHost
  23. @brief Host for server API calls.
  24. */
  25. static NSString *gAPIHost = @"www.googleapis.com";
  26. @implementation FIRIdentityToolkitRequest {
  27. FIRAuthRequestConfiguration *_requestConfiguration;
  28. }
  29. - (nullable instancetype)initWithEndpoint:(NSString *)endpoint
  30. requestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration {
  31. self = [super init];
  32. if (self) {
  33. _endpoint = [endpoint copy];
  34. _APIKey = [requestConfiguration.APIKey copy];
  35. _requestConfiguration = requestConfiguration;
  36. }
  37. return self;
  38. }
  39. - (BOOL)containsPostBody {
  40. return YES;
  41. }
  42. - (NSURL *)requestURL {
  43. NSString *URLString = [NSString stringWithFormat:kAPIURLFormat, gAPIHost, _endpoint, _APIKey];
  44. NSURL *URL = [NSURL URLWithString:URLString];
  45. return URL;
  46. }
  47. - (FIRAuthRequestConfiguration *)requestConfiguration {
  48. return _requestConfiguration;
  49. }
  50. #pragma mark - Internal API for development
  51. + (NSString *)host {
  52. return gAPIHost;
  53. }
  54. + (void)setHost:(NSString *)host {
  55. gAPIHost = host;
  56. }
  57. NS_ASSUME_NONNULL_END
  58. @end