| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- // Copyright 2022 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 Foundation
- #if COCOAPODS
- import GTMSessionFetcher
- #else
- import GTMSessionFetcherCore
- #endif
- /**
- * Task which provides the ability to delete an object in Firebase Storage.
- */
- internal class StorageGetMetadataTask: StorageTask, StorageTaskManagement {
- private var fetcher: GTMSessionFetcher?
- private var fetcherCompletion: ((Data?, NSError?) -> Void)?
- private var taskCompletion: ((_ metadata: StorageMetadata?, _: Error?) -> Void)?
- internal init(reference: StorageReference,
- fetcherService: GTMSessionFetcherService,
- queue: DispatchQueue,
- completion: ((_: StorageMetadata?, _: Error?) -> Void)?) {
- super.init(reference: reference, service: fetcherService, queue: queue)
- taskCompletion = completion
- }
- deinit {
- self.fetcher?.stopFetching()
- }
- /**
- * Prepares a task and begins execution.
- */
- internal func enqueue() {
- weak var weakSelf = self
- DispatchQueue.global(qos: .background).async {
- guard let strongSelf = weakSelf else { return }
- strongSelf.state = .queueing
- var request = strongSelf.baseRequest
- request.httpMethod = "GET"
- request.timeoutInterval = strongSelf.reference.storage.maxOperationRetryTime
- let callback = strongSelf.taskCompletion
- strongSelf.taskCompletion = nil
- let fetcher = strongSelf.fetcherService.fetcher(with: request)
- fetcher.comment = "GetMetadataTask"
- strongSelf.fetcher = fetcher
- strongSelf.fetcherCompletion = { (data: Data?, error: NSError?) in
- var metadata: StorageMetadata?
- if let error = error {
- if self.error == nil {
- self.error = StorageErrorCode.error(withServerError: error, ref: self.reference)
- }
- } else {
- if let data = data,
- let responseDictionary = try? JSONSerialization
- .jsonObject(with: data) as? [String: AnyHashable] {
- metadata = StorageMetadata(dictionary: responseDictionary)
- metadata?.fileType = .file
- } else {
- self.error = StorageErrorCode.error(withInvalidRequest: data)
- }
- }
- callback?(metadata, self.error)
- self.fetcherCompletion = nil
- }
- strongSelf.fetcher?.beginFetch { data, error in
- let strongSelf = weakSelf
- if let fetcherCompletion = strongSelf?.fetcherCompletion {
- fetcherCompletion(data, error as? NSError)
- }
- }
- }
- }
- }
|