|
|
@ -7,7 +7,7 @@ import ObjectiveC
|
|
|
|
|
|
|
|
|
|
|
|
// There's no UTI type for webp!
|
|
|
|
// There's no UTI type for webp!
|
|
|
|
enum GiphyFormat {
|
|
|
|
enum GiphyFormat {
|
|
|
|
case gif, mp4
|
|
|
|
case gif, mp4, jpg
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@objc class GiphyRendition: NSObject {
|
|
|
|
@objc class GiphyRendition: NSObject {
|
|
|
@ -38,6 +38,8 @@ enum GiphyFormat {
|
|
|
|
return "gif"
|
|
|
|
return "gif"
|
|
|
|
case .mp4:
|
|
|
|
case .mp4:
|
|
|
|
return "mp4"
|
|
|
|
return "mp4"
|
|
|
|
|
|
|
|
case .jpg:
|
|
|
|
|
|
|
|
return "jpg"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -47,8 +49,14 @@ enum GiphyFormat {
|
|
|
|
return kUTTypeGIF as String
|
|
|
|
return kUTTypeGIF as String
|
|
|
|
case .mp4:
|
|
|
|
case .mp4:
|
|
|
|
return kUTTypeMPEG4 as String
|
|
|
|
return kUTTypeMPEG4 as String
|
|
|
|
|
|
|
|
case .jpg:
|
|
|
|
|
|
|
|
return kUTTypeJPEG as String
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public func log() {
|
|
|
|
|
|
|
|
Logger.verbose("\t \(format), \(name), \(width), \(height), \(fileSize)")
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@objc class GiphyImageInfo: NSObject {
|
|
|
|
@objc class GiphyImageInfo: NSObject {
|
|
|
@ -69,33 +77,67 @@ enum GiphyFormat {
|
|
|
|
let kMinDimension = UInt(101)
|
|
|
|
let kMinDimension = UInt(101)
|
|
|
|
let kMaxFileSize = UInt(3 * 1024 * 1024)
|
|
|
|
let kMaxFileSize = UInt(3 * 1024 * 1024)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public func log() {
|
|
|
|
|
|
|
|
Logger.verbose("giphyId: \(giphyId), \(renditions.count)")
|
|
|
|
|
|
|
|
for rendition in renditions {
|
|
|
|
|
|
|
|
rendition.log()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public func pickStillRendition() -> GiphyRendition? {
|
|
|
|
|
|
|
|
return pickRendition(isStill:true)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public func pickGifRendition() -> GiphyRendition? {
|
|
|
|
public func pickGifRendition() -> GiphyRendition? {
|
|
|
|
|
|
|
|
return pickRendition(isStill:false)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private func pickRendition(isStill: Bool) -> GiphyRendition? {
|
|
|
|
var bestRendition: GiphyRendition?
|
|
|
|
var bestRendition: GiphyRendition?
|
|
|
|
|
|
|
|
|
|
|
|
for rendition in renditions {
|
|
|
|
for rendition in renditions {
|
|
|
|
guard rendition.format == .gif else {
|
|
|
|
if isStill {
|
|
|
|
continue
|
|
|
|
guard [.gif, .jpg].contains(rendition.format) else {
|
|
|
|
}
|
|
|
|
|
|
|
|
guard !rendition.name.hasSuffix("_still")
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
guard !rendition.name.hasSuffix("_downsampled")
|
|
|
|
guard rendition.name.hasSuffix("_still") else {
|
|
|
|
else {
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
guard rendition.width >= kMinDimension &&
|
|
|
|
guard rendition.width >= kMinDimension &&
|
|
|
|
rendition.height >= kMinDimension &&
|
|
|
|
rendition.width <= kMaxDimension &&
|
|
|
|
rendition.fileSize <= kMaxFileSize
|
|
|
|
rendition.height >= kMinDimension &&
|
|
|
|
else {
|
|
|
|
rendition.height <= kMaxDimension &&
|
|
|
|
continue
|
|
|
|
rendition.fileSize <= kMaxFileSize
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
} else {
|
|
|
|
|
|
|
|
guard rendition.format == .gif else {
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
guard !rendition.name.hasSuffix("_still") else {
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
guard !rendition.name.hasSuffix("_downsampled") else {
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
guard rendition.width >= kMinDimension &&
|
|
|
|
|
|
|
|
rendition.width <= kMaxDimension &&
|
|
|
|
|
|
|
|
rendition.height >= kMinDimension &&
|
|
|
|
|
|
|
|
rendition.height <= kMaxDimension &&
|
|
|
|
|
|
|
|
rendition.fileSize <= kMaxFileSize
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if let currentBestRendition = bestRendition {
|
|
|
|
if let currentBestRendition = bestRendition {
|
|
|
|
if rendition.width > currentBestRendition.width {
|
|
|
|
if isStill {
|
|
|
|
bestRendition = rendition
|
|
|
|
if rendition.width < currentBestRendition.width {
|
|
|
|
|
|
|
|
bestRendition = rendition
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if rendition.width > currentBestRendition.width {
|
|
|
|
|
|
|
|
bestRendition = rendition
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
bestRendition = rendition
|
|
|
|
bestRendition = rendition
|
|
|
@ -191,6 +233,8 @@ enum GiphyFormat {
|
|
|
|
// MARK: Parse API Responses
|
|
|
|
// MARK: Parse API Responses
|
|
|
|
|
|
|
|
|
|
|
|
private func parseGiphyImages(responseJson:Any?) -> [GiphyImageInfo]? {
|
|
|
|
private func parseGiphyImages(responseJson:Any?) -> [GiphyImageInfo]? {
|
|
|
|
|
|
|
|
// Logger.verbose("\(responseJson)")
|
|
|
|
|
|
|
|
|
|
|
|
guard let responseJson = responseJson else {
|
|
|
|
guard let responseJson = responseJson else {
|
|
|
|
Logger.error("\(GifManager.TAG) Missing response.")
|
|
|
|
Logger.error("\(GifManager.TAG) Missing response.")
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
@ -292,14 +336,27 @@ enum GiphyFormat {
|
|
|
|
Logger.warn("\(GifManager.TAG) Rendition url missing file extension.")
|
|
|
|
Logger.warn("\(GifManager.TAG) Rendition url missing file extension.")
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
guard fileExtension.lowercased() == "gif" else {
|
|
|
|
var format = GiphyFormat.gif
|
|
|
|
// Logger.verbose("\(GifManager.TAG) Rendition has invalid type: \(fileExtension).")
|
|
|
|
if fileExtension.lowercased() == "gif" {
|
|
|
|
|
|
|
|
format = .gif
|
|
|
|
|
|
|
|
} else if fileExtension.lowercased() == "jpg" {
|
|
|
|
|
|
|
|
format = .jpg
|
|
|
|
|
|
|
|
} else if fileExtension.lowercased() == "mp4" {
|
|
|
|
|
|
|
|
format = .mp4
|
|
|
|
|
|
|
|
} else if fileExtension.lowercased() == "webp" {
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
Logger.warn("\(GifManager.TAG) Invalid file extension: \(fileExtension).")
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// guard fileExtension.lowercased() == "gif" else {
|
|
|
|
|
|
|
|
//// Logger.verbose("\(GifManager.TAG) Rendition has invalid type: \(fileExtension).")
|
|
|
|
|
|
|
|
// return nil
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// Logger.debug("\(GifManager.TAG) Rendition successfully parsed.")
|
|
|
|
// Logger.debug("\(GifManager.TAG) Rendition successfully parsed.")
|
|
|
|
return GiphyRendition(
|
|
|
|
return GiphyRendition(
|
|
|
|
format : .gif,
|
|
|
|
format : format,
|
|
|
|
name : renditionName,
|
|
|
|
name : renditionName,
|
|
|
|
width : width,
|
|
|
|
width : width,
|
|
|
|
height : height,
|
|
|
|
height : height,
|
|
|
|