Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetch by album name #489

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 70 additions & 13 deletions Source/AssetManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,84 @@ open class AssetManager {
return UIImage(named: name, in: bundle, compatibleWith: traitCollection) ?? UIImage()
}


// Fetch assets from a named album
private static func fetchFromAlbum(withConfiguration configuration: ImagePickerConfiguration,
_ completion: @escaping (_ assets: [PHAsset]) -> Void) {

if configuration.albumName == nil {
fetch(withConfiguration: configuration,
assetCollection: nil) { albumAssets in
completion(albumAssets)
}
return
}

var assets = [PHAsset]()

// Title is supposed to be supported as a predicate - but isn't
// https://www.google.com/search?client=safari&rls=en&q=phfetchoptions+predicate+title&ie=UTF-8&oe=UTF-8
// So we fetch all, and filter ourselves.
let result = PHAssetCollection.fetchAssetCollections(with: .album, subtype: .albumRegular, options: nil)

// Now, for each matching album, fetch images
result.enumerateObjects { assetCollection, _, stopPointer in
if assetCollection.localizedTitle == configuration.albumName {
// We may have multiple ioLight albums. I don't quite know how this happens; I think it's when they are
// aded on different devices and synced by iCloud. The only reasonable thing to do is to collate them
fetch(withConfiguration: configuration,
assetCollection: assetCollection) { albumAssets in
albumAssets.forEach { asset in
assets.insert(asset, at: 0)
}
}
}
}

completion(assets)
}

private static func fetch(withConfiguration configuration: ImagePickerConfiguration,
assetCollection: PHAssetCollection? = nil,
_ completion: @escaping (_ assets: [PHAsset]) -> Void) {
let assetOptions = PHFetchOptions()
if !configuration.allowVideoSelection {
assetOptions.predicate = NSPredicate(format: "mediaType = \(PHAssetMediaType.image.rawValue)")
}

var fetchResult: PHFetchResult<PHAsset>!
if let assetCollection = assetCollection {
fetchResult = PHAsset.fetchAssets(in: assetCollection, options: assetOptions)
} else {
fetchResult = PHAsset.fetchAssets(with: assetOptions)
}

var assets = [PHAsset]()

if fetchResult.count > 0 {
fetchResult.enumerateObjects({ object, _, _ in
assets.insert(object, at: 0)
})
}

completion(assets)
}

// Fetch all assets
public static func fetch(withConfiguration configuration: ImagePickerConfiguration, _ completion: @escaping (_ assets: [PHAsset]) -> Void) {
guard PHPhotoLibrary.authorizationStatus() == .authorized else { return }

DispatchQueue.global(qos: .background).async {
let fetchResult = configuration.allowVideoSelection
? PHAsset.fetchAssets(with: PHFetchOptions())
: PHAsset.fetchAssets(with: .image, options: PHFetchOptions())

if fetchResult.count > 0 {
var assets = [PHAsset]()
fetchResult.enumerateObjects({ object, _, _ in
assets.insert(object, at: 0)
})

DispatchQueue.main.async {
completion(assets)
fetchFromAlbum(withConfiguration: configuration) { assets in
if !assets.isEmpty {
DispatchQueue.main.async {
completion(assets)
}
}
}
}
}

public static func resolveAsset(_ asset: PHAsset, size: CGSize = CGSize(width: 720, height: 1280), shouldPreferLowRes: Bool = false, completion: @escaping (_ image: UIImage?) -> Void) {
let imageManager = PHImageManager.default()
let requestOptions = PHImageRequestOptions()
Expand Down
1 change: 1 addition & 0 deletions Source/Configuration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ import UIKit
@objc public var allowVolumeButtonsToTakePicture = true
@objc public var useLowResolutionPreviewImage = false
@objc public var galleryOnly = false
@objc public var albumName : String? = nil

// MARK: Images
@objc public var indicatorView: UIView = {
Expand Down