forked from invertase/react-native-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNFBStorageModule.m
More file actions
724 lines (640 loc) · 30.5 KB
/
Copy pathRNFBStorageModule.m
File metadata and controls
724 lines (640 loc) · 30.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
/**
* Copyright (c) 2016-present Invertase Limited & Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this library 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 <Firebase/Firebase.h>
#import <React/RCTBridgeModule.h>
#import <React/RCTUtils.h>
#import "RNFBRCTEventEmitter.h"
#import "RNFBSharedUtils.h"
#import "RNFBStorageCommon.h"
#import "RNFBStorageModule.h"
static NSString *const RNFB_STORAGE_EVENT = @"storage_event";
static NSString *const RNFB_STORAGE_STATE_CHANGED = @"state_changed";
static NSString *const RNFB_STORAGE_UPLOAD_SUCCESS = @"upload_success";
static NSString *const RNFB_STORAGE_UPLOAD_FAILURE = @"upload_failure";
static NSString *const RNFB_STORAGE_DOWNLOAD_SUCCESS = @"download_success";
static NSString *const RNFB_STORAGE_DOWNLOAD_FAILURE = @"download_failure";
static NSMutableDictionary *PENDING_TASKS;
// The iOS SDK has a short memory on settings, store these globally and set them in each time
static NSString *emulatorHost = nil;
static NSInteger emulatorPort = 0;
static NSMutableDictionary *emulatorConfigs;
static NSTimeInterval maxDownloadRetryTime = 600;
static NSTimeInterval maxUploadRetryTime = 600;
static NSTimeInterval maxOperationRetryTime = 120;
@implementation RNFBStorageModule
#pragma mark -
#pragma mark Module Setup
RCT_EXPORT_MODULE();
+ (BOOL)requiresMainQueueSetup {
return YES;
}
- (id)init {
self = [super init];
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
PENDING_TASKS = [[NSMutableDictionary alloc] init];
emulatorConfigs = [[NSMutableDictionary alloc] init];
});
return self;
}
- (void)dealloc {
for (NSString *key in [PENDING_TASKS allKeys]) {
[PENDING_TASKS removeObjectForKey:key];
}
}
- (void)invalidate {
for (NSString *key in [PENDING_TASKS allKeys]) {
[PENDING_TASKS removeObjectForKey:key];
}
}
#pragma mark -
#pragma mark Firebase Storage Methods
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#delete
*/
RCT_EXPORT_METHOD(delete
: (FIRApp *)firebaseApp
: (NSString *)url
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
[storageReference deleteWithCompletion:^(NSError *_Nullable error) {
if (error != nil) {
[self promiseRejectStorageException:reject error:error];
} else {
resolve([NSNull null]);
}
}];
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#getDownloadURL
*/
RCT_EXPORT_METHOD(getDownloadURL
: (FIRApp *)firebaseApp
: (NSString *)url
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
[storageReference downloadURLWithCompletion:^(NSURL *_Nullable URL, NSError *_Nullable error) {
if (error != nil) {
[self promiseRejectStorageException:reject error:error];
} else {
NSString *url = URL.absoluteString;
if ([url rangeOfString:@":443"].location != NSNotFound) {
NSRange replaceRange = [url rangeOfString:@":443"];
url = [url stringByReplacingCharactersInRange:replaceRange withString:@""];
}
resolve(url);
}
}];
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#getMetadata
*/
RCT_EXPORT_METHOD(getMetadata
: (FIRApp *)firebaseApp
: (NSString *)url
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
[storageReference
metadataWithCompletion:^(FIRStorageMetadata *_Nullable metadata, NSError *_Nullable error) {
if (error != nil) {
[self promiseRejectStorageException:reject error:error];
} else {
resolve([RNFBStorageCommon metadataToDict:metadata]);
}
}];
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#updateMetadata
*/
RCT_EXPORT_METHOD(updateMetadata
: (FIRApp *)firebaseApp
: (NSString *)url
: (NSDictionary *)metadata
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
[storageReference metadataWithCompletion:^(FIRStorageMetadata *_Nullable fetchedMetadata,
NSError *_Nullable error) {
if (error != nil) {
[self promiseRejectStorageException:reject error:error];
} else {
FIRStorageMetadata *storageMetadata =
[RNFBStorageCommon buildMetadataFromMap:metadata
existingMetadata:fetchedMetadata
path:[storageReference fullPath]];
[storageReference updateMetadata:storageMetadata
completion:^(FIRStorageMetadata *_Nullable updatedMetadata,
NSError *_Nullable error) {
if (error != nil) {
[self promiseRejectStorageException:reject error:error];
} else {
resolve([RNFBStorageCommon metadataToDict:updatedMetadata]);
}
}];
}
}];
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#list
*/
RCT_EXPORT_METHOD(list
: (FIRApp *)firebaseApp
: (NSString *)url
: (NSDictionary *)listOptions
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
long maxResults = [listOptions[@"maxResults"] longValue];
id completionBlock = ^(FIRStorageListResult *result, NSError *error) {
if (error != nil) {
[self promiseRejectStorageException:reject error:error];
} else {
NSDictionary *listResultDict = [RNFBStorageCommon listResultToDict:result];
resolve(listResultDict);
}
};
if (listOptions[@"pageToken"]) {
NSString *pageToken = listOptions[@"pageToken"];
[storageReference listWithMaxResults:(int64_t)maxResults
pageToken:pageToken
completion:completionBlock];
} else {
[storageReference listWithMaxResults:(int64_t)maxResults completion:completionBlock];
}
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#listAll
*/
RCT_EXPORT_METHOD(listAll
: (FIRApp *)firebaseApp
: (NSString *)url
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
__block bool alreadyCompleted = false;
id completionBlock = ^(FIRStorageListResult *result, NSError *error) {
// This may be called multiple times if an error occurs
// Make sure we won't try to resolve the promise twice in this case
// TODO - remove pending resolution of https://github.com/firebase/firebase-ios-sdk/issues/7197
if (alreadyCompleted) {
return;
}
alreadyCompleted = true;
if (error != nil) {
[self promiseRejectStorageException:reject error:error];
} else {
resolve([RNFBStorageCommon listResultToDict:result]);
}
};
[storageReference listAllWithCompletion:completionBlock];
}
/**
* @url
* https://firebase.google.com/docs/reference/js/firebase.storage.Storage#setMaxDownloadRetryTime
*/
RCT_EXPORT_METHOD(setMaxDownloadRetryTime
: (FIRApp *)firebaseApp
: (nonnull NSNumber *)milliseconds
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
maxDownloadRetryTime = [milliseconds doubleValue] / 1000;
[[FIRStorage storageForApp:firebaseApp]
setMaxDownloadRetryTime:[milliseconds doubleValue] / 1000];
resolve([NSNull null]);
}
/**
* @url
* https://firebase.google.com/docs/reference/js/firebase.storage.Storage#setMaxOperationRetryTime
*/
RCT_EXPORT_METHOD(setMaxOperationRetryTime
: (FIRApp *)firebaseApp
: (nonnull NSNumber *)milliseconds
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
maxOperationRetryTime = [milliseconds doubleValue] / 1000;
[[FIRStorage storageForApp:firebaseApp]
setMaxOperationRetryTime:[milliseconds doubleValue] / 1000];
resolve([NSNull null]);
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Storage#setMaxUploadRetryTime
*/
RCT_EXPORT_METHOD(setMaxUploadRetryTime
: (FIRApp *)firebaseApp
: (nonnull NSNumber *)milliseconds
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
maxUploadRetryTime = [milliseconds doubleValue] / 1000;
[[FIRStorage storageForApp:firebaseApp] setMaxUploadRetryTime:[milliseconds doubleValue] / 1000];
resolve([NSNull null]);
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#downloadFile
*/
RCT_EXPORT_METHOD(writeToFile
: (FIRApp *)firebaseApp
: (NSString *)url
: (NSString *)localFilePath
: (nonnull NSNumber *)taskId
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
NSURL *localFile = [NSURL fileURLWithPath:localFilePath];
__block FIRStorageDownloadTask *downloadTask;
RCTUnsafeExecuteOnMainQueueSync(^{
downloadTask = [storageReference writeToFile:localFile];
});
PENDING_TASKS[taskId] = downloadTask;
// download started or resumed
[downloadTask
observeStatus:FIRStorageTaskStatusResume
handler:^(FIRStorageTaskSnapshot *snapshot) {
NSDictionary *eventBody = [RNFBStorageCommon getDownloadTaskAsDictionary:snapshot];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:firebaseApp.name
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
}];
// download paused
[downloadTask
observeStatus:FIRStorageTaskStatusPause
handler:^(FIRStorageTaskSnapshot *snapshot) {
NSDictionary *eventBody = [RNFBStorageCommon getDownloadTaskAsDictionary:snapshot];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:firebaseApp.name
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
}];
// download reported progress
[downloadTask
observeStatus:FIRStorageTaskStatusProgress
handler:^(FIRStorageTaskSnapshot *snapshot) {
NSDictionary *eventBody = [RNFBStorageCommon getDownloadTaskAsDictionary:snapshot];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:firebaseApp.name
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
}];
// download completed successfully
[downloadTask
observeStatus:FIRStorageTaskStatusSuccess
handler:^(FIRStorageTaskSnapshot *snapshot) {
[PENDING_TASKS removeObjectForKey:taskId];
// state_changed
NSDictionary *stateChangedEventBody =
[RNFBStorageCommon getDownloadTaskAsDictionary:snapshot];
NSDictionary *stateChangedEvent =
[RNFBStorageCommon getStorageEventDictionary:stateChangedEventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:firebaseApp.name
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT
body:stateChangedEvent];
// download_success
NSDictionary *eventBody = [RNFBStorageCommon getDownloadTaskAsDictionary:snapshot];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_DOWNLOAD_SUCCESS
appName:firebaseApp.name
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
resolve(eventBody);
}];
// download task failed
[downloadTask
observeStatus:FIRStorageTaskStatusFailure
handler:^(FIRStorageTaskSnapshot *snapshot) {
[PENDING_TASKS removeObjectForKey:taskId];
// state_changed
NSDictionary *stateChangedEventBody =
[RNFBStorageCommon getDownloadTaskAsDictionary:snapshot];
NSDictionary *stateChangedEvent =
[RNFBStorageCommon getStorageEventDictionary:stateChangedEventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:firebaseApp.name
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT
body:stateChangedEvent];
// download_failed
NSMutableDictionary *taskSnapshotDict =
[RNFBStorageCommon getDownloadTaskAsDictionary:snapshot];
NSDictionary *eventBody = [RNFBStorageCommon buildErrorSnapshotDict:snapshot.error
taskSnapshotDict:taskSnapshotDict];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_DOWNLOAD_FAILURE
appName:firebaseApp.name
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
[self promiseRejectStorageException:reject error:snapshot.error];
}];
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#putFile
*/
RCT_EXPORT_METHOD(putFile
: (FIRApp *)firebaseApp
: (NSString *)url
: (NSString *)localFilePath
: (NSDictionary *)metadata
: (nonnull NSNumber *)taskId
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
FIRStorageMetadata *storageMetadata =
[RNFBStorageCommon buildMetadataFromMap:metadata
existingMetadata:nil
path:[storageReference fullPath]];
[RNFBStorageCommon
NSURLForLocalFilePath:localFilePath
completion:^(NSArray *errorCodeMessageArray, NSURL *temporaryFileUrl,
NSString *contentType) {
if (errorCodeMessageArray != nil) {
// state_changed
NSMutableDictionary *taskSnapshotDict =
[RNFBStorageCommon getUploadTaskAsDictionary:nil];
NSDictionary *eventBody = [RNFBStorageCommon
buildErrorSnapshotDictFromCodeAndMessage:errorCodeMessageArray
taskSnapshotDict:taskSnapshotDict];
NSDictionary *stateChangedEvent = [RNFBStorageCommon
getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:[[[storageReference storage] app] name]
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT
body:stateChangedEvent];
// upload_failed
NSDictionary *event = [RNFBStorageCommon
getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_UPLOAD_FAILURE
appName:[[[storageReference storage] app] name]
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
[RNFBSharedUtils rejectPromiseWithUserInfo:reject
userInfo:(NSMutableDictionary *)@{
@"code" : errorCodeMessageArray[0],
@"message" : errorCodeMessageArray[1],
}];
return;
}
storageMetadata.contentType = contentType;
if ([storageMetadata valueForKey:@"contentType"] == nil) {
storageMetadata.contentType =
[RNFBStorageCommon mimeTypeForPath:localFilePath];
}
__block FIRStorageUploadTask *uploadTask;
RCTUnsafeExecuteOnMainQueueSync(^{
uploadTask = [storageReference putFile:temporaryFileUrl
metadata:storageMetadata];
});
[self addUploadTaskObservers:uploadTask
appDisplayName:[[[storageReference storage] app] name]
taskId:taskId
resolver:resolve
rejecter:reject];
}];
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Reference#putFile
*/
RCT_EXPORT_METHOD(putString
: (FIRApp *)firebaseApp
: (NSString *)url
: (NSString *)string
: (NSString *)format
: (NSDictionary *)metadata
: (nonnull NSNumber *)taskId
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
FIRStorageReference *storageReference = [self getReferenceFromUrl:url app:firebaseApp];
FIRStorageMetadata *storageMetadata =
[RNFBStorageCommon buildMetadataFromMap:metadata
existingMetadata:nil
path:[storageReference fullPath]];
__block FIRStorageUploadTask *uploadTask;
RCTUnsafeExecuteOnMainQueueSync(^{
uploadTask = [storageReference putData:[RNFBStorageCommon NSDataFromUploadString:string
format:format]
metadata:storageMetadata];
});
[self addUploadTaskObservers:uploadTask
appDisplayName:[[[storageReference storage] app] name]
taskId:taskId
resolver:resolve
rejecter:reject];
}
/**
* @url https://firebase.google.com/docs/reference/js/firebase.storage.Storage#useEmulator
*/
RCT_EXPORT_METHOD(useEmulator
: (FIRApp *)firebaseApp
: (nonnull NSString *)host
: (NSInteger)port
: (NSString *)bucketUrl) {
emulatorHost = host;
emulatorPort = port;
NSString *key = [self createEmulatorKey:bucketUrl appName:firebaseApp.name];
if (!emulatorConfigs[key]) {
[[FIRStorage storageForApp:firebaseApp URL:bucketUrl] useEmulatorWithHost:host port:port];
emulatorConfigs[key] = @YES;
}
}
/**
* @url N/A - RNFB Specific
*/
RCT_EXPORT_METHOD(setTaskStatus
: (FIRApp *)firebaseApp
: (nonnull NSNumber *)taskId
: (nonnull NSNumber *)status
: (RCTPromiseResolveBlock)resolve
: (RCTPromiseRejectBlock)reject) {
id task = PENDING_TASKS[taskId];
if (task == nil) {
resolve(@(NO));
return;
}
switch ([status integerValue]) {
case 0:
[task pause];
break;
case 1:
if ([task isKindOfClass:[FIRStorageDownloadTask class]]) {
[(FIRStorageDownloadTask *)task resume];
} else {
[(FIRStorageUploadTask *)task resume];
}
break;
case 2:
[task cancel];
break;
default:
break;
}
}
#pragma mark -
#pragma mark Firebase Storage Internals
- (NSString *)createEmulatorKey:(NSString *)bucketUrl appName:(NSString *)appName {
return [NSString stringWithFormat:@"%@-%@", appName, bucketUrl];
}
- (void)addUploadTaskObservers:(FIRStorageUploadTask *)uploadTask
appDisplayName:(NSString *)appDisplayName
taskId:(NSNumber *)taskId
resolver:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject {
PENDING_TASKS[taskId] = uploadTask;
// upload started or resumed
[uploadTask
observeStatus:FIRStorageTaskStatusResume
handler:^(FIRStorageTaskSnapshot *snapshot) {
NSDictionary *eventBody = [RNFBStorageCommon getUploadTaskAsDictionary:snapshot];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:appDisplayName
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
}];
// upload paused
[uploadTask
observeStatus:FIRStorageTaskStatusPause
handler:^(FIRStorageTaskSnapshot *snapshot) {
NSDictionary *eventBody = [RNFBStorageCommon getUploadTaskAsDictionary:snapshot];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:appDisplayName
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
}];
// upload reported progress
[uploadTask
observeStatus:FIRStorageTaskStatusProgress
handler:^(FIRStorageTaskSnapshot *snapshot) {
NSDictionary *eventBody = [RNFBStorageCommon getUploadTaskAsDictionary:snapshot];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:appDisplayName
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
}];
// upload completed successfully
[uploadTask observeStatus:FIRStorageTaskStatusSuccess
handler:^(FIRStorageTaskSnapshot *snapshot) {
[PENDING_TASKS removeObjectForKey:taskId];
NSDictionary *eventBody =
[RNFBStorageCommon getUploadTaskAsDictionary:snapshot];
// state_changed
NSDictionary *stateChangeEvent =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:appDisplayName
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT
body:stateChangeEvent];
// upload_success
NSDictionary *uploadSuccessEvent =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_UPLOAD_SUCCESS
appName:appDisplayName
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT
body:uploadSuccessEvent];
resolve(eventBody);
}];
[uploadTask
observeStatus:FIRStorageTaskStatusFailure
handler:^(FIRStorageTaskSnapshot *snapshot) {
[PENDING_TASKS removeObjectForKey:taskId];
// state_changed
NSMutableDictionary *taskSnapshotDict =
[RNFBStorageCommon getUploadTaskAsDictionary:snapshot];
NSDictionary *stateChangedEvtBody =
[RNFBStorageCommon buildErrorSnapshotDict:snapshot.error
taskSnapshotDict:taskSnapshotDict];
NSDictionary *stateChangedEvent =
[RNFBStorageCommon getStorageEventDictionary:stateChangedEvtBody
internalEventName:RNFB_STORAGE_STATE_CHANGED
appName:appDisplayName
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT
body:stateChangedEvent];
// upload_failed
NSDictionary *eventBody = [RNFBStorageCommon buildErrorSnapshotDict:snapshot.error
taskSnapshotDict:taskSnapshotDict];
NSDictionary *event =
[RNFBStorageCommon getStorageEventDictionary:eventBody
internalEventName:RNFB_STORAGE_UPLOAD_FAILURE
appName:appDisplayName
taskId:taskId];
[[RNFBRCTEventEmitter shared] sendEventWithName:RNFB_STORAGE_EVENT body:event];
[self promiseRejectStorageException:reject error:snapshot.error];
}];
}
- (FIRStorageReference *)getReferenceFromUrl:(NSString *)url app:(FIRApp *)firebaseApp {
FIRStorage *storage;
NSString *pathWithBucketName = [url substringWithRange:NSMakeRange(5, [url length] - 5)];
NSString *bucket = url;
NSRange rangeOfSlash = [pathWithBucketName rangeOfString:@"/"];
if (rangeOfSlash.location != NSNotFound) {
bucket = [url substringWithRange:NSMakeRange(0, rangeOfSlash.location + 5)];
}
storage = [FIRStorage storageForApp:firebaseApp URL:bucket];
NSLog(@"Setting emulator - host %@ port %ld", emulatorHost, (long)emulatorPort);
NSString *key = [self createEmulatorKey:bucket appName:firebaseApp.name];
if (![emulatorHost isEqual:[NSNull null]] && emulatorHost != nil && !emulatorConfigs[key]) {
@try {
[storage useEmulatorWithHost:emulatorHost port:emulatorPort];
emulatorConfigs[key] = @YES;
} @catch (NSException *e) {
NSLog(@"WARNING: Unable to set the Firebase Storage emulator settings. These must be set "
@"before any usages of Firebase Storage. If you see this log after a hot "
@"reload/restart you can safely ignore it.");
}
}
return [storage referenceForURL:url];
}
- (void)promiseRejectStorageException:(RCTPromiseRejectBlock)reject error:(NSError *)error {
NSArray *codeAndMessage = [RNFBStorageCommon getErrorCodeMessage:error];
[RNFBSharedUtils rejectPromiseWithUserInfo:reject
userInfo:(NSMutableDictionary *)@{
@"code" : (NSString *)codeAndMessage[0],
@"message" : (NSString *)codeAndMessage[1],
}];
}
- (NSDictionary *)constantsToExport {
NSMutableDictionary *constants = [@{} mutableCopy];
if ([[[FIRApp allApps] allKeys] count] > 0) {
FIRStorage *storageInstance = [FIRStorage storage];
constants[@"maxDownloadRetryTime"] =
@((NSInteger)[storageInstance maxDownloadRetryTime] * 1000);
constants[@"maxOperationRetryTime"] =
@((NSInteger)[storageInstance maxOperationRetryTime] * 1000);
constants[@"maxUploadRetryTime"] = @((NSInteger)[storageInstance maxUploadRetryTime] * 1000);
}
return constants;
}
@end