2021-06-26 23:29:55 +00:00
|
|
|
import Defaults
|
2021-10-19 21:27:04 +00:00
|
|
|
import Foundation
|
2021-06-26 23:29:55 +00:00
|
|
|
|
2021-11-03 23:14:09 +00:00
|
|
|
extension Defaults.Keys {
|
2021-10-19 21:27:04 +00:00
|
|
|
static let invidiousInstanceID = "default-invidious-instance"
|
|
|
|
static let pipedInstanceID = "default-piped-instance"
|
2021-10-24 09:16:04 +00:00
|
|
|
static let privateAccountID = "default-private-invidious-account"
|
2021-10-19 21:27:04 +00:00
|
|
|
|
2021-10-16 22:48:58 +00:00
|
|
|
static let instances = Key<[Instance]>("instances", default: [
|
2021-10-27 21:11:38 +00:00
|
|
|
.init(
|
|
|
|
app: .piped,
|
|
|
|
id: pipedInstanceID,
|
|
|
|
name: "Public",
|
|
|
|
apiURL: "https://pipedapi.kavin.rocks",
|
|
|
|
frontendURL: "https://piped.kavin.rocks"
|
|
|
|
),
|
|
|
|
.init(app: .invidious,
|
|
|
|
id: invidiousInstanceID,
|
|
|
|
name: "Private",
|
|
|
|
apiURL: "https://invidious.home.arekf.net")
|
2021-10-19 21:27:04 +00:00
|
|
|
])
|
2021-10-20 22:21:50 +00:00
|
|
|
static let accounts = Key<[Account]>("accounts", default: [
|
2021-10-24 09:16:04 +00:00
|
|
|
.init(
|
|
|
|
id: privateAccountID,
|
|
|
|
instanceID: invidiousInstanceID,
|
|
|
|
name: "arekf",
|
|
|
|
url: "https://invidious.home.arekf.net",
|
|
|
|
sid: "ki55SJbaQmm0bOxUWctGAQLYPQRgk-CXDPw5Dp4oBmI="
|
|
|
|
)
|
2021-10-16 22:48:58 +00:00
|
|
|
])
|
2021-10-20 22:21:50 +00:00
|
|
|
static let lastAccountID = Key<Account.ID?>("lastAccountID")
|
2021-10-19 21:27:04 +00:00
|
|
|
static let lastInstanceID = Key<Instance.ID?>("lastInstanceID")
|
2021-10-25 21:29:06 +00:00
|
|
|
static let lastUsedPlaylistID = Key<Playlist.ID?>("lastPlaylistID")
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-10-23 12:12:53 +00:00
|
|
|
static let sponsorBlockInstance = Key<String>("sponsorBlockInstance", default: "https://sponsor.ajay.app")
|
2021-10-23 16:49:45 +00:00
|
|
|
static let sponsorBlockCategories = Key<Set<String>>("sponsorBlockCategories", default: Set(SponsorBlockAPI.categories))
|
2021-10-23 12:12:53 +00:00
|
|
|
|
2021-11-01 21:56:18 +00:00
|
|
|
static let favorites = Key<[FavoriteItem]>("favorites", default: [
|
2021-11-09 17:43:15 +00:00
|
|
|
.init(section: .trending("US", nil)),
|
|
|
|
.init(section: .searchQuery("World Discoveries", "", "", "")),
|
|
|
|
.init(section: .searchQuery("Full Body Workout", "", "", "")),
|
|
|
|
.init(section: .searchQuery("Apple Pie Recipes", "", "", ""))
|
2021-11-01 21:56:18 +00:00
|
|
|
])
|
|
|
|
|
2021-11-04 23:25:51 +00:00
|
|
|
static let channelOnThumbnail = Key<Bool>("channelOnThumbnail", default: true)
|
|
|
|
static let timeOnThumbnail = Key<Bool>("timeOnThumbnail", default: true)
|
|
|
|
|
2021-11-05 19:35:27 +00:00
|
|
|
static let quality = Key<ResolutionSetting>("quality", default: .best)
|
2021-11-03 23:00:17 +00:00
|
|
|
static let playerSidebar = Key<PlayerSidebarSetting>("playerSidebar", default: PlayerSidebarSetting.defaultValue)
|
2021-11-03 23:40:01 +00:00
|
|
|
static let playerInstanceID = Key<Instance.ID?>("playerInstance")
|
2021-11-03 23:14:09 +00:00
|
|
|
static let showKeywords = Key<Bool>("showKeywords", default: false)
|
2021-09-19 11:06:54 +00:00
|
|
|
|
|
|
|
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
|
2021-09-28 18:06:05 +00:00
|
|
|
|
2021-10-24 18:01:08 +00:00
|
|
|
static let queue = Key<[PlayerQueueItem]>("queue", default: [])
|
|
|
|
static let history = Key<[PlayerQueueItem]>("history", default: [])
|
|
|
|
static let lastPlayed = Key<PlayerQueueItem?>("lastPlayed")
|
|
|
|
|
2021-11-05 19:57:22 +00:00
|
|
|
static let saveHistory = Key<Bool>("saveHistory", default: true)
|
|
|
|
|
2021-09-28 18:06:05 +00:00
|
|
|
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
|
|
|
|
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
|
2021-11-07 20:51:22 +00:00
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
static let tabNavigationSection = Key<TabNavigationSectionSetting>("tabNavigationSection", default: .trending)
|
|
|
|
#endif
|
2021-09-19 11:06:54 +00:00
|
|
|
}
|
2021-11-05 19:35:27 +00:00
|
|
|
|
|
|
|
enum ResolutionSetting: String, CaseIterable, Defaults.Serializable {
|
|
|
|
case best, hd720p, sd480p, sd360p, sd240p, sd144p
|
|
|
|
|
|
|
|
var value: Stream.Resolution {
|
|
|
|
switch self {
|
|
|
|
case .best:
|
|
|
|
return .hd720p
|
|
|
|
default:
|
|
|
|
return Stream.Resolution(rawValue: rawValue)!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var description: String {
|
|
|
|
switch self {
|
|
|
|
case .best:
|
|
|
|
return "Best available"
|
|
|
|
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 20:51:22 +00:00
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
enum TabNavigationSectionSetting: String, Defaults.Serializable {
|
|
|
|
case trending, popular
|
|
|
|
}
|
|
|
|
#endif
|