123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
- #import "RCTPhotoLibraryImageLoader.h"
- #import <Photos/Photos.h>
- #import <React/RCTLog.h>
- #import <React/RCTUtils.h>
- #import <ReactCommon/RCTTurboModule.h>
- #import "RCTCameraRollPlugins.h"
- @interface RCTPhotoLibraryImageLoader () <RCTTurboModule>
- @end
- @implementation RCTPhotoLibraryImageLoader
- RCT_EXPORT_MODULE()
- @synthesize bridge = _bridge;
- #pragma mark - RCTImageLoader
- - (BOOL)canLoadImageURL:(NSURL *)requestURL
- {
- if (![PHAsset class]) {
- return NO;
- }
- return [requestURL.scheme caseInsensitiveCompare:@"assets-library"] == NSOrderedSame ||
- [requestURL.scheme caseInsensitiveCompare:@"ph"] == NSOrderedSame;
- }
- - (RCTImageLoaderCancellationBlock)loadImageForURL:(NSURL *)imageURL
- size:(CGSize)size
- scale:(CGFloat)scale
- resizeMode:(RCTResizeMode)resizeMode
- progressHandler:(RCTImageLoaderProgressBlock)progressHandler
- partialLoadHandler:(RCTImageLoaderPartialLoadBlock)partialLoadHandler
- completionHandler:(RCTImageLoaderCompletionBlock)completionHandler
- {
- // Using PhotoKit for iOS 8+
- // The 'ph://' prefix is used by FBMediaKit to differentiate between
- // assets-library. It is prepended to the local ID so that it is in the
- // form of an NSURL which is what assets-library uses.
- NSString *assetID = @"";
- PHFetchResult *results;
- if (!imageURL) {
- completionHandler(RCTErrorWithMessage(@"Cannot load a photo library asset with no URL"), nil);
- return ^{};
- } else if ([imageURL.scheme caseInsensitiveCompare:@"assets-library"] == NSOrderedSame) {
- assetID = [imageURL absoluteString];
- results = [PHAsset fetchAssetsWithALAssetURLs:@[imageURL] options:nil];
- } else {
- assetID = [imageURL.absoluteString substringFromIndex:@"ph://".length];
- results = [PHAsset fetchAssetsWithLocalIdentifiers:@[assetID] options:nil];
- }
- if (results.count == 0) {
- NSString *errorText = [NSString stringWithFormat:@"Failed to fetch PHAsset with local identifier %@ with no error message.", assetID];
- completionHandler(RCTErrorWithMessage(errorText), nil);
- return ^{};
- }
- PHAsset *asset = [results firstObject];
- PHImageRequestOptions *imageOptions = [PHImageRequestOptions new];
- // Allow PhotoKit to fetch images from iCloud
- imageOptions.networkAccessAllowed = YES;
- if (progressHandler) {
- imageOptions.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary<NSString *, id> *info) {
- static const double multiplier = 1e6;
- progressHandler(progress * multiplier, multiplier);
- };
- }
- // Note: PhotoKit defaults to a deliveryMode of PHImageRequestOptionsDeliveryModeOpportunistic
- // which means it may call back multiple times - we probably don't want that
- imageOptions.deliveryMode = PHImageRequestOptionsDeliveryModeHighQualityFormat;
- BOOL useMaximumSize = CGSizeEqualToSize(size, CGSizeZero);
- CGSize targetSize;
- if (useMaximumSize) {
- targetSize = PHImageManagerMaximumSize;
- imageOptions.resizeMode = PHImageRequestOptionsResizeModeNone;
- } else {
- targetSize = CGSizeApplyAffineTransform(size, CGAffineTransformMakeScale(scale, scale));
- imageOptions.resizeMode = PHImageRequestOptionsResizeModeFast;
- }
- PHImageContentMode contentMode = PHImageContentModeAspectFill;
- if (resizeMode == RCTResizeModeContain) {
- contentMode = PHImageContentModeAspectFit;
- }
- PHImageRequestID requestID =
- [[PHImageManager defaultManager] requestImageForAsset:asset
- targetSize:targetSize
- contentMode:contentMode
- options:imageOptions
- resultHandler:^(UIImage *result, NSDictionary<NSString *, id> *info) {
- if (result) {
- completionHandler(nil, result);
- } else {
- completionHandler(info[PHImageErrorKey], nil);
- }
- }];
- return ^{
- [[PHImageManager defaultManager] cancelImageRequest:requestID];
- };
- }
- @end
- Class RCTPhotoLibraryImageLoaderCls(void) {
- return RCTPhotoLibraryImageLoader.class;
- }
|