2021-06-27 01:29:55 +02:00
|
|
|
import Defaults
|
2021-10-19 23:27:04 +02:00
|
|
|
import Foundation
|
2022-06-18 14:39:49 +02:00
|
|
|
import SwiftUI
|
2022-01-02 20:41:04 +01:00
|
|
|
#if os(iOS)
|
|
|
|
import UIKit
|
|
|
|
#endif
|
2021-06-27 01:29:55 +02:00
|
|
|
|
2021-11-04 00:14:09 +01:00
|
|
|
extension Defaults.Keys {
|
2022-06-07 23:22:50 +02:00
|
|
|
#if os(tvOS)
|
|
|
|
static let defaultForPauseOnHidingPlayer = true
|
|
|
|
#else
|
|
|
|
static let defaultForPauseOnHidingPlayer = false
|
|
|
|
#endif
|
|
|
|
|
2022-06-18 14:39:49 +02:00
|
|
|
#if os(macOS)
|
|
|
|
static let defaultForPlayerDetailsPageButtonLabelStyle = PlayerDetailsPageButtonLabelStyle.iconAndText
|
|
|
|
#else
|
|
|
|
static let defaultForPlayerDetailsPageButtonLabelStyle = UIDevice.current.userInterfaceIdiom == .phone ? PlayerDetailsPageButtonLabelStyle.iconOnly : .iconAndText
|
|
|
|
#endif
|
|
|
|
|
2021-12-04 20:35:41 +01:00
|
|
|
static let kavinPipedInstanceID = "kavin-piped"
|
2021-10-17 00:48:58 +02:00
|
|
|
static let instances = Key<[Instance]>("instances", default: [
|
2021-10-27 23:11:38 +02:00
|
|
|
.init(
|
|
|
|
app: .piped,
|
2021-12-04 20:35:41 +01:00
|
|
|
id: kavinPipedInstanceID,
|
2021-11-11 22:07:13 +01:00
|
|
|
name: "Kavin",
|
2021-10-27 23:11:38 +02:00
|
|
|
apiURL: "https://pipedapi.kavin.rocks",
|
|
|
|
frontendURL: "https://piped.kavin.rocks"
|
2021-10-24 11:16:04 +02:00
|
|
|
)
|
2021-10-17 00:48:58 +02:00
|
|
|
])
|
2021-11-11 22:07:13 +01:00
|
|
|
static let accounts = Key<[Account]>("accounts", default: [])
|
2021-10-21 00:21:50 +02:00
|
|
|
static let lastAccountID = Key<Account.ID?>("lastAccountID")
|
2021-10-19 23:27:04 +02:00
|
|
|
static let lastInstanceID = Key<Instance.ID?>("lastInstanceID")
|
2021-10-25 23:29:06 +02:00
|
|
|
static let lastUsedPlaylistID = Key<Playlist.ID?>("lastPlaylistID")
|
2021-09-25 10:18:22 +02:00
|
|
|
|
2021-10-23 14:12:53 +02:00
|
|
|
static let sponsorBlockInstance = Key<String>("sponsorBlockInstance", default: "https://sponsor.ajay.app")
|
2021-10-23 18:49:45 +02:00
|
|
|
static let sponsorBlockCategories = Key<Set<String>>("sponsorBlockCategories", default: Set(SponsorBlockAPI.categories))
|
2021-10-23 14:12:53 +02:00
|
|
|
|
2022-03-20 21:31:19 +01:00
|
|
|
static let enableReturnYouTubeDislike = Key<Bool>("enableReturnYouTubeDislike", default: false)
|
|
|
|
|
2021-11-01 22:56:18 +01:00
|
|
|
static let favorites = Key<[FavoriteItem]>("favorites", default: [
|
2022-01-05 00:18:01 +01:00
|
|
|
.init(section: .channel("UCE_M8A5yxnLfW0KghEeajjw", "Apple"))
|
2021-11-01 22:56:18 +01:00
|
|
|
])
|
|
|
|
|
2022-01-02 20:34:50 +01:00
|
|
|
#if !os(tvOS)
|
|
|
|
static let accountPickerDisplaysUsername = Key<Bool>("accountPickerDisplaysUsername", default: false)
|
|
|
|
#endif
|
2022-01-02 20:41:04 +01:00
|
|
|
#if os(iOS)
|
|
|
|
static let lockPortraitWhenBrowsing = Key<Bool>("lockPortraitWhenBrowsing", default: UIDevice.current.userInterfaceIdiom == .phone)
|
|
|
|
#endif
|
2021-11-05 00:25:51 +01:00
|
|
|
static let channelOnThumbnail = Key<Bool>("channelOnThumbnail", default: true)
|
|
|
|
static let timeOnThumbnail = Key<Bool>("timeOnThumbnail", default: true)
|
2022-01-06 15:56:59 +01:00
|
|
|
static let roundedThumbnails = Key<Bool>("roundedThumbnails", default: true)
|
2022-06-26 14:25:54 +02:00
|
|
|
static let thumbnailsQuality = Key<ThumbnailsQuality>("thumbnailsQuality", default: .highest)
|
2021-11-05 00:25:51 +01:00
|
|
|
|
2022-02-16 21:23:11 +01:00
|
|
|
static let activeBackend = Key<PlayerBackendType>("activeBackend", default: .mpv)
|
2021-11-05 20:35:27 +01:00
|
|
|
static let quality = Key<ResolutionSetting>("quality", default: .best)
|
2021-11-04 00:00:17 +01:00
|
|
|
static let playerSidebar = Key<PlayerSidebarSetting>("playerSidebar", default: PlayerSidebarSetting.defaultValue)
|
2021-11-04 00:40:01 +01:00
|
|
|
static let playerInstanceID = Key<Instance.ID?>("playerInstance")
|
2021-11-04 00:14:09 +01:00
|
|
|
static let showKeywords = Key<Bool>("showKeywords", default: false)
|
2022-01-06 15:56:59 +01:00
|
|
|
static let showHistoryInPlayer = Key<Bool>("showHistoryInPlayer", default: false)
|
2021-12-04 20:35:41 +01:00
|
|
|
static let commentsInstanceID = Key<Instance.ID?>("commentsInstance", default: kavinPipedInstanceID)
|
2021-12-06 19:11:19 +01:00
|
|
|
#if !os(tvOS)
|
|
|
|
static let commentsPlacement = Key<CommentsPlacement>("commentsPlacement", default: .separate)
|
|
|
|
#endif
|
2022-06-07 23:22:50 +02:00
|
|
|
static let pauseOnHidingPlayer = Key<Bool>("pauseOnHidingPlayer", default: defaultForPauseOnHidingPlayer)
|
2022-06-25 15:14:16 +02:00
|
|
|
static let closeLastItemOnPlaybackEnd = Key<Bool>("closeLastItemOnPlaybackEnd", default: false)
|
2021-12-19 18:17:04 +01:00
|
|
|
|
|
|
|
static let closePiPOnNavigation = Key<Bool>("closePiPOnNavigation", default: false)
|
|
|
|
static let closePiPOnOpeningPlayer = Key<Bool>("closePiPOnOpeningPlayer", default: false)
|
|
|
|
#if !os(macOS)
|
|
|
|
static let closePiPAndOpenPlayerOnEnteringForeground = Key<Bool>("closePiPAndOpenPlayerOnEnteringForeground", default: false)
|
|
|
|
#endif
|
2021-09-19 13:06:54 +02:00
|
|
|
|
|
|
|
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
|
2021-09-28 20:06:05 +02:00
|
|
|
|
2021-10-24 20:01:08 +02:00
|
|
|
static let queue = Key<[PlayerQueueItem]>("queue", default: [])
|
2022-01-09 16:05:05 +01:00
|
|
|
static let lastPlayed = Key<PlayerQueueItem?>("lastPlayed")
|
2021-10-24 20:01:08 +02:00
|
|
|
|
2021-11-05 20:57:22 +01:00
|
|
|
static let saveHistory = Key<Bool>("saveHistory", default: true)
|
2021-12-26 22:14:46 +01:00
|
|
|
static let showWatchingProgress = Key<Bool>("showWatchingProgress", default: true)
|
|
|
|
static let watchedThreshold = Key<Int>("watchedThreshold", default: 90)
|
|
|
|
static let watchedVideoStyle = Key<WatchedVideoStyle>("watchedVideoStyle", default: .badge)
|
2022-01-02 20:39:19 +01:00
|
|
|
static let watchedVideoBadgeColor = Key<WatchedVideoBadgeColor>("WatchedVideoBadgeColor", default: .red)
|
2021-12-26 22:14:46 +01:00
|
|
|
static let watchedVideoPlayNowBehavior = Key<WatchedVideoPlayNowBehavior>("watchedVideoPlayNowBehavior", default: .continue)
|
2022-01-02 20:39:19 +01:00
|
|
|
static let resetWatchedStatusOnPlaying = Key<Bool>("resetWatchedStatusOnPlaying", default: false)
|
2021-12-01 12:22:19 +01:00
|
|
|
static let saveRecents = Key<Bool>("saveRecents", default: true)
|
2021-11-05 20:57:22 +01:00
|
|
|
|
2021-09-28 20:06:05 +02:00
|
|
|
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
|
|
|
|
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
|
2021-11-07 21:51:22 +01:00
|
|
|
|
2021-12-01 12:22:19 +01:00
|
|
|
static let visibleSections = Key<Set<VisibleSection>>("visibleSections", default: [.favorites, .subscriptions, .trending, .playlists])
|
2021-12-08 00:09:49 +01:00
|
|
|
|
2022-01-02 20:43:30 +01:00
|
|
|
#if os(iOS)
|
|
|
|
static let honorSystemOrientationLock = Key<Bool>("honorSystemOrientationLock", default: true)
|
|
|
|
static let enterFullscreenInLandscape = Key<Bool>("enterFullscreenInLandscape", default: UIDevice.current.userInterfaceIdiom == .phone)
|
2022-05-29 15:34:40 +02:00
|
|
|
static let lockOrientationInFullScreen = Key<Bool>("lockOrientationInFullScreen", default: false)
|
2022-01-02 20:43:30 +01:00
|
|
|
#endif
|
2022-06-17 12:27:01 +02:00
|
|
|
|
|
|
|
static let showMPVPlaybackStats = Key<Bool>("showMPVPlaybackStats", default: false)
|
2022-06-18 14:39:49 +02:00
|
|
|
|
|
|
|
static let playerDetailsPageButtonLabelStyle = Key<PlayerDetailsPageButtonLabelStyle>("playerDetailsPageButtonLabelStyle", default: defaultForPlayerDetailsPageButtonLabelStyle)
|
2021-09-19 13:06:54 +02:00
|
|
|
}
|
2021-11-05 20:35:27 +01:00
|
|
|
|
|
|
|
enum ResolutionSetting: String, CaseIterable, Defaults.Serializable {
|
2022-03-27 20:59:22 +02:00
|
|
|
case best
|
2022-04-09 23:19:00 +02:00
|
|
|
case hd2160p60
|
2022-06-17 12:52:10 +02:00
|
|
|
case hd2160p30
|
2022-03-27 20:59:22 +02:00
|
|
|
case hd1440p60
|
2022-06-17 12:52:10 +02:00
|
|
|
case hd1440p30
|
2022-03-27 20:59:22 +02:00
|
|
|
case hd1080p60
|
2022-06-17 12:52:10 +02:00
|
|
|
case hd1080p30
|
2022-03-27 20:59:22 +02:00
|
|
|
case hd720p60
|
2022-06-17 12:52:10 +02:00
|
|
|
case hd720p30
|
|
|
|
case sd480p30
|
|
|
|
case sd360p30
|
|
|
|
case sd240p30
|
|
|
|
case sd144p30
|
2021-11-05 20:35:27 +01:00
|
|
|
|
|
|
|
var value: Stream.Resolution {
|
|
|
|
switch self {
|
|
|
|
case .best:
|
2022-06-17 12:52:10 +02:00
|
|
|
return .hd2160p60
|
2021-11-05 20:35:27 +01:00
|
|
|
default:
|
|
|
|
return Stream.Resolution(rawValue: rawValue)!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var description: String {
|
|
|
|
switch self {
|
|
|
|
case .best:
|
2022-01-06 15:56:59 +01:00
|
|
|
return "Best available quality"
|
2022-04-16 22:50:37 +02:00
|
|
|
case .hd2160p60:
|
2022-03-27 20:59:22 +02:00
|
|
|
return "4K, 60fps"
|
2022-06-17 12:52:10 +02:00
|
|
|
case .hd2160p30:
|
2022-04-16 22:50:37 +02:00
|
|
|
return "4K"
|
2021-11-05 20:35:27 +01:00
|
|
|
default:
|
|
|
|
return value.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum PlayerSidebarSetting: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case always, whenFits, never
|
|
|
|
|
|
|
|
static var defaultValue: Self {
|
|
|
|
#if os(macOS)
|
|
|
|
.always
|
|
|
|
#else
|
|
|
|
.whenFits
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2021-11-07 21:51:22 +01:00
|
|
|
|
2021-12-01 12:22:19 +01:00
|
|
|
enum VisibleSection: String, CaseIterable, Comparable, Defaults.Serializable {
|
|
|
|
case favorites, subscriptions, popular, trending, playlists
|
|
|
|
|
|
|
|
var title: String {
|
|
|
|
rawValue.localizedCapitalized
|
|
|
|
}
|
|
|
|
|
|
|
|
var tabSelection: TabSelection {
|
|
|
|
switch self {
|
|
|
|
case .favorites:
|
|
|
|
return TabSelection.favorites
|
|
|
|
case .subscriptions:
|
|
|
|
return TabSelection.subscriptions
|
|
|
|
case .popular:
|
|
|
|
return TabSelection.popular
|
|
|
|
case .trending:
|
|
|
|
return TabSelection.trending
|
|
|
|
case .playlists:
|
|
|
|
return TabSelection.playlists
|
|
|
|
}
|
2021-11-07 21:51:22 +01:00
|
|
|
}
|
2021-12-01 12:22:19 +01:00
|
|
|
|
|
|
|
private var sortOrder: Int {
|
|
|
|
switch self {
|
|
|
|
case .favorites:
|
|
|
|
return 0
|
|
|
|
case .subscriptions:
|
|
|
|
return 1
|
|
|
|
case .popular:
|
|
|
|
return 2
|
|
|
|
case .trending:
|
|
|
|
return 3
|
|
|
|
case .playlists:
|
|
|
|
return 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static func < (lhs: Self, rhs: Self) -> Bool {
|
|
|
|
lhs.sortOrder < rhs.sortOrder
|
|
|
|
}
|
|
|
|
}
|
2021-12-06 19:11:19 +01:00
|
|
|
|
2021-12-26 22:14:46 +01:00
|
|
|
enum WatchedVideoStyle: String, Defaults.Serializable {
|
2022-01-02 20:39:19 +01:00
|
|
|
case nothing, badge, decreasedOpacity, both
|
|
|
|
}
|
|
|
|
|
|
|
|
enum WatchedVideoBadgeColor: String, Defaults.Serializable {
|
|
|
|
case colorSchemeBased, red, blue
|
2021-12-26 22:14:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
enum WatchedVideoPlayNowBehavior: String, Defaults.Serializable {
|
|
|
|
case `continue`, restart
|
|
|
|
}
|
|
|
|
|
2021-12-06 19:11:19 +01:00
|
|
|
#if !os(tvOS)
|
|
|
|
enum CommentsPlacement: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case info, separate
|
|
|
|
}
|
|
|
|
#endif
|
2022-06-18 14:39:49 +02:00
|
|
|
|
|
|
|
enum PlayerDetailsPageButtonLabelStyle: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case iconOnly, iconAndText
|
|
|
|
|
|
|
|
var text: Bool {
|
|
|
|
self == .iconAndText
|
|
|
|
}
|
|
|
|
}
|
2022-06-26 14:25:54 +02:00
|
|
|
|
|
|
|
enum ThumbnailsQuality: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case highest, medium, low
|
|
|
|
}
|