2021-10-21 23:29:10 +00:00
|
|
|
import AVKit
|
2021-07-07 22:39:18 +00:00
|
|
|
import Defaults
|
2021-06-28 10:43:07 +00:00
|
|
|
import Foundation
|
|
|
|
import Siesta
|
|
|
|
import SwiftyJSON
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
final class InvidiousAPI: Service, ObservableObject, VideosAPI {
|
2021-09-25 08:18:22 +00:00
|
|
|
static let basePath = "/api/v1"
|
2021-06-28 10:43:07 +00:00
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
@Published var account: Account!
|
2021-06-28 10:43:07 +00:00
|
|
|
|
2021-10-16 22:48:58 +00:00
|
|
|
@Published var validInstance = true
|
2021-09-29 11:45:00 +00:00
|
|
|
@Published var signedIn = false
|
2021-06-28 10:43:07 +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.isNil else {
|
2021-10-17 21:49:56 +00:00
|
|
|
self.account = .init(name: "Empty")
|
2021-10-16 22:48:58 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
setAccount(account!)
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
func setAccount(_ account: Account) {
|
2021-09-25 08:18:22 +00:00
|
|
|
self.account = account
|
|
|
|
|
|
|
|
validInstance = false
|
|
|
|
signedIn = false
|
|
|
|
|
|
|
|
configure()
|
|
|
|
validate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func validate() {
|
|
|
|
validateInstance()
|
|
|
|
validateSID()
|
|
|
|
}
|
|
|
|
|
|
|
|
func validateInstance() {
|
|
|
|
guard !validInstance else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
home?
|
2021-09-25 08:18:22 +00:00
|
|
|
.load()
|
|
|
|
.onSuccess { _ in
|
|
|
|
self.validInstance = true
|
|
|
|
}
|
|
|
|
.onFailure { _ in
|
|
|
|
self.validInstance = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func validateSID() {
|
|
|
|
guard !signedIn else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
feed?
|
2021-09-25 08:18:22 +00:00
|
|
|
.load()
|
|
|
|
.onSuccess { _ in
|
|
|
|
self.signedIn = true
|
|
|
|
}
|
|
|
|
.onFailure { _ in
|
|
|
|
self.signedIn = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func configure() {
|
2021-06-28 10:43:07 +00:00
|
|
|
configure {
|
2021-10-16 22:48:58 +00:00
|
|
|
if !self.account.sid.isEmpty {
|
|
|
|
$0.headers["Cookie"] = self.cookieHeader
|
|
|
|
}
|
2021-06-28 10:43:07 +00:00
|
|
|
$0.pipeline[.parsing].add(SwiftyJSONTransformer, contentTypes: ["*/json"])
|
|
|
|
}
|
|
|
|
|
|
|
|
configure("**", requestMethods: [.post]) {
|
|
|
|
$0.pipeline[.parsing].removeTransformers()
|
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("popular"), requestMethods: [.get]) { (content: Entity<JSON>) -> [Video] in
|
2021-10-21 23:29:10 +00:00
|
|
|
content.json.arrayValue.map(InvidiousAPI.extractVideo)
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("trending"), requestMethods: [.get]) { (content: Entity<JSON>) -> [Video] in
|
2021-10-21 23:29:10 +00:00
|
|
|
content.json.arrayValue.map(InvidiousAPI.extractVideo)
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
configureTransformer(pathPattern("search"), requestMethods: [.get]) { (content: Entity<JSON>) -> [ContentItem] in
|
|
|
|
content.json.arrayValue.map {
|
|
|
|
let type = $0.dictionaryValue["type"]?.stringValue
|
|
|
|
|
|
|
|
if type == "channel" {
|
|
|
|
return ContentItem(channel: InvidiousAPI.extractChannel(from: $0))
|
|
|
|
} else if type == "playlist" {
|
2021-10-22 23:04:03 +00:00
|
|
|
return ContentItem(playlist: InvidiousAPI.extractChannelPlaylist(from: $0))
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
2021-10-23 11:51:02 +00:00
|
|
|
return ContentItem(video: InvidiousAPI.extractVideo(from: $0))
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("search/suggestions"), requestMethods: [.get]) { (content: Entity<JSON>) -> [String] in
|
2021-09-13 20:41:16 +00:00
|
|
|
if let suggestions = content.json.dictionaryValue["suggestions"] {
|
|
|
|
return suggestions.arrayValue.map(String.init)
|
|
|
|
}
|
|
|
|
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("auth/playlists"), requestMethods: [.get]) { (content: Entity<JSON>) -> [Playlist] in
|
2021-06-28 10:43:07 +00:00
|
|
|
content.json.arrayValue.map(Playlist.init)
|
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("auth/playlists/*"), requestMethods: [.get]) { (content: Entity<JSON>) -> Playlist in
|
2021-08-29 21:36:18 +00:00
|
|
|
Playlist(content.json)
|
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("auth/playlists"), requestMethods: [.post, .patch]) { (content: Entity<Data>) -> Playlist in
|
2021-07-08 15:14:54 +00:00
|
|
|
// hacky, to verify if possible to get it in easier way
|
|
|
|
Playlist(JSON(parseJSON: String(data: content.content, encoding: .utf8)!))
|
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("auth/feed"), requestMethods: [.get]) { (content: Entity<JSON>) -> [Video] in
|
2021-06-28 10:43:07 +00:00
|
|
|
if let feedVideos = content.json.dictionaryValue["videos"] {
|
2021-10-21 23:29:10 +00:00
|
|
|
return feedVideos.arrayValue.map(InvidiousAPI.extractVideo)
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("auth/subscriptions"), requestMethods: [.get]) { (content: Entity<JSON>) -> [Channel] in
|
2021-10-21 23:29:10 +00:00
|
|
|
content.json.arrayValue.map(InvidiousAPI.extractChannel)
|
2021-08-25 22:12:59 +00:00
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("channels/*"), requestMethods: [.get]) { (content: Entity<JSON>) -> Channel in
|
2021-10-21 23:29:10 +00:00
|
|
|
InvidiousAPI.extractChannel(from: content.json)
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("channels/*/latest"), requestMethods: [.get]) { (content: Entity<JSON>) -> [Video] in
|
2021-10-21 23:29:10 +00:00
|
|
|
content.json.arrayValue.map(InvidiousAPI.extractVideo)
|
2021-09-18 20:36:42 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 23:04:03 +00:00
|
|
|
configureTransformer(pathPattern("playlists/*"), requestMethods: [.get]) { (content: Entity<JSON>) -> ChannelPlaylist in
|
|
|
|
InvidiousAPI.extractChannelPlaylist(from: content.json)
|
|
|
|
}
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
configureTransformer(pathPattern("videos/*"), requestMethods: [.get]) { (content: Entity<JSON>) -> Video in
|
2021-10-23 11:51:02 +00:00
|
|
|
InvidiousAPI.extractVideo(from: content.json)
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
private func pathPattern(_ path: String) -> String {
|
2021-09-25 08:18:22 +00:00
|
|
|
"**\(InvidiousAPI.basePath)/\(path)"
|
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
private func basePathAppending(_ path: String) -> String {
|
2021-09-25 08:18:22 +00:00
|
|
|
"\(InvidiousAPI.basePath)/\(path)"
|
|
|
|
}
|
|
|
|
|
|
|
|
private var cookieHeader: String {
|
|
|
|
"SID=\(account.sid)"
|
|
|
|
}
|
2021-06-28 10:43:07 +00:00
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
var popular: Resource? {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: "\(InvidiousAPI.basePath)/popular")
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
func trending(country: Country, category: TrendingCategory?) -> Resource {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: "\(InvidiousAPI.basePath)/trending")
|
2021-10-20 22:21:50 +00:00
|
|
|
.withParam("type", category!.name)
|
2021-06-28 10:43:07 +00:00
|
|
|
.withParam("region", country.rawValue)
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
var home: Resource? {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: "/feed/subscriptions")
|
2021-09-19 17:31:21 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
var feed: Resource? {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: "\(InvidiousAPI.basePath)/auth/feed")
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
var subscriptions: Resource? {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: basePathAppending("auth/subscriptions"))
|
2021-08-25 22:12:59 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
func channelSubscription(_ id: String) -> Resource? {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: basePathAppending("auth/subscriptions")).child(id)
|
2021-08-25 22:12:59 +00:00
|
|
|
}
|
|
|
|
|
2021-08-31 21:17:50 +00:00
|
|
|
func channel(_ id: String) -> Resource {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: basePathAppending("channels/\(id)"))
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 20:36:42 +00:00
|
|
|
func channelVideos(_ id: String) -> Resource {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: basePathAppending("channels/\(id)/latest"))
|
2021-09-18 20:36:42 +00:00
|
|
|
}
|
|
|
|
|
2021-06-28 10:43:07 +00:00
|
|
|
func video(_ id: String) -> Resource {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: basePathAppending("videos/\(id)"))
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
var playlists: Resource? {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: basePathAppending("auth/playlists"))
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
func playlist(_ id: String) -> Resource? {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: basePathAppending("auth/playlists/\(id)"))
|
2021-07-08 17:18:36 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
func playlistVideos(_ id: String) -> Resource? {
|
|
|
|
playlist(id)?.child("videos")
|
2021-07-09 14:53:53 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 22:21:50 +00:00
|
|
|
func playlistVideo(_ playlistID: String, _ videoID: String) -> Resource? {
|
|
|
|
playlist(playlistID)?.child("videos").child(videoID)
|
2021-07-09 14:53:53 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 23:04:03 +00:00
|
|
|
func channelPlaylist(_ id: String) -> Resource? {
|
|
|
|
resource(baseURL: account.url, path: basePathAppending("playlists/\(id)"))
|
|
|
|
}
|
|
|
|
|
2021-07-07 22:39:18 +00:00
|
|
|
func search(_ query: SearchQuery) -> Resource {
|
2021-09-25 08:18:22 +00:00
|
|
|
var resource = resource(baseURL: account.url, path: basePathAppending("search"))
|
2021-07-07 22:39:18 +00:00
|
|
|
.withParam("q", searchQuery(query.query))
|
|
|
|
.withParam("sort_by", query.sortBy.parameter)
|
2021-10-21 23:29:10 +00:00
|
|
|
.withParam("type", "all")
|
2021-07-07 22:39:18 +00:00
|
|
|
|
2021-09-26 17:40:25 +00:00
|
|
|
if let date = query.date, date != .any {
|
|
|
|
resource = resource.withParam("date", date.rawValue)
|
2021-07-07 22:39:18 +00:00
|
|
|
}
|
|
|
|
|
2021-09-26 17:40:25 +00:00
|
|
|
if let duration = query.duration, duration != .any {
|
|
|
|
resource = resource.withParam("duration", duration.rawValue)
|
2021-07-07 22:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return resource
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:16 +00:00
|
|
|
func searchSuggestions(query: String) -> Resource {
|
2021-09-25 08:18:22 +00:00
|
|
|
resource(baseURL: account.url, path: basePathAppending("search/suggestions"))
|
2021-09-13 20:41:16 +00:00
|
|
|
.withParam("q", query.lowercased())
|
|
|
|
}
|
|
|
|
|
2021-06-28 10:43:07 +00:00
|
|
|
private func searchQuery(_ query: String) -> String {
|
|
|
|
var searchQuery = query
|
|
|
|
|
|
|
|
let url = URLComponents(string: query)
|
|
|
|
|
|
|
|
if url != nil,
|
|
|
|
url!.host == "youtu.be"
|
|
|
|
{
|
|
|
|
searchQuery = url!.path.replacingOccurrences(of: "/", with: "")
|
|
|
|
}
|
|
|
|
|
|
|
|
let queryItem = url?.queryItems?.first { item in item.name == "v" }
|
|
|
|
if let id = queryItem?.value {
|
|
|
|
searchQuery = id
|
|
|
|
}
|
|
|
|
|
2021-07-08 15:14:54 +00:00
|
|
|
return searchQuery
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|
2021-10-21 23:29:10 +00:00
|
|
|
|
2021-10-22 15:00:09 +00:00
|
|
|
static func proxiedAsset(instance: Instance, asset: AVURLAsset) -> AVURLAsset? {
|
2021-10-27 21:11:38 +00:00
|
|
|
guard let instanceURLComponents = URLComponents(string: instance.apiURL),
|
2021-10-22 15:00:09 +00:00
|
|
|
var urlComponents = URLComponents(url: asset.url, resolvingAgainstBaseURL: false) else { return nil }
|
2021-10-21 23:29:10 +00:00
|
|
|
|
|
|
|
urlComponents.scheme = instanceURLComponents.scheme
|
|
|
|
urlComponents.host = instanceURLComponents.host
|
|
|
|
|
2021-10-22 15:00:09 +00:00
|
|
|
guard let url = urlComponents.url else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return AVURLAsset(url: url)
|
2021-10-21 23:29:10 +00:00
|
|
|
}
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
static func extractVideo(from json: JSON) -> Video {
|
2021-10-21 23:29:10 +00:00
|
|
|
let indexID: String?
|
|
|
|
var id: Video.ID
|
|
|
|
var publishedAt: Date?
|
|
|
|
|
|
|
|
if let publishedInterval = json["published"].double {
|
|
|
|
publishedAt = Date(timeIntervalSince1970: publishedInterval)
|
|
|
|
}
|
|
|
|
|
|
|
|
let videoID = json["videoId"].stringValue
|
|
|
|
|
|
|
|
if let index = json["indexId"].string {
|
|
|
|
indexID = index
|
|
|
|
id = videoID + index
|
|
|
|
} else {
|
|
|
|
indexID = nil
|
|
|
|
id = videoID
|
|
|
|
}
|
|
|
|
|
|
|
|
return Video(
|
|
|
|
id: id,
|
|
|
|
videoID: videoID,
|
|
|
|
title: json["title"].stringValue,
|
|
|
|
author: json["author"].stringValue,
|
|
|
|
length: json["lengthSeconds"].doubleValue,
|
|
|
|
published: json["publishedText"].stringValue,
|
|
|
|
views: json["viewCount"].intValue,
|
|
|
|
description: json["description"].stringValue,
|
|
|
|
genre: json["genre"].stringValue,
|
|
|
|
channel: extractChannel(from: json),
|
|
|
|
thumbnails: extractThumbnails(from: json),
|
|
|
|
indexID: indexID,
|
|
|
|
live: json["liveNow"].boolValue,
|
|
|
|
upcoming: json["isUpcoming"].boolValue,
|
|
|
|
publishedAt: publishedAt,
|
|
|
|
likes: json["likeCount"].int,
|
|
|
|
dislikes: json["dislikeCount"].int,
|
|
|
|
keywords: json["keywords"].arrayValue.map { $0.stringValue },
|
|
|
|
streams: extractFormatStreams(from: json["formatStreams"].arrayValue) +
|
|
|
|
extractAdaptiveFormats(from: json["adaptiveFormats"].arrayValue)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
static func extractChannel(from json: JSON) -> Channel {
|
|
|
|
let thumbnailURL = "https:\(json["authorThumbnails"].arrayValue.first?.dictionaryValue["url"]?.stringValue ?? "")"
|
|
|
|
|
|
|
|
return Channel(
|
|
|
|
id: json["authorId"].stringValue,
|
|
|
|
name: json["author"].stringValue,
|
|
|
|
thumbnailURL: URL(string: thumbnailURL),
|
|
|
|
subscriptionsCount: json["subCount"].int,
|
|
|
|
subscriptionsText: json["subCountText"].string,
|
|
|
|
videos: json.dictionaryValue["latestVideos"]?.arrayValue.map(InvidiousAPI.extractVideo) ?? []
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-22 23:04:03 +00:00
|
|
|
static func extractChannelPlaylist(from json: JSON) -> ChannelPlaylist {
|
|
|
|
let details = json.dictionaryValue
|
|
|
|
return ChannelPlaylist(
|
|
|
|
id: details["playlistId"]!.stringValue,
|
|
|
|
title: details["title"]!.stringValue,
|
|
|
|
thumbnailURL: details["playlistThumbnail"]?.url,
|
|
|
|
channel: extractChannel(from: json),
|
|
|
|
videos: details["videos"]?.arrayValue.compactMap(InvidiousAPI.extractVideo) ?? []
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-21 23:29:10 +00:00
|
|
|
private static func extractThumbnails(from details: JSON) -> [Thumbnail] {
|
|
|
|
details["videoThumbnails"].arrayValue.map { json in
|
|
|
|
Thumbnail(url: json["url"].url!, quality: .init(rawValue: json["quality"].string!)!)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static func extractFormatStreams(from streams: [JSON]) -> [Stream] {
|
|
|
|
streams.map {
|
|
|
|
SingleAssetStream(
|
|
|
|
avAsset: AVURLAsset(url: $0["url"].url!),
|
|
|
|
resolution: Stream.Resolution.from(resolution: $0["resolution"].stringValue),
|
|
|
|
kind: .stream,
|
|
|
|
encoding: $0["encoding"].stringValue
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static func extractAdaptiveFormats(from streams: [JSON]) -> [Stream] {
|
|
|
|
let audioAssetURL = streams.first { $0["type"].stringValue.starts(with: "audio/mp4") }
|
|
|
|
guard audioAssetURL != nil else {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
|
|
|
let videoAssetsURLs = streams.filter { $0["type"].stringValue.starts(with: "video/mp4") && $0["encoding"].stringValue == "h264" }
|
|
|
|
|
|
|
|
return videoAssetsURLs.map {
|
|
|
|
Stream(
|
|
|
|
audioAsset: AVURLAsset(url: audioAssetURL!["url"].url!),
|
|
|
|
videoAsset: AVURLAsset(url: $0["url"].url!),
|
|
|
|
resolution: Stream.Resolution.from(resolution: $0["resolution"].stringValue),
|
|
|
|
kind: .adaptive,
|
|
|
|
encoding: $0["encoding"].stringValue
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2021-06-28 10:43:07 +00:00
|
|
|
}
|