-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImagePickerManager.mm
588 lines (484 loc) · 21.5 KB
/
ImagePickerManager.mm
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
#import "ImagePickerManager.h"
#import "ImagePickerUtils.h"
#import <React/RCTConvert.h>
#import <AVFoundation/AVFoundation.h>
#import <Photos/Photos.h>
#import <PhotosUI/PhotosUI.h>
#import <MobileCoreServices/MobileCoreServices.h>
@interface ImagePickerManager ()
@property (nonatomic, strong) RCTResponseSenderBlock callback;
@property (nonatomic, copy) NSDictionary *options;
@end
@interface ImagePickerManager (UIImagePickerControllerDelegate) <UINavigationControllerDelegate, UIImagePickerControllerDelegate>
@end
@interface ImagePickerManager (UIAdaptivePresentationControllerDelegate) <UIAdaptivePresentationControllerDelegate>
@end
#if __has_include(<PhotosUI/PHPicker.h>)
@interface ImagePickerManager (PHPickerViewControllerDelegate) <PHPickerViewControllerDelegate>
@end
#endif
@implementation ImagePickerManager
NSString *errCameraUnavailable = @"camera_unavailable";
NSString *errPermission = @"permission";
NSString *errOthers = @"others";
RNImagePickerTarget target;
BOOL photoSelected = NO;
RCT_EXPORT_MODULE(ImagePicker)
RCT_EXPORT_METHOD(launchCamera:(NSDictionary *)options callback:(RCTResponseSenderBlock)callback)
{
target = camera;
photoSelected = NO;
dispatch_async(dispatch_get_main_queue(), ^{
[self launchImagePicker:options callback:callback];
});
}
RCT_EXPORT_METHOD(launchImageLibrary:(NSDictionary *)options callback:(RCTResponseSenderBlock)callback)
{
target = library;
photoSelected = NO;
dispatch_async(dispatch_get_main_queue(), ^{
[self launchImagePicker:options callback:callback];
});
}
// We won't compile this code when we build for the old architecture.
#ifdef RCT_NEW_ARCH_ENABLED
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:
(const facebook::react::ObjCTurboModule::InitParams &)params
{
return std::make_shared<facebook::react::NativeImagePickerSpecJSI>(params);
}
#endif
- (void)launchImagePicker:(NSDictionary *)options callback:(RCTResponseSenderBlock)callback
{
self.callback = callback;
if (target == camera && [ImagePickerUtils isSimulator]) {
self.callback(@[@{@"errorCode": errCameraUnavailable}]);
return;
}
self.options = options;
#if __has_include(<PhotosUI/PHPicker.h>)
if (@available(iOS 14, *)) {
if (target == library) {
PHPickerConfiguration *configuration = [ImagePickerUtils makeConfigurationFromOptions:options target:target];
PHPickerViewController *picker = [[PHPickerViewController alloc] initWithConfiguration:configuration];
picker.delegate = self;
picker.modalPresentationStyle = [RCTConvert UIModalPresentationStyle:options[@"presentationStyle"]];
picker.presentationController.delegate = self;
if([self.options[@"includeExtra"] boolValue]) {
[self checkPhotosPermissions:^(BOOL granted) {
if (!granted) {
self.callback(@[@{@"errorCode": errPermission}]);
return;
}
[self showPickerViewController:picker];
}];
} else {
[self showPickerViewController:picker];
}
return;
}
}
#endif
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
[ImagePickerUtils setupPickerFromOptions:picker options:self.options target:target];
picker.delegate = self;
picker.presentationController.delegate = self;
if([self.options[@"includeExtra"] boolValue]) {
[self checkPhotosPermissions:^(BOOL granted) {
if (!granted) {
self.callback(@[@{@"errorCode": errPermission}]);
return;
}
[self showPickerViewController:picker];
}];
} else {
[self showPickerViewController:picker];
}
}
- (void) showPickerViewController:(UIViewController *)picker
{
dispatch_async(dispatch_get_main_queue(), ^{
UIViewController *root = RCTPresentedViewController();
[root presentViewController:picker animated:YES completion:nil];
});
}
#pragma mark - Helpers
NSData* extractImageData(UIImage* image){
CFMutableDataRef imageData = CFDataCreateMutable(NULL, 0);
CGImageDestinationRef destination = CGImageDestinationCreateWithData(imageData, kUTTypeJPEG, 1, NULL);
CFStringRef orientationKey[1];
CFTypeRef orientationValue[1];
CGImagePropertyOrientation CGOrientation = CGImagePropertyOrientationForUIImageOrientation(image.imageOrientation);
orientationKey[0] = kCGImagePropertyOrientation;
orientationValue[0] = CFNumberCreate(NULL, kCFNumberIntType, &CGOrientation);
CFDictionaryRef imageProps = CFDictionaryCreate( NULL, (const void **)orientationKey, (const void **)orientationValue, 1,
&kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
CGImageDestinationAddImage(destination, image.CGImage, imageProps);
CGImageDestinationFinalize(destination);
CFRelease(destination);
CFRelease(orientationValue[0]);
CFRelease(imageProps);
return (__bridge NSData *)imageData;
}
-(NSMutableDictionary *)mapImageToAsset:(UIImage *)image data:(NSData *)data phAsset:(PHAsset * _Nullable)phAsset {
NSString *fileType = [ImagePickerUtils getFileType:data];
if (target == camera) {
if ([self.options[@"saveToPhotos"] boolValue]) {
UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
}
data = extractImageData(image);
}
UIImage* newImage = image;
if (![fileType isEqualToString:@"gif"]) {
newImage = [ImagePickerUtils resizeImage:image
maxWidth:[self.options[@"maxWidth"] floatValue]
maxHeight:[self.options[@"maxHeight"] floatValue]];
}
float quality = [self.options[@"quality"] floatValue];
if (![image isEqual:newImage] || (quality >= 0 && quality < 1)) {
if ([fileType isEqualToString:@"jpg"]) {
data = UIImageJPEGRepresentation(newImage, quality);
} else if ([fileType isEqualToString:@"png"]) {
data = UIImagePNGRepresentation(newImage);
}
}
NSMutableDictionary *asset = [[NSMutableDictionary alloc] init];
asset[@"type"] = [@"image/" stringByAppendingString:fileType];
NSString *fileName = [self getImageFileName:fileType];
NSString *path = [[NSTemporaryDirectory() stringByStandardizingPath] stringByAppendingPathComponent:fileName];
[data writeToFile:path atomically:YES];
if ([self.options[@"includeBase64"] boolValue]) {
asset[@"base64"] = [data base64EncodedStringWithOptions:0];
}
NSURL *fileURL = [NSURL fileURLWithPath:path];
asset[@"uri"] = [fileURL absoluteString];
NSNumber *fileSizeValue = nil;
NSError *fileSizeError = nil;
[fileURL getResourceValue:&fileSizeValue forKey:NSURLFileSizeKey error:&fileSizeError];
if (fileSizeValue){
asset[@"fileSize"] = fileSizeValue;
}
asset[@"fileName"] = fileName;
asset[@"width"] = @(newImage.size.width);
asset[@"height"] = @(newImage.size.height);
if(phAsset){
asset[@"timestamp"] = [self getDateTimeInUTC:phAsset.creationDate];
asset[@"id"] = phAsset.localIdentifier;
// Add more extra data here ...
}
return asset;
}
CGImagePropertyOrientation CGImagePropertyOrientationForUIImageOrientation(UIImageOrientation uiOrientation) {
//code from here: https://developer.apple.com/documentation/imageio/cgimagepropertyorientation?language=objc
switch (uiOrientation) {
case UIImageOrientationUp: return kCGImagePropertyOrientationUp;
case UIImageOrientationDown: return kCGImagePropertyOrientationDown;
case UIImageOrientationLeft: return kCGImagePropertyOrientationLeft;
case UIImageOrientationRight: return kCGImagePropertyOrientationRight;
case UIImageOrientationUpMirrored: return kCGImagePropertyOrientationUpMirrored;
case UIImageOrientationDownMirrored: return kCGImagePropertyOrientationDownMirrored;
case UIImageOrientationLeftMirrored: return kCGImagePropertyOrientationLeftMirrored;
case UIImageOrientationRightMirrored: return kCGImagePropertyOrientationRightMirrored;
}
}
-(NSMutableDictionary *)mapVideoToAsset:(NSURL *)url phAsset:(PHAsset * _Nullable)phAsset error:(NSError **)error {
NSString *fileName = [url lastPathComponent];
NSString *path = [[NSTemporaryDirectory() stringByStandardizingPath] stringByAppendingPathComponent:fileName];
NSURL *videoDestinationURL = [NSURL fileURLWithPath:path];
NSString *fileExtension = [fileName pathExtension];
if ((target == camera) && [self.options[@"saveToPhotos"] boolValue]) {
UISaveVideoAtPathToSavedPhotosAlbum(url.path, nil, nil, nil);
}
if (![url.URLByResolvingSymlinksInPath.path isEqualToString:videoDestinationURL.URLByResolvingSymlinksInPath.path]) {
NSFileManager *fileManager = [NSFileManager defaultManager];
// Delete file if it already exists
if ([fileManager fileExistsAtPath:videoDestinationURL.path]) {
[fileManager removeItemAtURL:videoDestinationURL error:nil];
}
if (url) { // Protect against reported crash
// If we have write access to the source file, move it. Otherwise use copy.
if ([fileManager isWritableFileAtPath:[url path]]) {
[fileManager moveItemAtURL:url toURL:videoDestinationURL error:error];
} else {
[fileManager copyItemAtURL:url toURL:videoDestinationURL error:error];
}
if (error && *error) {
return nil;
}
}
}
NSMutableDictionary *response = [[NSMutableDictionary alloc] init];
if([self.options[@"formatAsMp4"] boolValue] && ![fileExtension isEqualToString:@"mp4"]) {
NSURL *parentURL = [videoDestinationURL URLByDeletingLastPathComponent];
NSString *path = [[parentURL.path stringByAppendingString:@"/"] stringByAppendingString:[[NSUUID UUID] UUIDString]];
path = [path stringByAppendingString:@".mp4"];
NSURL *outputURL = [NSURL fileURLWithPath:path];
[[NSFileManager defaultManager] removeItemAtURL:outputURL error:nil];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:videoDestinationURL options:nil];
AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:asset presetName:AVAssetExportPresetPassthrough];
exportSession.outputURL = outputURL;
exportSession.outputFileType = AVFileTypeMPEG4;
exportSession.shouldOptimizeForNetworkUse = YES;
dispatch_semaphore_t sem = dispatch_semaphore_create(0);
[exportSession exportAsynchronouslyWithCompletionHandler:^(void) {
if (exportSession.status == AVAssetExportSessionStatusCompleted) {
CGSize dimentions = [ImagePickerUtils getVideoDimensionsFromUrl:outputURL];
response[@"fileName"] = [outputURL lastPathComponent];
response[@"duration"] = [NSNumber numberWithDouble:CMTimeGetSeconds([AVAsset assetWithURL:outputURL].duration)];
response[@"uri"] = outputURL.absoluteString;
response[@"type"] = [ImagePickerUtils getFileTypeFromUrl:outputURL];
response[@"fileSize"] = [ImagePickerUtils getFileSizeFromUrl:outputURL];
response[@"width"] = @(dimentions.width);
response[@"height"] = @(dimentions.height);
dispatch_semaphore_signal(sem);
} else if (exportSession.status == AVAssetExportSessionStatusFailed || exportSession.status == AVAssetExportSessionStatusCancelled) {
dispatch_semaphore_signal(sem);
}
}];
dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
} else {
CGSize dimentions = [ImagePickerUtils getVideoDimensionsFromUrl:videoDestinationURL];
response[@"fileName"] = fileName;
response[@"duration"] = [NSNumber numberWithDouble:CMTimeGetSeconds([AVAsset assetWithURL:videoDestinationURL].duration)];
response[@"uri"] = videoDestinationURL.absoluteString;
response[@"type"] = [ImagePickerUtils getFileTypeFromUrl:videoDestinationURL];
response[@"fileSize"] = [ImagePickerUtils getFileSizeFromUrl:videoDestinationURL];
response[@"width"] = @(dimentions.width);
response[@"height"] = @(dimentions.height);
if(phAsset){
response[@"timestamp"] = [self getDateTimeInUTC:phAsset.creationDate];
response[@"id"] = phAsset.localIdentifier;
// Add more extra data here ...
}
}
return response;
}
- (NSString *) getDateTimeInUTC:(NSDate *)date {
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSZ"];
return [formatter stringFromDate:date];
}
- (void)checkCameraPermissions:(void(^)(BOOL granted))callback
{
AVAuthorizationStatus status = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo];
if (status == AVAuthorizationStatusAuthorized) {
callback(YES);
return;
}
else if (status == AVAuthorizationStatusNotDetermined){
[AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted) {
callback(granted);
return;
}];
}
else {
callback(NO);
}
}
- (void)checkPhotosPermissions:(void(^)(BOOL granted))callback
{
PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];
if (status == PHAuthorizationStatusAuthorized) {
callback(YES);
return;
} else if (status == PHAuthorizationStatusNotDetermined) {
[PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {
if (status == PHAuthorizationStatusAuthorized) {
callback(YES);
return;
}
else {
callback(NO);
return;
}
}];
}
else {
callback(NO);
}
}
// Both camera and photo write permission is required to take picture/video and store it to public photos
- (void)checkCameraAndPhotoPermission:(void(^)(BOOL granted))callback
{
[self checkCameraPermissions:^(BOOL cameraGranted) {
if (!cameraGranted) {
callback(NO);
return;
}
[self checkPhotosPermissions:^(BOOL photoGranted) {
if (!photoGranted) {
callback(NO);
return;
}
callback(YES);
}];
}];
}
- (void)checkPermission:(void(^)(BOOL granted)) callback
{
void (^permissionBlock)(BOOL) = ^(BOOL permissionGranted) {
if (!permissionGranted) {
callback(NO);
return;
}
callback(YES);
};
if (target == camera && [self.options[@"saveToPhotos"] boolValue]) {
[self checkCameraAndPhotoPermission:permissionBlock];
}
else if (target == camera) {
[self checkCameraPermissions:permissionBlock];
}
else {
if (@available(iOS 11.0, *)) {
callback(YES);
}
else {
[self checkPhotosPermissions:permissionBlock];
}
}
}
- (NSString *)getImageFileName:(NSString *)fileType
{
NSString *fileName = [[NSUUID UUID] UUIDString];
fileName = [fileName stringByAppendingString:@"."];
return [fileName stringByAppendingString:fileType];
}
+ (UIImage *)getUIImageFromInfo:(NSDictionary *)info
{
UIImage *image = info[UIImagePickerControllerEditedImage];
if (!image) {
image = info[UIImagePickerControllerOriginalImage];
}
return image;
}
+ (NSURL *)getNSURLFromInfo:(NSDictionary *)info {
if (@available(iOS 11.0, *)) {
return info[UIImagePickerControllerImageURL];
}
else {
return info[UIImagePickerControllerReferenceURL];
}
}
@end
@implementation ImagePickerManager (UIImagePickerControllerDelegate)
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info
{
dispatch_block_t dismissCompletionBlock = ^{
NSMutableArray<NSDictionary *> *assets = [[NSMutableArray alloc] initWithCapacity:1];
PHAsset *asset = nil;
if (photoSelected == YES) {
return;
}
photoSelected = YES;
// If include extra, we fetch the PHAsset, this required library permissions
if([self.options[@"includeExtra"] boolValue]) {
asset = [ImagePickerUtils fetchPHAssetOnIOS13:info];
}
if ([info[UIImagePickerControllerMediaType] isEqualToString:(NSString *) kUTTypeImage]) {
UIImage *image = [ImagePickerManager getUIImageFromInfo:info];
[assets addObject:[self mapImageToAsset:image data:[NSData dataWithContentsOfURL:[ImagePickerManager getNSURLFromInfo:info]] phAsset:asset]];
} else {
NSError *error;
NSDictionary *videoAsset = [self mapVideoToAsset:info[UIImagePickerControllerMediaURL] phAsset:asset error:&error];
if (videoAsset == nil) {
NSString *errorMessage = error.localizedFailureReason;
if (errorMessage == nil) errorMessage = @"Video asset not found";
self.callback(@[@{@"errorCode": errOthers, @"errorMessage": errorMessage}]);
return;
}
[assets addObject:videoAsset];
}
NSMutableDictionary *response = [[NSMutableDictionary alloc] init];
response[@"assets"] = assets;
self.callback(@[response]);
};
dispatch_async(dispatch_get_main_queue(), ^{
[picker dismissViewControllerAnimated:YES completion:dismissCompletionBlock];
});
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
{
dispatch_async(dispatch_get_main_queue(), ^{
[picker dismissViewControllerAnimated:YES completion:^{
self.callback(@[@{@"didCancel": @YES}]);
}];
});
}
@end
@implementation ImagePickerManager (presentationControllerDidDismiss)
- (void)presentationControllerDidDismiss:(UIPresentationController *)presentationController
{
self.callback(@[@{@"didCancel": @YES}]);
}
@end
#if __has_include(<PhotosUI/PHPicker.h>)
@implementation ImagePickerManager (PHPickerViewControllerDelegate)
- (void)picker:(PHPickerViewController *)picker didFinishPicking:(NSArray<PHPickerResult *> *)results API_AVAILABLE(ios(14))
{
[picker dismissViewControllerAnimated:YES completion:nil];
if (photoSelected == YES) {
return;
}
photoSelected = YES;
if (results.count == 0) {
dispatch_async(dispatch_get_main_queue(), ^{
self.callback(@[@{@"didCancel": @YES}]);
});
return;
}
dispatch_group_t completionGroup = dispatch_group_create();
NSMutableArray<NSDictionary *> *assets = [[NSMutableArray alloc] initWithCapacity:results.count];
for (int i = 0; i < results.count; i++) {
[assets addObject:(NSDictionary *)[NSNull null]];
}
[results enumerateObjectsUsingBlock:^(PHPickerResult *result, NSUInteger index, BOOL *stop) {
PHAsset *asset = nil;
NSItemProvider *provider = result.itemProvider;
// If include extra, we fetch the PHAsset, this required library permissions
if([self.options[@"includeExtra"] boolValue] && result.assetIdentifier != nil) {
PHFetchResult* fetchResult = [PHAsset fetchAssetsWithLocalIdentifiers:@[result.assetIdentifier] options:nil];
asset = fetchResult.firstObject;
}
dispatch_group_enter(completionGroup);
if ([provider hasItemConformingToTypeIdentifier:(NSString *)kUTTypeImage]) {
NSString *identifier = provider.registeredTypeIdentifiers.firstObject;
// Matches both com.apple.live-photo-bundle and com.apple.private.live-photo-bundle
if ([identifier containsString:@"live-photo-bundle"]) {
// Handle live photos
identifier = @"public.jpeg";
}
[provider loadFileRepresentationForTypeIdentifier:identifier completionHandler:^(NSURL * _Nullable url, NSError * _Nullable error) {
NSData *data = [[NSData alloc] initWithContentsOfURL:url];
UIImage *image = [[UIImage alloc] initWithData:data];
assets[index] = [self mapImageToAsset:image data:data phAsset:asset];
dispatch_group_leave(completionGroup);
}];
} else if ([provider hasItemConformingToTypeIdentifier:(NSString *)kUTTypeMovie]) {
[provider loadFileRepresentationForTypeIdentifier:(NSString *)kUTTypeMovie completionHandler:^(NSURL * _Nullable url, NSError * _Nullable error) {
NSDictionary *mappedAsset = [self mapVideoToAsset:url phAsset:asset error:nil];
if (nil != mappedAsset) {
assets[index] = mappedAsset;
}
dispatch_group_leave(completionGroup);
}];
} else {
// The provider didn't have an item matching photo or video (fails on M1 Mac Simulator)
dispatch_group_leave(completionGroup);
}
}];
dispatch_group_notify(completionGroup, dispatch_get_main_queue(), ^{
// mapVideoToAsset can fail and return nil, leaving asset NSNull.
for (NSDictionary *asset in assets) {
if ([asset isEqual:[NSNull null]]) {
self.callback(@[@{@"errorCode": errOthers}]);
return;
}
}
NSMutableDictionary *response = [[NSMutableDictionary alloc] init];
[response setObject:assets forKey:@"assets"];
self.callback(@[response]);
});
}
@end
#endif