| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * Copyright 2018 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 <Foundation/Foundation.h>
- @class FIRAuthRequestConfiguration;
- NS_ASSUME_NONNULL_BEGIN
- /** @typedef FIRFetchAuthDomainCallback
- @brief The callback invoked at the end of the flow to fetch the Auth domain.
- @param authDomain The Auth domain.
- @param error The error that occured while fetching the auth domain, if any.
- */
- typedef void (^FIRFetchAuthDomainCallback)(NSString *_Nullable authDomain,
- NSError *_Nullable error);
- /** @class FIRAuthURLUtils
- @brief A utility class used to facilitate the creation of auth related URLs.
- */
- @interface FIRAuthWebUtils : NSObject
- /** @fn randomStringWithLength:
- @brief Generates a random string of a specified length.
- */
- + (NSString *)randomStringWithLength:(NSUInteger)length;
- /** @fn isCallbackSchemeRegisteredForCustomURLScheme:
- @brief Checks whether or not the provided custom URL scheme has been registered by the app.
- @param URLScheme The custom URL scheme to be checked against all custom URL schemes registered by the app.
- @return whether or not the provided custom URL scheme has been registered by the app.
- */
- + (BOOL)isCallbackSchemeRegisteredForCustomURLScheme:(NSString *)URLScheme;
- /** @fn fetchAuthDomainWithCompletion:completion:
- @brief Fetches the auth domain associated with the Firebase Project.
- @param completion The callback invoked after the auth domain has been constructed or an error
- has been encountered.
- */
- + (void)fetchAuthDomainWithRequestConfiguration:(FIRAuthRequestConfiguration *)requestConfiguration
- completion:(FIRFetchAuthDomainCallback)completion;
- /** @fn queryItemValue:from:
- @brief Utility function to get a value from a NSURLQueryItem array.
- @param name The key.
- @param queryList The NSURLQueryItem array.
- @return The value for the key.
- */
- + (NSString *)queryItemValue:(NSString *)name from:(NSArray<NSURLQueryItem *> *)queryList;
- @end
- NS_ASSUME_NONNULL_END
|