2017-03-09 15:26:28 +00:00
|
|
|
|
#import "RNFirebaseStorage.h"
|
|
|
|
|
|
2017-05-25 14:14:01 +00:00
|
|
|
|
#if __has_include(<FirebaseStorage/FIRStorage.h>)
|
2017-07-12 14:49:33 +00:00
|
|
|
|
|
2017-05-25 14:14:01 +00:00
|
|
|
|
#import "RNFirebaseEvents.h"
|
2017-03-09 15:26:28 +00:00
|
|
|
|
#import <Photos/Photos.h>
|
2017-08-17 16:25:51 +00:00
|
|
|
|
#import <Firebase.h>
|
2017-03-09 15:26:28 +00:00
|
|
|
|
|
|
|
|
|
@implementation RNFirebaseStorage
|
|
|
|
|
|
|
|
|
|
RCT_EXPORT_MODULE(RNFirebaseStorage);
|
|
|
|
|
|
|
|
|
|
// Run on a different thread
|
2017-03-22 18:49:36 +00:00
|
|
|
|
- (dispatch_queue_t)methodQueue {
|
|
|
|
|
return dispatch_queue_create("com.invertase.firebase.storage", DISPATCH_QUEUE_SERIAL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Reject a promise with a storage exception
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@param reject RCTPromiseRejectBlock
|
|
|
|
|
@param error NSError
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
- (void)promiseRejectStorageException:(RCTPromiseRejectBlock)reject error:(NSError *)error {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
NSString *code = @"storage/unknown";
|
|
|
|
|
NSString *message = [error localizedDescription];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-22 23:20:02 +00:00
|
|
|
|
NSDictionary *userInfo = [error userInfo];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
NSError *underlyingError = userInfo[NSUnderlyingErrorKey];
|
2017-03-22 23:20:02 +00:00
|
|
|
|
NSString *underlyingErrorDescription = [underlyingError localizedDescription];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
switch (error.code) {
|
|
|
|
|
case FIRStorageErrorCodeUnknown:
|
2017-03-22 23:20:02 +00:00
|
|
|
|
if ([underlyingErrorDescription isEqualToString:@"The operation couldn’t be completed. Permission denied"]) {
|
|
|
|
|
code = @"storage/invalid-device-file-path";
|
|
|
|
|
message = @"The specified device file path is invalid or is restricted.";
|
|
|
|
|
} else {
|
|
|
|
|
code = @"storage/unknown";
|
|
|
|
|
message = @"An unknown error has occurred.";
|
|
|
|
|
}
|
2017-03-22 18:49:36 +00:00
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeObjectNotFound:
|
|
|
|
|
code = @"storage/object-not-found";
|
|
|
|
|
message = @"No object exists at the desired reference.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeBucketNotFound:
|
|
|
|
|
code = @"storage/bucket-not-found";
|
|
|
|
|
message = @"No bucket is configured for Firebase Storage.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeProjectNotFound:
|
|
|
|
|
code = @"storage/project-not-found";
|
|
|
|
|
message = @"No project is configured for Firebase Storage.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeQuotaExceeded:
|
|
|
|
|
code = @"storage/quota-exceeded";
|
|
|
|
|
message = @"Quota on your Firebase Storage bucket has been exceeded.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeUnauthenticated:
|
|
|
|
|
code = @"storage/unauthenticated";
|
|
|
|
|
message = @"User is unauthenticated. Authenticate and try again.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeUnauthorized:
|
|
|
|
|
code = @"storage/unauthorized";
|
|
|
|
|
message = @"User is not authorized to perform the desired action.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeRetryLimitExceeded:
|
|
|
|
|
code = @"storage/retry-limit-exceeded";
|
|
|
|
|
message = @"The maximum time limit on an operation (upload, download, delete, etc.) has been exceeded.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeNonMatchingChecksum:
|
|
|
|
|
code = @"storage/non-matching-checksum";
|
|
|
|
|
message = @"File on the client does not match the checksum of the file received by the server.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeDownloadSizeExceeded:
|
|
|
|
|
code = @"storage/download-size-exceeded";
|
|
|
|
|
message = @"Size of the downloaded file exceeds the amount of memory allocated for the download.";
|
|
|
|
|
break;
|
|
|
|
|
case FIRStorageErrorCodeCancelled:
|
|
|
|
|
code = @"storage/cancelled";
|
|
|
|
|
message = @"User cancelled the operation.";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
|
|
|
|
if (userInfo != nil && userInfo[@"data"]) {
|
2017-03-23 00:37:38 +00:00
|
|
|
|
// errors with 'data' are unserializable - it breaks react so we send nil instead
|
|
|
|
|
reject(code, message, nil);
|
|
|
|
|
} else {
|
|
|
|
|
reject(code, message, error);
|
|
|
|
|
}
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
|
|
|
|
delete
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#delete
|
|
|
|
|
@param NSString path
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(delete:
|
|
|
|
|
(NSString *) path
|
|
|
|
|
resolver:
|
|
|
|
|
(RCTPromiseResolveBlock) resolve
|
|
|
|
|
rejecter:
|
|
|
|
|
(RCTPromiseRejectBlock) reject) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageReference *fileRef = [self getReference:path];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[fileRef deleteWithCompletion:^(NSError *_Nullable error) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
if (error != nil) {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self promiseRejectStorageException:reject error:error];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
resolve([NSNull null]);
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
|
|
|
|
getDownloadURL
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#getDownloadURL
|
|
|
|
|
@param NSString path
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(getDownloadURL:
|
|
|
|
|
(NSString *) path
|
|
|
|
|
resolver:
|
|
|
|
|
(RCTPromiseResolveBlock) resolve
|
|
|
|
|
rejecter:
|
|
|
|
|
(RCTPromiseRejectBlock) reject) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageReference *fileRef = [self getReference:path];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[fileRef downloadURLWithCompletion:^(NSURL *_Nullable URL, NSError *_Nullable error) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
if (error != nil) {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self promiseRejectStorageException:reject error:error];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
resolve([URL absoluteString]);
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
2017-03-29 16:48:21 +00:00
|
|
|
|
getMetadata
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-29 16:48:21 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#getMetadata
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@param NSString path
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(getMetadata:
|
|
|
|
|
(NSString *) path
|
|
|
|
|
resolver:
|
|
|
|
|
(RCTPromiseResolveBlock) resolve
|
|
|
|
|
rejecter:
|
|
|
|
|
(RCTPromiseRejectBlock) reject) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageReference *fileRef = [self getReference:path];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[fileRef metadataWithCompletion:^(FIRStorageMetadata *_Nullable metadata, NSError *_Nullable error) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
if (error != nil) {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self promiseRejectStorageException:reject error:error];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
resolve([metadata dictionaryRepresentation]);
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
|
|
|
|
updateMetadata
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#updateMetadata
|
|
|
|
|
@param NSString path
|
|
|
|
|
@param NSDictionary metadata
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(updateMetadata:
|
|
|
|
|
(NSString *) path
|
|
|
|
|
metadata:
|
|
|
|
|
(NSDictionary *) metadata
|
|
|
|
|
resolver:
|
|
|
|
|
(RCTPromiseResolveBlock) resolve
|
|
|
|
|
rejecter:
|
|
|
|
|
(RCTPromiseRejectBlock) reject) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageReference *fileRef = [self getReference:path];
|
2017-06-29 16:12:57 +00:00
|
|
|
|
FIRStorageMetadata *firmetadata = [self buildMetadataFromMap:metadata];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[fileRef updateMetadata:firmetadata completion:^(FIRStorageMetadata *_Nullable metadata, NSError *_Nullable error) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
if (error != nil) {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self promiseRejectStorageException:reject error:error];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
resolve([metadata dictionaryRepresentation]);
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
|
|
|
|
downloadFile
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#downloadFile
|
|
|
|
|
@param NSString path
|
|
|
|
|
@param NSString localPath
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(downloadFile:
|
|
|
|
|
(NSString *) appName
|
2017-08-14 12:51:17 +00:00
|
|
|
|
path:
|
|
|
|
|
(NSString *) path
|
2017-07-12 14:49:33 +00:00
|
|
|
|
localPath:
|
|
|
|
|
(NSString *) localPath
|
|
|
|
|
resolver:
|
|
|
|
|
(RCTPromiseResolveBlock) resolve
|
|
|
|
|
rejecter:
|
|
|
|
|
(RCTPromiseRejectBlock) reject) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageReference *fileRef = [self getReference:path];
|
|
|
|
|
NSURL *localFile = [NSURL fileURLWithPath:localPath];
|
|
|
|
|
FIRStorageDownloadTask *downloadTask = [fileRef writeToFile:localFile];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// listen for state changes, errors, and completion of the download.
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[downloadTask observeStatus:FIRStorageTaskStatusResume handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// download resumed, also fires when the upload starts
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSDictionary *event = [self getDownloadTaskAsDictionary:snapshot];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_STATE_CHANGED props:event];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[downloadTask observeStatus:FIRStorageTaskStatusPause handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// download paused
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSDictionary *event = [self getDownloadTaskAsDictionary:snapshot];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_STATE_CHANGED props:event];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[downloadTask observeStatus:FIRStorageTaskStatusProgress handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// download reported progress
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSDictionary *event = [self getDownloadTaskAsDictionary:snapshot];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_STATE_CHANGED props:event];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[downloadTask observeStatus:FIRStorageTaskStatusSuccess handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// download completed successfully
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSDictionary *resp = [self getDownloadTaskAsDictionary:snapshot];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_DOWNLOAD_SUCCESS props:resp];
|
2017-03-22 18:49:36 +00:00
|
|
|
|
resolve(resp);
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[downloadTask observeStatus:FIRStorageTaskStatusFailure handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// download task failed
|
2017-03-29 16:48:21 +00:00
|
|
|
|
// TODO sendJSError event
|
2017-03-09 15:26:28 +00:00
|
|
|
|
if (snapshot.error != nil) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
[self promiseRejectStorageException:reject error:snapshot.error];
|
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
}
|
2017-03-09 15:26:28 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
|
|
|
|
setMaxDownloadRetryTime
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Storage#setMaxDownloadRetryTime
|
|
|
|
|
@param NSNumber milliseconds
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(setMaxDownloadRetryTime:
|
|
|
|
|
(NSNumber *) milliseconds) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
[[FIRStorage storage] setMaxDownloadRetryTime:[milliseconds doubleValue]];
|
|
|
|
|
}
|
2017-03-09 15:26:28 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
|
|
|
|
setMaxOperationRetryTime
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Storage#setMaxOperationRetryTime
|
|
|
|
|
@param NSNumber milliseconds
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(setMaxOperationRetryTime:
|
|
|
|
|
(NSNumber *) milliseconds) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
[[FIRStorage storage] setMaxOperationRetryTime:[milliseconds doubleValue]];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
|
|
|
|
setMaxUploadRetryTime
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Storage#setMaxUploadRetryTime
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(setMaxUploadRetryTime:
|
|
|
|
|
(NSNumber *) milliseconds) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
[[FIRStorage storage] setMaxUploadRetryTime:[milliseconds doubleValue]];
|
|
|
|
|
}
|
2017-03-09 15:26:28 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
/**
|
|
|
|
|
putFile
|
2017-05-31 14:22:15 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
@url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#putFile
|
|
|
|
|
@param NSString path
|
|
|
|
|
@param NSString localPath
|
|
|
|
|
@param NSDictionary metadata
|
|
|
|
|
*/
|
2017-07-12 14:49:33 +00:00
|
|
|
|
RCT_EXPORT_METHOD(putFile:
|
|
|
|
|
(NSString *) appName
|
2017-08-14 12:51:17 +00:00
|
|
|
|
path:
|
|
|
|
|
(NSString *) path
|
2017-07-12 14:49:33 +00:00
|
|
|
|
localPath:
|
|
|
|
|
(NSString *) localPath
|
|
|
|
|
metadata:
|
|
|
|
|
(NSDictionary *) metadata
|
|
|
|
|
resolver:
|
|
|
|
|
(RCTPromiseResolveBlock) resolve
|
|
|
|
|
rejecter:
|
|
|
|
|
(RCTPromiseRejectBlock) reject) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
if ([localPath hasPrefix:@"assets-library://"] || [localPath hasPrefix:@"ph://"]) {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
PHFetchResult *assets;
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
if ([localPath hasPrefix:@"assets-library://"]) {
|
|
|
|
|
NSURL *localFile = [[NSURL alloc] initWithString:localPath];
|
|
|
|
|
assets = [PHAsset fetchAssetsWithALAssetURLs:@[localFile] options:nil];
|
|
|
|
|
} else {
|
|
|
|
|
NSString *assetId = [localPath substringFromIndex:@"ph://".length];
|
|
|
|
|
assets = [PHAsset fetchAssetsWithLocalIdentifiers:@[assetId] options:nil];
|
|
|
|
|
}
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
PHAsset *asset = [assets firstObject];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// this is based on http://stackoverflow.com/questions/35241449
|
2017-03-09 16:57:37 +00:00
|
|
|
|
if (asset.mediaType == PHAssetMediaTypeImage) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// images
|
2017-03-09 15:26:28 +00:00
|
|
|
|
PHImageRequestOptions *options = [PHImageRequestOptions new];
|
|
|
|
|
options.networkAccessAllowed = true;
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[[PHImageManager defaultManager] requestImageDataForAsset:asset options:options resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
|
2017-05-25 14:14:01 +00:00
|
|
|
|
if (info[PHImageErrorKey] == nil) {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self uploadData:appName data:imageData metadata:metadata path:path resolver:resolve rejecter:reject];
|
2017-03-22 18:49:36 +00:00
|
|
|
|
} else {
|
|
|
|
|
reject(@"storage/request-image-data-failed", @"Could not obtain image data for the specified file.", nil);
|
|
|
|
|
}
|
|
|
|
|
}];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else if (asset.mediaType == PHAssetMediaTypeVideo) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// video
|
2017-03-09 15:26:28 +00:00
|
|
|
|
PHVideoRequestOptions *options = [PHVideoRequestOptions new];
|
|
|
|
|
options.networkAccessAllowed = true;
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[[PHImageManager defaultManager] requestExportSessionForVideo:asset options:options exportPreset:AVAssetExportPresetHighestQuality resultHandler:^(AVAssetExportSession *_Nullable exportSession, NSDictionary *_Nullable info) {
|
2017-05-25 14:21:10 +00:00
|
|
|
|
if (info[PHImageErrorKey] == nil) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
NSURL *tempUrl = [self temporaryFileUrl];
|
|
|
|
|
exportSession.outputURL = tempUrl;
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
NSArray<PHAssetResource *> *resources = [PHAssetResource assetResourcesForAsset:asset];
|
|
|
|
|
for (PHAssetResource *resource in resources) {
|
|
|
|
|
exportSession.outputFileType = resource.uniformTypeIdentifier;
|
|
|
|
|
if (exportSession.outputFileType != nil) break;
|
|
|
|
|
}
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
[exportSession exportAsynchronouslyWithCompletionHandler:^{
|
|
|
|
|
if (exportSession.status == AVAssetExportSessionStatusCompleted) {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self uploadFile:appName url:tempUrl metadata:metadata path:path resolver:resolve rejecter:reject];
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// we're not cleaning up the temporary file at the moment, just relying on the OS to do that in it's own time - todo?
|
|
|
|
|
} else {
|
|
|
|
|
reject(@"storage/temporary-file-failure", @"Unable to create temporary file for upload.", nil);
|
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
} else {
|
|
|
|
|
reject(@"storage/export-session-failure", @"Unable to create export session for asset.", nil);
|
|
|
|
|
}
|
|
|
|
|
}];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2017-05-22 14:25:35 +00:00
|
|
|
|
NSData *data = [[NSFileManager defaultManager] contentsAtPath:localPath];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self uploadData:appName data:data metadata:metadata path:path resolver:resolve rejecter:reject];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 14:49:33 +00:00
|
|
|
|
- (NSURL *)temporaryFileUrl {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSString *filename = [NSString stringWithFormat:@"%@.tmp", [[NSProcessInfo processInfo] globallyUniqueString]];
|
|
|
|
|
return [[NSURL fileURLWithPath:NSTemporaryDirectory()] URLByAppendingPathComponent:filename];
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-14 12:51:17 +00:00
|
|
|
|
- (void)uploadFile:(NSString *)appName url:(NSURL *)url metadata:(NSDictionary *)metadata path:(NSString *)path resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageReference *fileRef = [self getReference:path];
|
2017-06-29 16:12:57 +00:00
|
|
|
|
FIRStorageMetadata *firmetadata = [self buildMetadataFromMap:metadata];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageUploadTask *uploadTask = [fileRef putFile:url metadata:firmetadata];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self addUploadObservers:appName uploadTask:uploadTask path:path resolver:resolve rejecter:reject];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 14:49:33 +00:00
|
|
|
|
- (void)uploadData:(NSString *)appName data:(NSData *)data metadata:(NSDictionary *)metadata path:(NSString *)path resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageReference *fileRef = [self getReference:path];
|
2017-06-29 16:12:57 +00:00
|
|
|
|
FIRStorageMetadata *firmetadata = [self buildMetadataFromMap:metadata];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
FIRStorageUploadTask *uploadTask = [fileRef putData:data metadata:firmetadata];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self addUploadObservers:appName uploadTask:uploadTask path:path resolver:resolve rejecter:reject];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-14 12:51:17 +00:00
|
|
|
|
- (void)addUploadObservers:(NSString *)appName uploadTask:(FIRStorageUploadTask *)uploadTask path:(NSString *)path resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// listen for state changes, errors, and completion of the upload.
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[uploadTask observeStatus:FIRStorageTaskStatusResume handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// upload resumed, also fires when the upload starts
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSDictionary *event = [self getUploadTaskAsDictionary:snapshot];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_STATE_CHANGED props:event];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[uploadTask observeStatus:FIRStorageTaskStatusPause handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// upload paused
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSDictionary *event = [self getUploadTaskAsDictionary:snapshot];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_STATE_CHANGED props:event];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}];
|
|
|
|
|
[uploadTask observeStatus:FIRStorageTaskStatusProgress handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// upload reported progress
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSDictionary *event = [self getUploadTaskAsDictionary:snapshot];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_STATE_CHANGED props:event];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[uploadTask observeStatus:FIRStorageTaskStatusSuccess handler:^(FIRStorageTaskSnapshot *snapshot) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
// upload completed successfully
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSDictionary *resp = [self getUploadTaskAsDictionary:snapshot];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_STATE_CHANGED props:resp];
|
|
|
|
|
[self sendJSEvent:appName type:STORAGE_EVENT path:path title:STORAGE_UPLOAD_SUCCESS props:resp];
|
2017-03-22 18:49:36 +00:00
|
|
|
|
resolve(resp);
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}];
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
|
[uploadTask observeStatus:FIRStorageTaskStatusFailure handler:^(FIRStorageTaskSnapshot *snapshot) {
|
|
|
|
|
if (snapshot.error != nil) {
|
2017-03-22 18:49:36 +00:00
|
|
|
|
[self promiseRejectStorageException:reject error:snapshot.error];
|
|
|
|
|
}
|
|
|
|
|
}];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
- (FIRStorageReference *)getReference:(NSString *)path {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
if ([path hasPrefix:@"url::"]) {
|
|
|
|
|
NSString *url = [path substringFromIndex:5];
|
|
|
|
|
return [[FIRStorage storage] referenceForURL:url];
|
|
|
|
|
} else {
|
|
|
|
|
return [[FIRStorage storage] referenceWithPath:path];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSDictionary *)getDownloadTaskAsDictionary:(FIRStorageTaskSnapshot *)task {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
return @{@"bytesTransferred": @(task.progress.completedUnitCount), @"ref": task.reference.fullPath, @"state": [self getTaskStatus:task.status], @"totalBytes": @(task.progress.totalUnitCount)};
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
- (NSDictionary *)getUploadTaskAsDictionary:(FIRStorageTaskSnapshot *)task {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSString *downloadUrl = [task.metadata.downloadURL absoluteString];
|
2017-08-14 12:51:17 +00:00
|
|
|
|
FIRStorageMetadata *metadata = [[FIRStorageMetadata alloc] initWithDictionary:[task.metadata dictionaryRepresentation]];
|
2017-07-12 14:49:33 +00:00
|
|
|
|
return @{@"bytesTransferred": @(task.progress.completedUnitCount), @"downloadUrl": downloadUrl != nil ? downloadUrl : [NSNull null], @"metadata": metadata != nil ? metadata : [NSNull null], @"ref": task.reference.fullPath, @"state": [self getTaskStatus:task.status], @"totalBytes": @(task.progress.totalUnitCount)};
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-29 16:12:57 +00:00
|
|
|
|
- (FIRStorageMetadata *)buildMetadataFromMap:(NSDictionary *)metadata {
|
2017-08-14 12:51:17 +00:00
|
|
|
|
NSMutableDictionary *metaCopy = [metadata mutableCopy];
|
|
|
|
|
[metaCopy removeObjectForKey:@"customMetadata"];
|
|
|
|
|
FIRStorageMetadata *storageMetadata = [[FIRStorageMetadata alloc] initWithDictionary:metaCopy];
|
|
|
|
|
storageMetadata.customMetadata = [metadata[@"customMetadata"] mutableCopy];
|
|
|
|
|
return storageMetadata;
|
2017-06-29 16:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
- (NSString *)getTaskStatus:(FIRStorageTaskStatus)status {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
if (status == FIRStorageTaskStatusResume || status == FIRStorageTaskStatusProgress) {
|
2017-03-22 19:47:22 +00:00
|
|
|
|
return @"running";
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else if (status == FIRStorageTaskStatusPause) {
|
2017-03-22 19:47:22 +00:00
|
|
|
|
return @"paused";
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else if (status == FIRStorageTaskStatusSuccess) {
|
2017-03-22 19:47:22 +00:00
|
|
|
|
return @"success";
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else if (status == FIRStorageTaskStatusFailure) {
|
2017-03-22 19:47:22 +00:00
|
|
|
|
return @"error";
|
2017-03-09 15:26:28 +00:00
|
|
|
|
} else {
|
2017-03-22 19:47:22 +00:00
|
|
|
|
return @"unknown";
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
- (NSString *)getPathForDirectory:(int)directory {
|
|
|
|
|
NSArray *paths = NSSearchPathForDirectoriesInDomains(directory, NSUserDomainMask, YES);
|
|
|
|
|
return [paths firstObject];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-22 18:49:36 +00:00
|
|
|
|
- (NSDictionary *)constantsToExport {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
return @{@"MAIN_BUNDLE_PATH": [[NSBundle mainBundle] bundlePath], @"CACHES_DIRECTORY_PATH": [self getPathForDirectory:NSCachesDirectory], @"DOCUMENT_DIRECTORY_PATH": [self getPathForDirectory:NSDocumentDirectory], @"EXTERNAL_DIRECTORY_PATH": [NSNull null], @"EXTERNAL_STORAGE_DIRECTORY_PATH": [NSNull null], @"TEMP_DIRECTORY_PATH": NSTemporaryDirectory(), @"LIBRARY_DIRECTORY_PATH": [self getPathForDirectory:NSLibraryDirectory], @"FILETYPE_REGULAR": NSFileTypeRegular, @"FILETYPE_DIRECTORY": NSFileTypeDirectory};
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSArray<NSString *> *)supportedEvents {
|
|
|
|
|
return @[STORAGE_EVENT, STORAGE_ERROR];
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 14:49:33 +00:00
|
|
|
|
- (void)sendJSError:(NSString *)appName error:(NSError *)error path:(NSString *)path {
|
|
|
|
|
NSDictionary *evt = @{@"path": path, @"message": [error debugDescription]};
|
|
|
|
|
[self sendJSEvent:appName type:STORAGE_ERROR path:path title:STORAGE_ERROR props:evt];
|
2017-03-09 15:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 14:49:33 +00:00
|
|
|
|
- (void)sendJSEvent:(NSString *)appName type:(NSString *)type path:(NSString *)path title:(NSString *)title props:(NSDictionary *)props {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
@try {
|
2017-07-12 14:49:33 +00:00
|
|
|
|
[self sendEventWithName:type body:@{@"eventName": title, @"appName": appName, @"path": path, @"body": props}];
|
2017-03-22 18:49:36 +00:00
|
|
|
|
} @catch (NSException *err) {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
NSLog(@"An error occurred in sendJSEvent: %@", [err debugDescription]);
|
|
|
|
|
NSLog(@"Tried to send: %@ with %@", title, props);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@end
|
2017-05-25 14:14:01 +00:00
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
@implementation RNFirebaseStorage
|
|
|
|
|
@end
|
|
|
|
|
#endif
|