aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Storage/FIRStorageUploadTask.m
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-05-15 12:27:07 -0700
committerGravatar Paul Beusterien <paulbeusterien@google.com>2017-05-15 12:27:07 -0700
commit98ba64449a632518bd2b86fe8d927f4a960d3ddc (patch)
tree131d9c4272fa6179fcda6c5a33fcb3b1bd57ad2e /Firebase/Storage/FIRStorageUploadTask.m
parent32461366c9e204a527ca05e6e9b9404a2454ac51 (diff)
Initial
Diffstat (limited to 'Firebase/Storage/FIRStorageUploadTask.m')
-rw-r--r--Firebase/Storage/FIRStorageUploadTask.m199
1 files changed, 199 insertions, 0 deletions
diff --git a/Firebase/Storage/FIRStorageUploadTask.m b/Firebase/Storage/FIRStorageUploadTask.m
new file mode 100644
index 0000000..74741b0
--- /dev/null
+++ b/Firebase/Storage/FIRStorageUploadTask.m
@@ -0,0 +1,199 @@
+// 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 "FIRStorageUploadTask.h"
+
+#import "FIRStorageConstants_Private.h"
+#import "FIRStorageMetadata_Private.h"
+#import "FIRStorageObservableTask_Private.h"
+#import "FIRStorageTask_Private.h"
+#import "FIRStorageUploadTask_Private.h"
+
+#import "GTMSessionUploadFetcher.h"
+
+@implementation FIRStorageUploadTask
+
+@synthesize progress = _progress;
+
+- (instancetype)initWithReference:(FIRStorageReference *)reference
+ fetcherService:(GTMSessionFetcherService *)service
+ data:(NSData *)uploadData
+ metadata:(FIRStorageMetadata *)metadata {
+ self = [super initWithReference:reference fetcherService:service];
+ if (self) {
+ _uploadMetadata = [metadata copy];
+ _uploadData = [uploadData copy];
+ _progress = [NSProgress progressWithTotalUnitCount:[_uploadData length]];
+
+ if (!_uploadMetadata.contentType) {
+ _uploadMetadata.contentType = @"application/octet-stream";
+ }
+ }
+ return self;
+}
+
+- (instancetype)initWithReference:(FIRStorageReference *)reference
+ fetcherService:(GTMSessionFetcherService *)service
+ file:(NSURL *)fileURL
+ metadata:(FIRStorageMetadata *)metadata {
+ self = [super initWithReference:reference fetcherService:service];
+ if (self) {
+ _uploadMetadata = [metadata copy];
+ _fileURL = [fileURL copy];
+ _progress = [NSProgress progressWithTotalUnitCount:0];
+
+ NSString *mimeType = [FIRStorageUtils MIMETypeForExtension:[_fileURL pathExtension]];
+
+ if (!_uploadMetadata.contentType) {
+ _uploadMetadata.contentType = mimeType ?: @"application/octet-stream";
+ }
+ }
+ return self;
+}
+
+- (void)enqueue {
+ NSAssert([NSThread isMainThread], @"Upload attempting to execute on non main queue! Please only "
+ @"execute this method on the main queue.");
+ self.state = FIRStorageTaskStateQueueing;
+
+ NSMutableURLRequest *request = [self.baseRequest mutableCopy];
+ request.HTTPMethod = @"POST";
+ request.timeoutInterval = self.reference.storage.maxUploadRetryTime;
+ NSData *bodyData = [NSData frs_dataFromJSONDictionary:[_uploadMetadata dictionaryRepresentation]];
+ request.HTTPBody = bodyData;
+ [request setValue:@"application/json; charset=UTF-8" forHTTPHeaderField:@"Content-Type"];
+ NSString *contentLengthString = [NSString stringWithFormat:@"%zu",
+ (unsigned long)[bodyData length]];
+ [request setValue:contentLengthString forHTTPHeaderField:@"Content-Length"];
+
+ NSURLComponents *components =
+ [NSURLComponents componentsWithURL:request.URL resolvingAgainstBaseURL:NO];
+
+ if ([components.host isEqual:kGCSHost]) {
+ [components setPercentEncodedPath:[@"/upload" stringByAppendingString:components.path]];
+ }
+
+ NSDictionary *queryParams = @{ @"uploadType" : @"resumable", @"name" : self.uploadMetadata.path };
+ [components setPercentEncodedQuery:[FIRStorageUtils queryStringForDictionary:queryParams]];
+ request.URL = components.URL;
+
+ GTMSessionUploadFetcher *uploadFetcher =
+ [GTMSessionUploadFetcher uploadFetcherWithRequest:request
+ uploadMIMEType:_uploadMetadata.contentType
+ chunkSize:kGTMSessionUploadFetcherStandardChunkSize
+ fetcherService:self.fetcherService];
+
+ if (_uploadData) {
+ [uploadFetcher setUploadData:_uploadData];
+ uploadFetcher.comment = @"Data UploadTask";
+ } else if (_fileURL) {
+ [uploadFetcher setUploadFileURL:_fileURL];
+ uploadFetcher.comment = @"File UploadTask";
+ }
+
+ uploadFetcher.maxRetryInterval = self.reference.storage.maxUploadRetryTime;
+
+ [uploadFetcher setSendProgressBlock:^(int64_t bytesSent, int64_t totalBytesSent,
+ int64_t totalBytesExpectedToSend) {
+ self.state = FIRStorageTaskStateProgress;
+ self.progress.completedUnitCount = totalBytesSent;
+ self.progress.totalUnitCount = totalBytesExpectedToSend;
+ self.metadata = _uploadMetadata;
+ [self fireHandlersForStatus:FIRStorageTaskStatusProgress snapshot:self.snapshot];
+ self.state = FIRStorageTaskStateRunning;
+ }];
+
+ _uploadFetcher = uploadFetcher;
+
+ // Process fetches
+ self.state = FIRStorageTaskStateRunning;
+ [_uploadFetcher beginFetchWithCompletionHandler:^(NSData *_Nullable data,
+ NSError *_Nullable error) {
+ // Fire last progress updates
+ [self fireHandlersForStatus:FIRStorageTaskStatusProgress snapshot:self.snapshot];
+
+ // Handle potential issues with upload
+ if (error) {
+ self.state = FIRStorageTaskStateFailed;
+ self.error = [FIRStorageErrors errorWithServerError:error reference:self.reference];
+ self.metadata = _uploadMetadata;
+ [self fireHandlersForStatus:FIRStorageTaskStatusFailure snapshot:self.snapshot];
+ [self removeAllObservers];
+ return;
+ }
+
+ // Upload completed successfully, fire completion callbacks
+ self.state = FIRStorageTaskStateSuccess;
+
+ NSDictionary *responseDictionary = [NSDictionary frs_dictionaryFromJSONData:data];
+ if (responseDictionary) {
+ FIRStorageMetadata *metadata =
+ [[FIRStorageMetadata alloc] initWithDictionary:responseDictionary];
+ [metadata setType:FIRStorageMetadataTypeFile];
+ self.metadata = metadata;
+ } else {
+ NSString *returnedData = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
+ NSString *invalidDataString =
+ [NSString stringWithFormat:kFIRStorageInvalidDataFormat, returnedData];
+ NSDictionary *dict;
+ if (invalidDataString.length > 0) {
+ dict = @{NSLocalizedFailureReasonErrorKey : invalidDataString};
+ }
+ self.error =
+ [FIRStorageErrors errorWithCode:FIRStorageErrorCodeUnknown infoDictionary:dict];
+ }
+
+ [self fireHandlersForStatus:FIRStorageTaskStatusSuccess snapshot:self.snapshot];
+ [self removeAllObservers];
+ }];
+}
+
+#pragma mark - Upload Management
+
+- (void)cancel {
+ NSAssert([NSThread isMainThread], @"Cancel attempting to execute on non main queue! Please only "
+ @"execute this method on the main queue.");
+ self.state = FIRStorageTaskStateCancelled;
+ [_uploadFetcher stopFetching];
+ if (self.state != FIRStorageTaskStateSuccess) {
+ self.metadata = _uploadMetadata;
+ }
+ self.error = [FIRStorageErrors errorWithCode:FIRStorageErrorCodeCancelled];
+ [self fireHandlersForStatus:FIRStorageTaskStatusFailure snapshot:self.snapshot];
+}
+
+- (void)pause {
+ NSAssert([NSThread isMainThread], @"Pause attempting to execute on non main queue! Please only "
+ @"execute this method on the main queue.");
+ self.state = FIRStorageTaskStatePaused;
+ [_uploadFetcher pauseFetching];
+ if (self.state != FIRStorageTaskStateSuccess) {
+ self.metadata = _uploadMetadata;
+ }
+ [self fireHandlersForStatus:FIRStorageTaskStatusPause snapshot:self.snapshot];
+}
+
+- (void)resume {
+ NSAssert([NSThread isMainThread], @"Resume attempting to execute on non main queue! Please only "
+ @"execute this method on the main queue.");
+ self.state = FIRStorageTaskStateResuming;
+ [_uploadFetcher resumeFetching];
+ if (self.state != FIRStorageTaskStateSuccess) {
+ self.metadata = _uploadMetadata;
+ }
+ [self fireHandlersForStatus:FIRStorageTaskStatusResume snapshot:self.snapshot];
+ self.state = FIRStorageTaskStateRunning;
+}
+
+@end