1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Model/Player/PlayerStreams.swift

88 lines
2.7 KiB
Swift
Raw Normal View History

2021-10-17 04:18:58 +05:30
import Foundation
import Siesta
2021-10-19 03:23:02 +05:30
import SwiftUI
2021-10-17 04:18:58 +05:30
extension PlayerModel {
var isLoadingAvailableStreams: Bool {
streamSelection.isNil || availableStreams.isEmpty
}
var isLoadingStream: Bool {
!stream.isNil && stream != streamSelection
}
2021-10-18 03:19:56 +05:30
var availableStreamsSorted: [Stream] {
availableStreams.sorted(by: streamsSorter)
}
2021-10-17 04:18:58 +05:30
func loadAvailableStreams(
_ video: Video,
completionHandler: @escaping ([Stream]) -> Void = { _ in }
) {
availableStreams = []
var instancesWithLoadedStreams = [Instance]()
2021-11-09 04:44:28 +05:30
InstancesModel.all.forEach { instance in
2021-10-21 03:51:50 +05:30
fetchStreams(instance.anonymous.video(video.videoID), instance: instance, video: video) { _ in
self.completeIfAllInstancesLoaded(
instance: instance,
streams: self.availableStreams,
instancesWithLoadedStreams: &instancesWithLoadedStreams,
completionHandler: completionHandler
)
2021-10-17 04:18:58 +05:30
}
}
}
2021-10-21 03:51:50 +05:30
private func fetchStreams(
_ resource: Resource,
instance: Instance,
2021-10-17 04:18:58 +05:30
video: Video,
onCompletion: @escaping (ResponseInfo) -> Void = { _ in }
) {
2021-10-21 03:51:50 +05:30
resource
2021-10-17 04:18:58 +05:30
.load()
.onSuccess { response in
if let video: Video = response.typedContent() {
2021-10-21 03:51:50 +05:30
self.availableStreams += self.streamsWithInstance(instance: instance, streams: video.streams)
2021-10-17 04:18:58 +05:30
}
}
.onCompletion(onCompletion)
}
private func completeIfAllInstancesLoaded(
instance: Instance,
streams: [Stream],
instancesWithLoadedStreams: inout [Instance],
completionHandler: @escaping ([Stream]) -> Void
) {
instancesWithLoadedStreams.append(instance)
2021-10-23 22:19:45 +05:30
rebuildTVMenu()
2021-10-17 04:18:58 +05:30
2021-11-09 04:44:28 +05:30
if InstancesModel.all.count == instancesWithLoadedStreams.count {
2021-10-17 04:18:58 +05:30
completionHandler(streams.sorted { $0.kind < $1.kind })
}
}
func streamsWithInstance(instance: Instance, streams: [Stream]) -> [Stream] {
streams.map { stream in
stream.instance = instance
if instance.app == .invidious {
2021-10-22 20:30:09 +05:30
stream.audioAsset = InvidiousAPI.proxiedAsset(instance: instance, asset: stream.audioAsset)
stream.videoAsset = InvidiousAPI.proxiedAsset(instance: instance, asset: stream.videoAsset)
}
2021-10-22 20:30:09 +05:30
2021-10-17 04:18:58 +05:30
return stream
}
}
2021-10-18 03:19:56 +05:30
func streamsSorter(_ lhs: Stream, _ rhs: Stream) -> Bool {
if lhs.resolution.isNil || rhs.resolution.isNil {
return lhs.kind < rhs.kind
}
return lhs.kind == rhs.kind ? (lhs.resolution.height > rhs.resolution.height) : (lhs.kind < rhs.kind)
2021-10-18 03:19:56 +05:30
}
2021-10-17 04:18:58 +05:30
}