Chatto/ChattoAdditions/Source/Input/Photos/PhotosInputDataProvider.swift

177 lines
7.4 KiB
Swift

/*
The MIT License (MIT)
Copyright (c) 2015-present Badoo Trading Limited.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
import PhotosUI
protocol PhotosInputDataProviderDelegate: class {
func handlePhotosInpudDataProviderUpdate(_ dataProvider: PhotosInputDataProviderProtocol, updateBlock: @escaping () -> Void)
}
protocol PhotosInputDataProviderProtocol {
weak var delegate: PhotosInputDataProviderDelegate? { get set }
var count: Int { get }
func requestPreviewImageAtIndex(_ index: Int, targetSize: CGSize, completion: @escaping (UIImage) -> Void) -> Int32
func requestFullImageAtIndex(_ index: Int, completion: @escaping (UIImage) -> Void)
func cancelPreviewImageRequest(_ requestID: Int32)
}
class PhotosInputPlaceholderDataProvider: PhotosInputDataProviderProtocol {
weak var delegate: PhotosInputDataProviderDelegate?
let numberOfPlaceholders: Int
init(numberOfPlaceholders: Int = 5) {
self.numberOfPlaceholders = numberOfPlaceholders
}
var count: Int {
return self.numberOfPlaceholders
}
func requestPreviewImageAtIndex(_ index: Int, targetSize: CGSize, completion: @escaping (UIImage) -> Void) -> Int32 {
return 0
}
func requestFullImageAtIndex(_ index: Int, completion: @escaping (UIImage) -> Void) {
}
func cancelPreviewImageRequest(_ requestID: Int32) {
}
}
@objc
class PhotosInputDataProvider: NSObject, PhotosInputDataProviderProtocol, PHPhotoLibraryChangeObserver {
weak var delegate: PhotosInputDataProviderDelegate?
private var imageManager = PHCachingImageManager()
private var fetchResult: PHFetchResult<PHAsset>!
override init() {
func fetchOptions(_ predicate: NSPredicate?) -> PHFetchOptions {
let options = PHFetchOptions()
options.sortDescriptors = [ NSSortDescriptor(key: "creationDate", ascending: false) ]
options.predicate = predicate
return options
}
if let userLibraryCollection = PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumUserLibrary, options: nil).firstObject {
self.fetchResult = PHAsset.fetchAssets(in: userLibraryCollection, options: fetchOptions(NSPredicate(format: "mediaType = \(PHAssetMediaType.image.rawValue)")))
} else {
self.fetchResult = PHAsset.fetchAssets(with: .image, options: fetchOptions(nil))
}
super.init()
PHPhotoLibrary.shared().register(self)
}
deinit {
PHPhotoLibrary.shared().unregisterChangeObserver(self)
}
var count: Int {
return self.fetchResult.count
}
func requestPreviewImageAtIndex(_ index: Int, targetSize: CGSize, completion: @escaping (UIImage) -> Void) -> Int32 {
assert(index >= 0 && index < self.fetchResult.count, "Index out of bounds")
let asset = self.fetchResult[index]
let options = PHImageRequestOptions()
options.deliveryMode = .highQualityFormat
return self.imageManager.requestImage(for: asset, targetSize: targetSize, contentMode: .aspectFill, options: options) { (image, info) in
if let image = image {
completion(image)
}
}
}
func cancelPreviewImageRequest(_ requestID: Int32) {
self.imageManager.cancelImageRequest(requestID)
}
func requestFullImageAtIndex(_ index: Int, completion: @escaping (UIImage) -> Void) {
assert(index >= 0 && index < self.fetchResult.count, "Index out of bounds")
let asset = self.fetchResult[index]
self.imageManager.requestImageData(for: asset, options: .none) { (data, dataUTI, orientation, info) -> Void in
if let data = data, let image = UIImage(data: data) {
completion(image)
}
}
}
// MARK: PHPhotoLibraryChangeObserver
func photoLibraryDidChange(_ changeInstance: PHChange) {
// Photos may call this method on a background queue; switch to the main queue to update the UI.
DispatchQueue.main.async { [weak self] in
guard let sSelf = self else { return }
if let changeDetails = changeInstance.changeDetails(for: sSelf.fetchResult as! PHFetchResult<PHObject>) {
let updateBlock = { () -> Void in
self?.fetchResult = changeDetails.fetchResultAfterChanges as! PHFetchResult<PHAsset>
}
sSelf.delegate?.handlePhotosInpudDataProviderUpdate(sSelf, updateBlock: updateBlock)
}
}
}
}
class PhotosInputWithPlaceholdersDataProvider: PhotosInputDataProviderProtocol, PhotosInputDataProviderDelegate {
weak var delegate: PhotosInputDataProviderDelegate?
private let photosDataProvider: PhotosInputDataProviderProtocol
private let placeholdersDataProvider: PhotosInputDataProviderProtocol
init(photosDataProvider: PhotosInputDataProviderProtocol, placeholdersDataProvider: PhotosInputDataProviderProtocol) {
self.photosDataProvider = photosDataProvider
self.placeholdersDataProvider = placeholdersDataProvider
self.photosDataProvider.delegate = self
}
var count: Int {
return max(self.photosDataProvider.count, self.placeholdersDataProvider.count)
}
func requestPreviewImageAtIndex(_ index: Int, targetSize: CGSize, completion: @escaping (UIImage) -> Void) -> Int32 {
if index < self.photosDataProvider.count {
return self.photosDataProvider.requestPreviewImageAtIndex(index, targetSize: targetSize, completion: completion)
} else {
return self.placeholdersDataProvider.requestPreviewImageAtIndex(index, targetSize: targetSize, completion: completion)
}
}
func requestFullImageAtIndex(_ index: Int, completion: @escaping (UIImage) -> Void) {
if index < self.photosDataProvider.count {
return self.photosDataProvider.requestFullImageAtIndex(index, completion: completion)
} else {
return self.placeholdersDataProvider.requestFullImageAtIndex(index, completion: completion)
}
}
func cancelPreviewImageRequest(_ requestID: Int32) {
return self.photosDataProvider.cancelPreviewImageRequest(requestID)
}
// MARK: PhotosInputDataProviderDelegate
func handlePhotosInpudDataProviderUpdate(_ dataProvider: PhotosInputDataProviderProtocol, updateBlock: @escaping () -> Void) {
self.delegate?.handlePhotosInpudDataProviderUpdate(self, updateBlock: updateBlock)
}
}