2021-10-16 22:48:58 +00:00
|
|
|
import AVFoundation
|
|
|
|
import Foundation
|
|
|
|
import Siesta
|
|
|
|
import SwiftyJSON
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
final class PipedAPI: Service, ObservableObject, VideosAPI {
|
|
|
|
@Published var account: Account!
|
2021-10-16 22:48:58 +00:00
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
var anonymousAccount: Account {
|
2021-10-16 22:48:58 +00:00
|
|
|
.init(instanceID: account.instance.id, name: "Anonymous", url: account.instance.url)
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
init(account: Account? = nil) {
|
2021-10-16 22:48:58 +00:00
|
|
|
super.init()
|
|
|
|
|
|
|
|
guard account != nil else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
setAccount(account!)
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
func setAccount(_ account: Account) {
|
2021-10-16 22:48:58 +00:00
|
|
|
self.account = account
|
|
|
|
|
|
|
|
configure()
|
|
|
|
}
|
|
|
|
|
|
|
|
func configure() {
|
|
|
|
configure {
|
|
|
|
$0.pipeline[.parsing].add(SwiftyJSONTransformer, contentTypes: ["*/json"])
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
configureTransformer(pathPattern("channel/*")) { (content: Entity<JSON>) -> Channel? in
|
2021-10-23 11:51:02 +00:00
|
|
|
PipedAPI.extractChannel(from: content.json)
|
2021-10-16 22:48:58 +00:00
|
|
|
}
|
2021-10-20 22:21:50 +00:00
|
|
|
|
2021-10-22 23:04:03 +00:00
|
|
|
configureTransformer(pathPattern("playlists/*")) { (content: Entity<JSON>) -> ChannelPlaylist? in
|
|
|
|
PipedAPI.extractChannelPlaylist(from: content.json)
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
configureTransformer(pathPattern("streams/*")) { (content: Entity<JSON>) -> Video? in
|
2021-10-23 11:51:02 +00:00
|
|
|
PipedAPI.extractVideo(from: content.json)
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configureTransformer(pathPattern("trending")) { (content: Entity<JSON>) -> [Video] in
|
2021-10-23 11:51:02 +00:00
|
|
|
PipedAPI.extractVideos(from: content.json)
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
configureTransformer(pathPattern("search")) { (content: Entity<JSON>) -> [ContentItem] in
|
2021-10-23 11:51:02 +00:00
|
|
|
PipedAPI.extractContentItems(from: content.json.dictionaryValue["items"]!)
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configureTransformer(pathPattern("suggestions")) { (content: Entity<JSON>) -> [String] in
|
|
|
|
content.json.arrayValue.map(String.init)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
func channel(_ id: String) -> Resource {
|
|
|
|
resource(baseURL: account.url, path: "channel/\(id)")
|
|
|
|
}
|
|
|
|
|
2021-10-22 23:04:03 +00:00
|
|
|
func channelPlaylist(_ id: String) -> Resource? {
|
|
|
|
resource(baseURL: account.url, path: "playlists/\(id)")
|
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
func trending(country: Country, category _: TrendingCategory? = nil) -> Resource {
|
|
|
|
resource(baseURL: account.instance.url, path: "trending")
|
|
|
|
.withParam("region", country.rawValue)
|
|
|
|
}
|
|
|
|
|
|
|
|
func search(_ query: SearchQuery) -> Resource {
|
|
|
|
resource(baseURL: account.instance.url, path: "search")
|
|
|
|
.withParam("q", query.query)
|
|
|
|
.withParam("filter", "")
|
|
|
|
}
|
|
|
|
|
|
|
|
func searchSuggestions(query: String) -> Resource {
|
|
|
|
resource(baseURL: account.instance.url, path: "suggestions")
|
|
|
|
.withParam("query", query.lowercased())
|
|
|
|
}
|
|
|
|
|
|
|
|
func video(_ id: Video.ID) -> Resource {
|
|
|
|
resource(baseURL: account.instance.url, path: "streams/\(id)")
|
|
|
|
}
|
|
|
|
|
|
|
|
var signedIn: Bool { false }
|
|
|
|
|
|
|
|
var subscriptions: Resource? { nil }
|
|
|
|
var feed: Resource? { nil }
|
|
|
|
var home: Resource? { nil }
|
|
|
|
var popular: Resource? { nil }
|
|
|
|
var playlists: Resource? { nil }
|
|
|
|
|
|
|
|
func channelSubscription(_: String) -> Resource? { nil }
|
|
|
|
|
|
|
|
func playlistVideo(_: String, _: String) -> Resource? { nil }
|
|
|
|
func playlistVideos(_: String) -> Resource? { nil }
|
|
|
|
|
|
|
|
private func pathPattern(_ path: String) -> String {
|
|
|
|
"**\(path)"
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractContentItem(from content: JSON) -> ContentItem? {
|
2021-10-21 23:29:10 +00:00
|
|
|
let details = content.dictionaryValue
|
|
|
|
let url: String! = details["url"]?.string
|
|
|
|
|
|
|
|
let contentType: ContentItem.ContentType
|
|
|
|
|
|
|
|
if !url.isNil {
|
|
|
|
if url.contains("/playlist") {
|
|
|
|
contentType = .playlist
|
|
|
|
} else if url.contains("/channel") {
|
|
|
|
contentType = .channel
|
|
|
|
} else {
|
|
|
|
contentType = .video
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
contentType = .video
|
|
|
|
}
|
|
|
|
|
|
|
|
switch contentType {
|
|
|
|
case .video:
|
2021-10-23 11:51:02 +00:00
|
|
|
if let video = PipedAPI.extractVideo(from: content) {
|
2021-10-21 23:29:10 +00:00
|
|
|
return ContentItem(video: video)
|
|
|
|
}
|
|
|
|
|
|
|
|
case .playlist:
|
2021-10-22 23:04:03 +00:00
|
|
|
if let playlist = PipedAPI.extractChannelPlaylist(from: content) {
|
|
|
|
return ContentItem(playlist: playlist)
|
|
|
|
}
|
2021-10-21 23:29:10 +00:00
|
|
|
|
|
|
|
case .channel:
|
2021-10-23 11:51:02 +00:00
|
|
|
if let channel = PipedAPI.extractChannel(from: content) {
|
2021-10-21 23:29:10 +00:00
|
|
|
return ContentItem(channel: channel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractContentItems(from content: JSON) -> [ContentItem] {
|
|
|
|
content.arrayValue.compactMap { PipedAPI.extractContentItem(from: $0) }
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractChannel(from content: JSON) -> Channel? {
|
2021-10-21 23:29:10 +00:00
|
|
|
let attributes = content.dictionaryValue
|
|
|
|
guard let id = attributes["id"]?.stringValue ??
|
2021-10-22 23:04:03 +00:00
|
|
|
(attributes["url"] ?? attributes["uploaderUrl"])?.stringValue.components(separatedBy: "/").last
|
2021-10-21 23:29:10 +00:00
|
|
|
else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let subscriptionsCount = attributes["subscriberCount"]?.intValue ?? attributes["subscribers"]?.intValue
|
|
|
|
|
|
|
|
var videos = [Video]()
|
|
|
|
if let relatedStreams = attributes["relatedStreams"] {
|
2021-10-23 11:51:02 +00:00
|
|
|
videos = PipedAPI.extractVideos(from: relatedStreams)
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Channel(
|
|
|
|
id: id,
|
|
|
|
name: attributes["name"]!.stringValue,
|
|
|
|
thumbnailURL: attributes["thumbnail"]?.url,
|
|
|
|
subscriptionsCount: subscriptionsCount,
|
|
|
|
videos: videos
|
2021-10-20 22:21:50 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-22 23:04:03 +00:00
|
|
|
static func extractChannelPlaylist(from json: JSON) -> ChannelPlaylist? {
|
|
|
|
let details = json.dictionaryValue
|
|
|
|
let id = details["url"]?.stringValue.components(separatedBy: "?list=").last ?? UUID().uuidString
|
|
|
|
let thumbnailURL = details["thumbnail"]?.url ?? details["thumbnailUrl"]?.url
|
|
|
|
var videos = [Video]()
|
|
|
|
if let relatedStreams = details["relatedStreams"] {
|
2021-10-23 11:51:02 +00:00
|
|
|
videos = PipedAPI.extractVideos(from: relatedStreams)
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
|
|
|
return ChannelPlaylist(
|
|
|
|
id: id,
|
|
|
|
title: details["name"]!.stringValue,
|
|
|
|
thumbnailURL: thumbnailURL,
|
2021-10-23 11:51:02 +00:00
|
|
|
channel: extractChannel(from: json)!,
|
2021-10-22 23:04:03 +00:00
|
|
|
videos: videos,
|
|
|
|
videosCount: details["videos"]?.int
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractVideo(from content: JSON) -> Video? {
|
2021-10-20 22:21:50 +00:00
|
|
|
let details = content.dictionaryValue
|
|
|
|
let url = details["url"]?.string
|
|
|
|
|
|
|
|
if !url.isNil {
|
|
|
|
guard url!.contains("/watch") else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let channelId = details["uploaderUrl"]!.stringValue.components(separatedBy: "/").last!
|
|
|
|
|
|
|
|
let thumbnails: [Thumbnail] = Thumbnail.Quality.allCases.compactMap {
|
2021-10-23 11:51:02 +00:00
|
|
|
if let url = PipedAPI.buildThumbnailURL(from: content, quality: $0) {
|
2021-10-20 22:21:50 +00:00
|
|
|
return Thumbnail(url: url, quality: $0)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let author = details["uploaderName"]?.stringValue ?? details["uploader"]!.stringValue
|
|
|
|
|
|
|
|
return Video(
|
2021-10-23 11:51:02 +00:00
|
|
|
videoID: PipedAPI.extractID(from: content),
|
2021-10-20 22:21:50 +00:00
|
|
|
title: details["title"]!.stringValue,
|
|
|
|
author: author,
|
|
|
|
length: details["duration"]!.doubleValue,
|
|
|
|
published: details["uploadedDate"]?.stringValue ?? details["uploadDate"]!.stringValue,
|
|
|
|
views: details["views"]!.intValue,
|
2021-10-23 11:51:02 +00:00
|
|
|
description: PipedAPI.extractDescription(from: content),
|
2021-10-20 22:21:50 +00:00
|
|
|
channel: Channel(id: channelId, name: author),
|
|
|
|
thumbnails: thumbnails,
|
|
|
|
likes: details["likes"]?.int,
|
|
|
|
dislikes: details["dislikes"]?.int,
|
2021-10-23 11:51:02 +00:00
|
|
|
streams: extractStreams(from: content)
|
2021-10-20 22:21:50 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractID(from content: JSON) -> Video.ID {
|
2021-10-20 22:21:50 +00:00
|
|
|
content.dictionaryValue["url"]?.stringValue.components(separatedBy: "?v=").last ??
|
2021-10-23 11:51:02 +00:00
|
|
|
extractThumbnailURL(from: content)!.relativeString.components(separatedBy: "/")[4]
|
2021-10-16 22:48:58 +00:00
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractThumbnailURL(from content: JSON) -> URL? {
|
2021-10-20 22:21:50 +00:00
|
|
|
content.dictionaryValue["thumbnail"]?.url! ?? content.dictionaryValue["thumbnailUrl"]!.url!
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func buildThumbnailURL(from content: JSON, quality: Thumbnail.Quality) -> URL? {
|
|
|
|
let thumbnailURL = extractThumbnailURL(from: content)
|
2021-10-20 22:21:50 +00:00
|
|
|
guard !thumbnailURL.isNil else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return URL(string: thumbnailURL!
|
|
|
|
.absoluteString
|
|
|
|
.replacingOccurrences(of: "hqdefault", with: quality.filename)
|
|
|
|
.replacingOccurrences(of: "maxresdefault", with: quality.filename)
|
|
|
|
)!
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractDescription(from content: JSON) -> String? {
|
2021-10-20 22:21:50 +00:00
|
|
|
guard var description = content.dictionaryValue["description"]?.string else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
description = description.replacingOccurrences(
|
|
|
|
of: "<br/>|<br />|<br>",
|
|
|
|
with: "\n",
|
|
|
|
options: .regularExpression,
|
|
|
|
range: nil
|
|
|
|
)
|
|
|
|
|
|
|
|
description = description.replacingOccurrences(
|
|
|
|
of: "<[^>]+>",
|
|
|
|
with: "",
|
|
|
|
options: .regularExpression,
|
|
|
|
range: nil
|
|
|
|
)
|
|
|
|
|
|
|
|
return description
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractVideos(from content: JSON) -> [Video] {
|
|
|
|
content.arrayValue.compactMap(extractVideo(from:))
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func extractStreams(from content: JSON) -> [Stream] {
|
2021-10-16 22:48:58 +00:00
|
|
|
var streams = [Stream]()
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
if let hlsURL = content.dictionaryValue["hls"]?.url {
|
2021-10-16 22:48:58 +00:00
|
|
|
streams.append(Stream(hlsURL: hlsURL))
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
guard let audioStream = PipedAPI.compatibleAudioStreams(from: content).first else {
|
2021-10-16 22:48:58 +00:00
|
|
|
return streams
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
let videoStreams = PipedAPI.compatibleVideoStream(from: content)
|
2021-10-16 22:48:58 +00:00
|
|
|
|
|
|
|
videoStreams.forEach { videoStream in
|
|
|
|
let audioAsset = AVURLAsset(url: audioStream.dictionaryValue["url"]!.url!)
|
|
|
|
let videoAsset = AVURLAsset(url: videoStream.dictionaryValue["url"]!.url!)
|
|
|
|
|
|
|
|
let videoOnly = videoStream.dictionaryValue["videoOnly"]?.boolValue ?? true
|
|
|
|
let resolution = Stream.Resolution.from(resolution: videoStream.dictionaryValue["quality"]!.stringValue)
|
|
|
|
|
|
|
|
if videoOnly {
|
|
|
|
streams.append(
|
|
|
|
Stream(audioAsset: audioAsset, videoAsset: videoAsset, resolution: resolution, kind: .adaptive)
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
streams.append(
|
|
|
|
SingleAssetStream(avAsset: videoAsset, resolution: resolution, kind: .stream)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return streams
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func compatibleAudioStreams(from content: JSON) -> [JSON] {
|
2021-10-16 22:48:58 +00:00
|
|
|
content
|
|
|
|
.dictionaryValue["audioStreams"]?
|
|
|
|
.arrayValue
|
|
|
|
.filter { $0.dictionaryValue["format"]?.stringValue == "M4A" }
|
|
|
|
.sorted {
|
|
|
|
$0.dictionaryValue["bitrate"]?.intValue ?? 0 > $1.dictionaryValue["bitrate"]?.intValue ?? 0
|
|
|
|
} ?? []
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
private static func compatibleVideoStream(from content: JSON) -> [JSON] {
|
2021-10-16 22:48:58 +00:00
|
|
|
content
|
|
|
|
.dictionaryValue["videoStreams"]?
|
|
|
|
.arrayValue
|
|
|
|
.filter { $0.dictionaryValue["format"] == "MPEG_4" } ?? []
|
|
|
|
}
|
|
|
|
}
|