2021-06-27 04:59:55 +05:30
|
|
|
import Defaults
|
2021-10-20 02:57:04 +05:30
|
|
|
import Foundation
|
2021-06-27 04:59:55 +05:30
|
|
|
|
2021-09-19 16:36:54 +05:30
|
|
|
extension Defaults.Keys {
|
2021-10-20 02:57:04 +05:30
|
|
|
static let invidiousInstanceID = "default-invidious-instance"
|
|
|
|
static let pipedInstanceID = "default-piped-instance"
|
2021-10-24 14:46:04 +05:30
|
|
|
static let privateAccountID = "default-private-invidious-account"
|
2021-10-20 02:57:04 +05:30
|
|
|
|
2021-10-17 04:18:58 +05:30
|
|
|
static let instances = Key<[Instance]>("instances", default: [
|
2021-10-28 02:41:38 +05:30
|
|
|
.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-20 02:57:04 +05:30
|
|
|
])
|
2021-10-21 03:51:50 +05:30
|
|
|
static let accounts = Key<[Account]>("accounts", default: [
|
2021-10-24 14:46:04 +05:30
|
|
|
.init(
|
|
|
|
id: privateAccountID,
|
|
|
|
instanceID: invidiousInstanceID,
|
|
|
|
name: "arekf",
|
|
|
|
url: "https://invidious.home.arekf.net",
|
|
|
|
sid: "ki55SJbaQmm0bOxUWctGAQLYPQRgk-CXDPw5Dp4oBmI="
|
|
|
|
)
|
2021-10-17 04:18:58 +05:30
|
|
|
])
|
2021-10-21 03:51:50 +05:30
|
|
|
static let lastAccountID = Key<Account.ID?>("lastAccountID")
|
2021-10-20 02:57:04 +05:30
|
|
|
static let lastInstanceID = Key<Instance.ID?>("lastInstanceID")
|
2021-10-26 02:59:06 +05:30
|
|
|
static let lastUsedPlaylistID = Key<Playlist.ID?>("lastPlaylistID")
|
2021-09-25 13:48:22 +05:30
|
|
|
|
2021-10-23 17:42:53 +05:30
|
|
|
static let sponsorBlockInstance = Key<String>("sponsorBlockInstance", default: "https://sponsor.ajay.app")
|
2021-10-23 22:19:45 +05:30
|
|
|
static let sponsorBlockCategories = Key<Set<String>>("sponsorBlockCategories", default: Set(SponsorBlockAPI.categories))
|
2021-10-23 17:42:53 +05:30
|
|
|
|
2021-09-28 23:36:05 +05:30
|
|
|
static let quality = Key<Stream.ResolutionSetting>("quality", default: .hd720pFirstThenBest)
|
2021-09-19 16:36:54 +05:30
|
|
|
|
|
|
|
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
|
2021-09-28 23:36:05 +05:30
|
|
|
|
2021-10-24 23:31:08 +05:30
|
|
|
static let queue = Key<[PlayerQueueItem]>("queue", default: [])
|
|
|
|
static let history = Key<[PlayerQueueItem]>("history", default: [])
|
|
|
|
static let lastPlayed = Key<PlayerQueueItem?>("lastPlayed")
|
|
|
|
|
2021-09-28 23:36:05 +05:30
|
|
|
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
|
|
|
|
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
|
2021-09-19 16:36:54 +05:30
|
|
|
}
|