1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-12 21:30:32 +05:30
yattee/Model/Playlist.swift

75 lines
1.8 KiB
Swift
Raw Normal View History

2021-06-26 15:09:35 +05:30
import Foundation
import SwiftyJSON
struct Playlist: Identifiable, Equatable, Hashable {
2021-07-22 18:13:13 +05:30
enum Visibility: String, CaseIterable, Identifiable {
case `public`, unlisted, `private`
var id: String {
rawValue
}
var name: String {
2022-09-26 21:00:59 +05:30
rawValue.capitalized.localized()
2021-07-22 18:13:13 +05:30
}
}
2021-06-26 15:09:35 +05:30
let id: String
var title: String
2021-07-22 18:13:13 +05:30
var visibility: Visibility
var editable = true
2021-06-26 15:09:35 +05:30
var updated: TimeInterval?
2021-06-26 15:09:35 +05:30
var videos = [Video]()
2022-12-11 22:34:39 +05:30
init(
id: String,
title: String,
visibility: Visibility,
editable: Bool = true,
updated: TimeInterval? = nil,
videos: [Video] = []
) {
self.id = id
self.title = title
self.visibility = visibility
self.editable = editable
self.updated = updated
2021-12-17 22:09:26 +05:30
self.videos = videos
}
2022-12-11 22:34:39 +05:30
var json: JSON {
2022-12-16 17:01:43 +05:30
[
2022-12-11 22:34:39 +05:30
"id": id,
"title": title,
"visibility": visibility.rawValue,
"editable": editable ? "editable" : "",
"updated": updated ?? "",
"videos": videos.map(\.json).map(\.object)
]
}
static func from(_ json: JSON) -> Self {
2022-12-16 17:01:43 +05:30
.init(
2022-12-11 22:34:39 +05:30
id: json["id"].stringValue,
title: json["title"].stringValue,
visibility: .init(rawValue: json["visibility"].stringValue) ?? .public,
updated: json["updated"].doubleValue,
videos: json["videos"].arrayValue.map { Video.from($0) }
)
2021-06-26 15:09:35 +05:30
}
2023-06-17 17:39:51 +05:30
static func == (lhs: Self, rhs: Self) -> Bool {
lhs.id == rhs.id && lhs.updated == rhs.updated
2021-06-26 15:09:35 +05:30
}
func hash(into hasher: inout Hasher) {
hasher.combine(id)
}
2022-12-11 23:14:55 +05:30
var channelPlaylist: ChannelPlaylist {
ChannelPlaylist(id: id, title: title, videos: videos, videosCount: videos.count)
}
2021-06-26 15:09:35 +05:30
}