yattee/Model/Applications/PipedAPI.swift

482 lines
16 KiB
Swift
Raw Normal View History

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 {
static var authorizedEndpoints = ["subscriptions", "subscribe", "unsubscribe", "user/playlists"]
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() {
invalidateConfiguration()
2021-10-16 22:48:58 +00:00
configure {
$0.pipeline[.parsing].add(SwiftyJSONTransformer, contentTypes: ["*/json"])
}
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
}
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
}
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)
}
configureTransformer(pathPattern("subscriptions")) { (content: Entity<JSON>) -> [Channel] in
2021-12-17 16:39:26 +00:00
content.json.arrayValue.map { self.extractChannel(from: $0)! }
}
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-12-04 19:35:41 +00:00
configureTransformer(pathPattern("comments/*")) { (content: Entity<JSON>) -> CommentsPage in
let details = content.json.dictionaryValue
2021-12-17 16:39:26 +00:00
let comments = details["comments"]?.arrayValue.map { self.extractComment(from: $0)! } ?? []
let nextPage = details["nextpage"]?.stringValue
let disabled = details["disabled"]?.boolValue ?? false
2021-12-04 19:35:41 +00:00
return CommentsPage(comments: comments, nextPage: nextPage, disabled: disabled)
2021-12-04 19:35:41 +00:00
}
configureTransformer(pathPattern("user/playlists")) { (content: Entity<JSON>) -> [Playlist] in
content.json.arrayValue.map { self.extractUserPlaylist(from: $0)! }
}
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-12-04 19:35:41 +00:00
func updateToken() {
guard !account.anonymous else {
return
}
account.token = nil
2021-12-04 19:35:41 +00:00
login.request(
.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
}
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)")
}
func trending(country: Country, category _: TrendingCategory? = nil) -> Resource {
2021-10-27 21:11:38 +00:00
resource(baseURL: account.instance.apiURL, path: "trending")
.withParam("region", country.rawValue)
}
func search(_ query: SearchQuery, page: String?) -> Resource {
let path = page.isNil ? "search" : "nextpage/search"
let resource = resource(baseURL: account.instance.apiURL, path: path)
.withParam("q", query.query)
.withParam("filter", "all")
if page.isNil {
return resource
}
return resource.withParam("nextpage", page)
}
func searchSuggestions(query: String) -> Resource {
2021-10-27 21:11:38 +00:00
resource(baseURL: account.instance.apiURL, path: "suggestions")
.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)")
}
var signedIn: Bool {
!account.anonymous && !(account.token?.isEmpty ?? true)
}
var subscriptions: Resource? {
resource(baseURL: account.instance.apiURL, path: "subscriptions")
}
var feed: Resource? {
resource(baseURL: account.instance.apiURL, path: "feed")
.withParam("authToken", account.token)
}
var home: Resource? { nil }
var popular: Resource? { nil }
var playlists: Resource? {
resource(baseURL: account.instance.apiURL, path: "user/playlists")
}
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() }
}
func playlist(_ id: String) -> Resource? {
channelPlaylist(id)
}
func playlistVideo(_: String, _: String) -> Resource? { nil }
func playlistVideos(_: String) -> Resource? { nil }
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)
}
private func pathPattern(_ path: String) -> String {
"**\(path)"
}
2021-12-17 16:39:26 +00:00
private func extractContentItem(from content: JSON) -> ContentItem? {
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) {
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)
}
case .channel:
2021-12-17 16:39:26 +00:00
if let channel = extractChannel(from: content) {
return ContentItem(channel: channel)
}
2022-03-27 10:49:57 +00:00
default:
return nil
}
return nil
}
2021-12-17 16:39:26 +00:00
private func extractContentItems(from content: JSON) -> [ContentItem] {
content.arrayValue.compactMap { extractContentItem(from: $0) }
}
2021-12-17 16:39:26 +00:00
private func extractChannel(from content: JSON) -> Channel? {
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
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-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
return Channel(
id: id,
2021-12-17 16:39:26 +00:00
name: name,
thumbnailURL: thumbnailURL,
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,
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-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
let uploaded = details["uploaded"]?.doubleValue
var published = uploaded.isNil ? nil : (uploaded! / 1000).formattedAsRelativeTime()
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,
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),
channel: Channel(id: channelId, name: author, thumbnailURL: authorThumbnailURL),
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)
)!
}
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))
}
2021-12-17 16:39:26 +00:00
guard let audioStream = compatibleAudioStreams(from: content).first else {
2021-10-16 22:48:58 +00:00
return streams
}
2021-12-17 16:39:26 +00:00
let videoStreams = 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-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 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-12-17 16:39:26 +00:00
private func compatibleVideoStream(from content: JSON) -> [JSON] {
2021-10-16 22:48:58 +00:00
content
.dictionaryValue["videoStreams"]?
.arrayValue
.filter { $0.dictionaryValue["format"] == "MPEG_4" } ?? []
}
2021-12-04 19:35:41 +00:00
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
}