-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Auth] Convert *Response classes to structs (#14012)
- Loading branch information
Showing
41 changed files
with
363 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
FirebaseAuth/Sources/Swift/Backend/AuthBackendRPCIssuer.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// 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 FirebaseCore | ||
import FirebaseCoreExtension | ||
import Foundation | ||
#if COCOAPODS | ||
import GTMSessionFetcher | ||
#else | ||
import GTMSessionFetcherCore | ||
#endif | ||
|
||
@available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *) | ||
protocol AuthBackendRPCIssuerProtocol { | ||
/// Asynchronously send a HTTP request. | ||
/// - Parameter request: The request to be made. | ||
/// - Parameter body: Request body. | ||
/// - Parameter contentType: Content type of the body. | ||
/// - Parameter completionHandler: Handles HTTP response. Invoked asynchronously | ||
/// on the auth global work queue in the future. | ||
func asyncCallToURL<T: AuthRPCRequest>(with request: T, | ||
body: Data?, | ||
contentType: String) async -> (Data?, Error?) | ||
} | ||
|
||
@available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *) | ||
class AuthBackendRPCIssuer: AuthBackendRPCIssuerProtocol { | ||
let fetcherService: GTMSessionFetcherService | ||
|
||
init() { | ||
fetcherService = GTMSessionFetcherService() | ||
fetcherService.userAgent = AuthBackend.authUserAgent() | ||
fetcherService.callbackQueue = kAuthGlobalWorkQueue | ||
|
||
// Avoid reusing the session to prevent | ||
// https://github.com/firebase/firebase-ios-sdk/issues/1261 | ||
fetcherService.reuseSession = false | ||
} | ||
|
||
func asyncCallToURL<T: AuthRPCRequest>(with request: T, | ||
body: Data?, | ||
contentType: String) async -> (Data?, Error?) { | ||
let requestConfiguration = request.requestConfiguration() | ||
let request = await AuthBackend.request(withURL: request.requestURL(), | ||
contentType: contentType, | ||
requestConfiguration: requestConfiguration) | ||
let fetcher = fetcherService.fetcher(with: request) | ||
if let _ = requestConfiguration.emulatorHostAndPort { | ||
fetcher.allowLocalhostRequest = true | ||
fetcher.allowedInsecureSchemes = ["http"] | ||
} | ||
fetcher.bodyData = body | ||
|
||
return await withUnsafeContinuation { continuation in | ||
fetcher.beginFetch { data, error in | ||
continuation.resume(returning: (data, error)) | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.