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 {
|
2022-06-17 10:52:10 +00:00
|
|
|
static var disallowedVideoCodecs = ["av01"]
|
2022-04-10 15:07:10 +00:00
|
|
|
static var authorizedEndpoints = ["subscriptions", "subscribe", "unsubscribe", "user/playlists"]
|
2021-11-14 23:06:01 +00:00
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
@Published var account: Account!
|
2021-10-16 22:48:58 +00:00
|
|
|
|
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() {
|
2021-11-14 23:06:01 +00:00
|
|
|
invalidateConfiguration()
|
|
|
|
|
2021-10-16 22:48:58 +00:00
|
|
|
configure {
|
|
|
|
$0.pipeline[.parsing].add(SwiftyJSONTransformer, contentTypes: ["*/json"])
|
|
|
|
}
|
|
|
|
|
2021-11-14 23:06:01 +00:00
|
|
|
configure(whenURLMatches: { url in self.needsAuthorization(url) }) {
|
|
|
|
$0.headers["Authorization"] = self.account.token
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
configureTransformer(pathPattern("channel/*")) { (content: Entity<JSON>) -> Channel? in
|
2021-12-17 16:39:26 +00:00
|
|
|
self.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
|
2021-12-17 16:39:26 +00:00
|
|
|
self.extractChannelPlaylist(from: content.json)
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
|
|
|
|
2022-05-21 22:29:51 +00:00
|
|
|
configureTransformer(pathPattern("user/playlists/create")) { (_: Entity<JSON>) in }
|
|
|
|
configureTransformer(pathPattern("user/playlists/delete")) { (_: Entity<JSON>) in }
|
|
|
|
configureTransformer(pathPattern("user/playlists/add")) { (_: Entity<JSON>) in }
|
|
|
|
configureTransformer(pathPattern("user/playlists/remove")) { (_: Entity<JSON>) in }
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
configureTransformer(pathPattern("streams/*")) { (content: Entity<JSON>) -> Video? in
|
2021-12-17 16:39:26 +00:00
|
|
|
self.extractVideo(from: content.json)
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configureTransformer(pathPattern("trending")) { (content: Entity<JSON>) -> [Video] in
|
2021-12-17 16:39:26 +00:00
|
|
|
self.extractVideos(from: content.json)
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
2022-01-04 23:18:01 +00:00
|
|
|
configureTransformer(pathPattern("search")) { (content: Entity<JSON>) -> SearchPage in
|
|
|
|
let nextPage = content.json.dictionaryValue["nextpage"]?.stringValue
|
|
|
|
return SearchPage(
|
|
|
|
results: self.extractContentItems(from: content.json.dictionaryValue["items"]!),
|
|
|
|
nextPage: nextPage,
|
|
|
|
last: nextPage == "null"
|
|
|
|
)
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configureTransformer(pathPattern("suggestions")) { (content: Entity<JSON>) -> [String] in
|
|
|
|
content.json.arrayValue.map(String.init)
|
|
|
|
}
|
2021-11-14 23:06:01 +00:00
|
|
|
|
|
|
|
configureTransformer(pathPattern("subscriptions")) { (content: Entity<JSON>) -> [Channel] in
|
2021-12-17 16:39:26 +00:00
|
|
|
content.json.arrayValue.map { self.extractChannel(from: $0)! }
|
2021-11-14 23:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configureTransformer(pathPattern("feed")) { (content: Entity<JSON>) -> [Video] in
|
2021-12-17 16:39:26 +00:00
|
|
|
content.json.arrayValue.map { self.extractVideo(from: $0)! }
|
2021-11-14 23:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-12-04 19:35:41 +00:00
|
|
|
configureTransformer(pathPattern("comments/*")) { (content: Entity<JSON>) -> CommentsPage in
|
2021-12-05 17:14:49 +00:00
|
|
|
let details = content.json.dictionaryValue
|
2021-12-17 16:39:26 +00:00
|
|
|
let comments = details["comments"]?.arrayValue.map { self.extractComment(from: $0)! } ?? []
|
2021-12-05 17:14:49 +00:00
|
|
|
let nextPage = details["nextpage"]?.stringValue
|
|
|
|
let disabled = details["disabled"]?.boolValue ?? false
|
2021-12-04 19:35:41 +00:00
|
|
|
|
2021-12-05 17:14:49 +00:00
|
|
|
return CommentsPage(comments: comments, nextPage: nextPage, disabled: disabled)
|
2021-12-04 19:35:41 +00:00
|
|
|
}
|
|
|
|
|
2022-04-10 15:07:10 +00:00
|
|
|
configureTransformer(pathPattern("user/playlists")) { (content: Entity<JSON>) -> [Playlist] in
|
|
|
|
content.json.arrayValue.map { self.extractUserPlaylist(from: $0)! }
|
|
|
|
}
|
|
|
|
|
2021-11-14 23:06:01 +00:00
|
|
|
if account.token.isNil {
|
|
|
|
updateToken()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func needsAuthorization(_ url: URL) -> Bool {
|
2021-12-17 16:39:26 +00:00
|
|
|
Self.authorizedEndpoints.contains { url.absoluteString.contains($0) }
|
2021-11-14 23:06:01 +00:00
|
|
|
}
|
|
|
|
|
2021-12-04 19:35:41 +00:00
|
|
|
func updateToken() {
|
|
|
|
guard !account.anonymous else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-14 23:06:01 +00:00
|
|
|
account.token = nil
|
2021-12-04 19:35:41 +00:00
|
|
|
|
|
|
|
login.request(
|
2021-11-14 23:06:01 +00:00
|
|
|
.post,
|
|
|
|
json: ["username": account.username, "password": account.password]
|
|
|
|
)
|
|
|
|
.onSuccess { response in
|
|
|
|
self.account.token = response.json.dictionaryValue["token"]?.string ?? ""
|
|
|
|
self.configure()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var login: Resource {
|
|
|
|
resource(baseURL: account.url, path: "login")
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
func channel(_ id: String) -> Resource {
|
|
|
|
resource(baseURL: account.url, path: "channel/\(id)")
|
|
|
|
}
|
|
|
|
|
2021-11-01 21:56:18 +00:00
|
|
|
func channelVideos(_ id: String) -> Resource {
|
|
|
|
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 {
|
2021-10-27 21:11:38 +00:00
|
|
|
resource(baseURL: account.instance.apiURL, path: "trending")
|
2021-10-21 23:29:10 +00:00
|
|
|
.withParam("region", country.rawValue)
|
|
|
|
}
|
|
|
|
|
2022-01-04 23:18:01 +00:00
|
|
|
func search(_ query: SearchQuery, page: String?) -> Resource {
|
|
|
|
let path = page.isNil ? "search" : "nextpage/search"
|
|
|
|
|
|
|
|
let resource = resource(baseURL: account.instance.apiURL, path: path)
|
2021-10-21 23:29:10 +00:00
|
|
|
.withParam("q", query.query)
|
2022-01-04 23:18:01 +00:00
|
|
|
.withParam("filter", "all")
|
|
|
|
|
|
|
|
if page.isNil {
|
|
|
|
return resource
|
|
|
|
}
|
|
|
|
|
|
|
|
return resource.withParam("nextpage", page)
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func searchSuggestions(query: String) -> Resource {
|
2021-10-27 21:11:38 +00:00
|
|
|
resource(baseURL: account.instance.apiURL, path: "suggestions")
|
2021-10-21 23:29:10 +00:00
|
|
|
.withParam("query", query.lowercased())
|
|
|
|
}
|
|
|
|
|
|
|
|
func video(_ id: Video.ID) -> Resource {
|
2021-10-27 21:11:38 +00:00
|
|
|
resource(baseURL: account.instance.apiURL, path: "streams/\(id)")
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
2021-11-14 23:06:01 +00:00
|
|
|
var signedIn: Bool {
|
2022-04-03 22:18:49 +00:00
|
|
|
guard let account = account else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return !account.anonymous && !(account.token?.isEmpty ?? true)
|
2021-11-14 23:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var subscriptions: Resource? {
|
|
|
|
resource(baseURL: account.instance.apiURL, path: "subscriptions")
|
|
|
|
}
|
|
|
|
|
|
|
|
var feed: Resource? {
|
|
|
|
resource(baseURL: account.instance.apiURL, path: "feed")
|
|
|
|
.withParam("authToken", account.token)
|
|
|
|
}
|
2021-10-21 23:29:10 +00:00
|
|
|
|
|
|
|
var home: Resource? { nil }
|
|
|
|
var popular: Resource? { nil }
|
2022-04-10 15:07:10 +00:00
|
|
|
var playlists: Resource? {
|
|
|
|
resource(baseURL: account.instance.apiURL, path: "user/playlists")
|
|
|
|
}
|
2021-10-21 23:29:10 +00:00
|
|
|
|
2021-11-14 23:06:01 +00:00
|
|
|
func subscribe(_ channelID: String, onCompletion: @escaping () -> Void = {}) {
|
|
|
|
resource(baseURL: account.instance.apiURL, path: "subscribe")
|
|
|
|
.request(.post, json: ["channelId": channelID])
|
|
|
|
.onCompletion { _ in onCompletion() }
|
|
|
|
}
|
|
|
|
|
|
|
|
func unsubscribe(_ channelID: String, onCompletion: @escaping () -> Void = {}) {
|
|
|
|
resource(baseURL: account.instance.apiURL, path: "unsubscribe")
|
|
|
|
.request(.post, json: ["channelId": channelID])
|
|
|
|
.onCompletion { _ in onCompletion() }
|
|
|
|
}
|
2021-10-21 23:29:10 +00:00
|
|
|
|
2022-04-10 15:07:10 +00:00
|
|
|
func playlist(_ id: String) -> Resource? {
|
|
|
|
channelPlaylist(id)
|
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
func playlistVideo(_: String, _: String) -> Resource? { nil }
|
|
|
|
func playlistVideos(_: String) -> Resource? { nil }
|
|
|
|
|
2022-05-21 22:29:51 +00:00
|
|
|
func addVideoToPlaylist(
|
|
|
|
_ videoID: String,
|
|
|
|
_ playlistID: String,
|
|
|
|
onFailure: @escaping (RequestError) -> Void = { _ in },
|
|
|
|
onSuccess: @escaping () -> Void = {}
|
|
|
|
) {
|
|
|
|
let resource = resource(baseURL: account.instance.apiURL, path: "user/playlists/add")
|
|
|
|
let body = ["videoId": videoID, "playlistId": playlistID]
|
|
|
|
|
|
|
|
resource
|
|
|
|
.request(.post, json: body)
|
|
|
|
.onSuccess { _ in onSuccess() }
|
|
|
|
.onFailure(onFailure)
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeVideoFromPlaylist(
|
|
|
|
_ index: String,
|
|
|
|
_ playlistID: String,
|
|
|
|
onFailure: @escaping (RequestError) -> Void,
|
|
|
|
onSuccess: @escaping () -> Void
|
|
|
|
) {
|
|
|
|
let resource = resource(baseURL: account.instance.apiURL, path: "user/playlists/remove")
|
|
|
|
let body: [String: Any] = ["index": Int(index)!, "playlistId": playlistID]
|
|
|
|
|
|
|
|
resource
|
|
|
|
.request(.post, json: body)
|
|
|
|
.onSuccess { _ in onSuccess() }
|
|
|
|
.onFailure(onFailure)
|
|
|
|
}
|
|
|
|
|
|
|
|
func playlistForm(
|
|
|
|
_ name: String,
|
|
|
|
_: String,
|
|
|
|
playlist: Playlist?,
|
|
|
|
onFailure: @escaping (RequestError) -> Void,
|
|
|
|
onSuccess: @escaping (Playlist?) -> Void
|
|
|
|
) {
|
|
|
|
let body = ["name": name]
|
|
|
|
let resource = playlist.isNil ? resource(baseURL: account.instance.apiURL, path: "user/playlists/create") : nil
|
|
|
|
|
|
|
|
resource?
|
|
|
|
.request(.post, json: body)
|
|
|
|
.onSuccess { response in
|
|
|
|
if let modifiedPlaylist: Playlist = response.typedContent() {
|
|
|
|
onSuccess(modifiedPlaylist)
|
|
|
|
} else {
|
|
|
|
onSuccess(nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.onFailure(onFailure)
|
|
|
|
}
|
|
|
|
|
|
|
|
func deletePlaylist(
|
|
|
|
_ playlist: Playlist,
|
|
|
|
onFailure: @escaping (RequestError) -> Void,
|
|
|
|
onSuccess: @escaping () -> Void
|
|
|
|
) {
|
|
|
|
let resource = resource(baseURL: account.instance.apiURL, path: "user/playlists/delete")
|
|
|
|
let body = ["playlistId": playlist.id]
|
|
|
|
|
|
|
|
resource
|
|
|
|
.request(.post, json: body)
|
|
|
|
.onSuccess { _ in onSuccess() }
|
|
|
|
.onFailure(onFailure)
|
|
|
|
}
|
|
|
|
|
2021-12-04 19:35:41 +00:00
|
|
|
func comments(_ id: Video.ID, page: String?) -> Resource? {
|
|
|
|
let path = page.isNil ? "comments/\(id)" : "nextpage/comments/\(id)"
|
|
|
|
let resource = resource(baseURL: account.url, path: path)
|
|
|
|
|
|
|
|
if page.isNil {
|
|
|
|
return resource
|
|
|
|
}
|
|
|
|
|
|
|
|
return resource.withParam("nextpage", page)
|
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
private func pathPattern(_ path: String) -> String {
|
|
|
|
"**\(path)"
|
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private 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-12-17 16:39:26 +00:00
|
|
|
if let video = extractVideo(from: content) {
|
2021-10-21 23:29:10 +00:00
|
|
|
return ContentItem(video: video)
|
|
|
|
}
|
|
|
|
|
|
|
|
case .playlist:
|
2021-12-17 16:39:26 +00:00
|
|
|
if let playlist = extractChannelPlaylist(from: content) {
|
2021-10-22 23:04:03 +00:00
|
|
|
return ContentItem(playlist: playlist)
|
|
|
|
}
|
2021-10-21 23:29:10 +00:00
|
|
|
|
|
|
|
case .channel:
|
2021-12-17 16:39:26 +00:00
|
|
|
if let channel = extractChannel(from: content) {
|
2021-10-21 23:29:10 +00:00
|
|
|
return ContentItem(channel: channel)
|
|
|
|
}
|
2022-03-27 10:49:57 +00:00
|
|
|
default:
|
|
|
|
return nil
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private func extractContentItems(from content: JSON) -> [ContentItem] {
|
|
|
|
content.arrayValue.compactMap { extractContentItem(from: $0) }
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private 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-12-17 16:39:26 +00:00
|
|
|
videos = extractVideos(from: relatedStreams)
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
let name = attributes["name"]?.stringValue ?? attributes["uploaderName"]?.stringValue ?? attributes["uploader"]?.stringValue ?? ""
|
|
|
|
let thumbnailURL = attributes["avatarUrl"]?.url ?? attributes["uploaderAvatar"]?.url ?? attributes["avatar"]?.url ?? attributes["thumbnail"]?.url
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
return Channel(
|
|
|
|
id: id,
|
2021-12-17 16:39:26 +00:00
|
|
|
name: name,
|
|
|
|
thumbnailURL: thumbnailURL,
|
2021-10-21 23:29:10 +00:00
|
|
|
subscriptionsCount: subscriptionsCount,
|
|
|
|
videos: videos
|
2021-10-20 22:21:50 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
func extractChannelPlaylist(from json: JSON) -> ChannelPlaylist? {
|
2021-10-22 23:04:03 +00:00
|
|
|
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-12-17 16:39:26 +00:00
|
|
|
videos = extractVideos(from: relatedStreams)
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
|
|
|
return ChannelPlaylist(
|
|
|
|
id: id,
|
2022-05-22 15:53:12 +00:00
|
|
|
title: details["name"]?.stringValue ?? "",
|
2021-10-22 23:04:03 +00:00
|
|
|
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-12-17 16:39:26 +00:00
|
|
|
private 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-12-17 16:39:26 +00:00
|
|
|
if let url = 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
|
2021-12-17 16:39:26 +00:00
|
|
|
let authorThumbnailURL = details["avatarUrl"]?.url ?? details["uploaderAvatar"]?.url ?? details["avatar"]?.url
|
2022-04-16 17:50:02 +00:00
|
|
|
let subscriptionsCount = details["uploaderSubscriberCount"]?.int
|
2021-12-17 16:39:26 +00:00
|
|
|
|
2022-03-20 20:30:45 +00:00
|
|
|
let uploaded = details["uploaded"]?.doubleValue
|
2022-06-14 16:23:15 +00:00
|
|
|
var published = (uploaded.isNil || uploaded == -1) ? nil : (uploaded! / 1000).formattedAsRelativeTime()
|
2022-03-20 20:30:45 +00:00
|
|
|
if published.isNil {
|
|
|
|
published = (details["uploadedDate"] ?? details["uploadDate"])?.stringValue ?? ""
|
|
|
|
}
|
|
|
|
|
2021-12-26 19:14:45 +00:00
|
|
|
let live = details["livestream"]?.boolValue ?? (details["duration"]?.intValue == -1)
|
2021-10-20 22:21:50 +00:00
|
|
|
|
|
|
|
return Video(
|
2021-12-17 16:39:26 +00:00
|
|
|
videoID: extractID(from: content),
|
2021-10-20 22:21:50 +00:00
|
|
|
title: details["title"]!.stringValue,
|
|
|
|
author: author,
|
|
|
|
length: details["duration"]!.doubleValue,
|
2022-03-20 20:30:45 +00:00
|
|
|
published: published!,
|
2021-10-20 22:21:50 +00:00
|
|
|
views: details["views"]!.intValue,
|
2021-12-17 16:39:26 +00:00
|
|
|
description: extractDescription(from: content),
|
2022-04-16 17:50:02 +00:00
|
|
|
channel: Channel(id: channelId, name: author, thumbnailURL: authorThumbnailURL, subscriptionsCount: subscriptionsCount),
|
2021-10-20 22:21:50 +00:00
|
|
|
thumbnails: thumbnails,
|
2021-12-26 19:14:45 +00:00
|
|
|
live: live,
|
2021-10-20 22:21:50 +00:00
|
|
|
likes: details["likes"]?.int,
|
|
|
|
dislikes: details["dislikes"]?.int,
|
2021-11-02 23:02:02 +00:00
|
|
|
streams: extractStreams(from: content),
|
|
|
|
related: extractRelated(from: content)
|
2021-10-20 22:21:50 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private 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-12-17 16:39:26 +00:00
|
|
|
private func extractThumbnailURL(from content: JSON) -> URL? {
|
2021-10-20 22:21:50 +00:00
|
|
|
content.dictionaryValue["thumbnail"]?.url! ?? content.dictionaryValue["thumbnailUrl"]!.url!
|
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private func buildThumbnailURL(from content: JSON, quality: Thumbnail.Quality) -> URL? {
|
2021-10-23 11:51:02 +00:00
|
|
|
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)
|
|
|
|
)!
|
|
|
|
}
|
|
|
|
|
2022-04-10 15:07:10 +00:00
|
|
|
private func extractUserPlaylist(from json: JSON) -> Playlist? {
|
|
|
|
let id = json["id"].stringValue
|
|
|
|
let title = json["name"].stringValue
|
|
|
|
let visibility = Playlist.Visibility.private
|
|
|
|
|
|
|
|
return Playlist(id: id, title: title, visibility: visibility)
|
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private 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-12-17 16:39:26 +00:00
|
|
|
private func extractVideos(from content: JSON) -> [Video] {
|
2021-10-23 11:51:02 +00:00
|
|
|
content.arrayValue.compactMap(extractVideo(from:))
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private 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))
|
|
|
|
}
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
let audioStreams = content
|
|
|
|
.dictionaryValue["audioStreams"]?
|
|
|
|
.arrayValue
|
|
|
|
.filter { $0.dictionaryValue["format"]?.stringValue == "M4A" }
|
|
|
|
.sorted {
|
|
|
|
$0.dictionaryValue["bitrate"]?.intValue ?? 0 > $1.dictionaryValue["bitrate"]?.intValue ?? 0
|
|
|
|
} ?? []
|
|
|
|
|
|
|
|
guard let audioStream = audioStreams.first else {
|
2021-10-16 22:48:58 +00:00
|
|
|
return streams
|
|
|
|
}
|
|
|
|
|
2022-02-16 20:23:11 +00:00
|
|
|
let videoStreams = content.dictionaryValue["videoStreams"]?.arrayValue ?? []
|
2021-10-16 22:48:58 +00:00
|
|
|
|
|
|
|
videoStreams.forEach { videoStream in
|
2022-06-17 10:52:10 +00:00
|
|
|
let videoCodec = videoStream.dictionaryValue["codec"]?.string ?? ""
|
|
|
|
if Self.disallowedVideoCodecs.contains(where: videoCodec.contains) {
|
2022-07-11 13:30:32 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-17 10:52:10 +00:00
|
|
|
let audioAsset = AVURLAsset(url: audioStream.dictionaryValue["url"]!.url!)
|
|
|
|
let videoAsset = AVURLAsset(url: videoStream.dictionaryValue["url"]!.url!)
|
2021-10-16 22:48:58 +00:00
|
|
|
|
|
|
|
let videoOnly = videoStream.dictionaryValue["videoOnly"]?.boolValue ?? true
|
2022-06-17 10:52:10 +00:00
|
|
|
let quality = videoStream.dictionaryValue["quality"]?.string ?? "unknown"
|
|
|
|
let qualityComponents = quality.components(separatedBy: "p")
|
2022-06-17 13:13:56 +00:00
|
|
|
let fps = qualityComponents.count > 1 ? Int(qualityComponents[1]) : 30
|
2022-06-17 10:52:10 +00:00
|
|
|
let resolution = Stream.Resolution.from(resolution: quality, fps: fps)
|
2022-02-16 20:23:11 +00:00
|
|
|
let videoFormat = videoStream.dictionaryValue["format"]?.stringValue
|
2021-10-16 22:48:58 +00:00
|
|
|
|
|
|
|
if videoOnly {
|
|
|
|
streams.append(
|
2022-02-16 20:23:11 +00:00
|
|
|
Stream(audioAsset: audioAsset, videoAsset: videoAsset, resolution: resolution, kind: .adaptive, videoFormat: videoFormat)
|
2021-10-16 22:48:58 +00:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
streams.append(
|
|
|
|
SingleAssetStream(avAsset: videoAsset, resolution: resolution, kind: .stream)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return streams
|
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private func extractRelated(from content: JSON) -> [Video] {
|
2021-11-02 23:02:02 +00:00
|
|
|
content
|
|
|
|
.dictionaryValue["relatedStreams"]?
|
|
|
|
.arrayValue
|
|
|
|
.compactMap(extractVideo(from:)) ?? []
|
|
|
|
}
|
|
|
|
|
2021-12-17 16:39:26 +00:00
|
|
|
private func extractComment(from content: JSON) -> Comment? {
|
2021-12-04 19:35:41 +00:00
|
|
|
let details = content.dictionaryValue
|
|
|
|
let author = details["author"]?.stringValue ?? ""
|
|
|
|
let commentorUrl = details["commentorUrl"]?.stringValue
|
|
|
|
let channelId = commentorUrl?.components(separatedBy: "/")[2] ?? ""
|
|
|
|
return Comment(
|
|
|
|
id: details["commentId"]?.stringValue ?? UUID().uuidString,
|
|
|
|
author: author,
|
|
|
|
authorAvatarURL: details["thumbnail"]?.stringValue ?? "",
|
|
|
|
time: details["commentedTime"]?.stringValue ?? "",
|
|
|
|
pinned: details["pinned"]?.boolValue ?? false,
|
|
|
|
hearted: details["hearted"]?.boolValue ?? false,
|
|
|
|
likeCount: details["likeCount"]?.intValue ?? 0,
|
|
|
|
text: details["commentText"]?.stringValue ?? "",
|
|
|
|
repliesPage: details["repliesPage"]?.stringValue,
|
|
|
|
channel: Channel(id: channelId, name: author)
|
|
|
|
)
|
|
|
|
}
|
2021-10-16 22:48:58 +00:00
|
|
|
}
|