mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
48 lines
1.1 KiB
Swift
48 lines
1.1 KiB
Swift
import Foundation
|
|
import SwiftyJSON
|
|
|
|
struct Playlist: Identifiable, Equatable, Hashable {
|
|
enum Visibility: String, CaseIterable, Identifiable {
|
|
case `public`, unlisted, `private`
|
|
|
|
var id: String {
|
|
rawValue
|
|
}
|
|
|
|
var name: String {
|
|
rawValue.capitalized
|
|
}
|
|
}
|
|
|
|
let id: String
|
|
var title: String
|
|
var visibility: Visibility
|
|
|
|
var updated: TimeInterval?
|
|
|
|
var videos = [Video]()
|
|
|
|
init(id: String, title: String, visibility: Visibility, updated: TimeInterval? = nil, videos: [Video] = []) {
|
|
self.id = id
|
|
self.title = title
|
|
self.visibility = visibility
|
|
self.updated = updated
|
|
self.videos = videos
|
|
}
|
|
|
|
init(_ json: JSON) {
|
|
id = json["playlistId"].stringValue
|
|
title = json["title"].stringValue
|
|
visibility = json["isListed"].boolValue ? .public : .private
|
|
updated = json["updated"].doubleValue
|
|
}
|
|
|
|
static func == (lhs: Playlist, rhs: Playlist) -> Bool {
|
|
lhs.id == rhs.id && lhs.updated == rhs.updated
|
|
}
|
|
|
|
func hash(into hasher: inout Hasher) {
|
|
hasher.combine(id)
|
|
}
|
|
}
|