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

48 lines
1.1 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 {
rawValue.capitalized
}
}
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
2021-06-26 15:09:35 +05:30
var updated: TimeInterval?
2021-06-26 15:09:35 +05:30
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
2021-12-17 22:09:26 +05:30
self.videos = videos
}
2021-06-26 15:09:35 +05:30
init(_ json: JSON) {
id = json["playlistId"].stringValue
title = json["title"].stringValue
2021-07-08 22:48:36 +05:30
visibility = json["isListed"].boolValue ? .public : .private
updated = json["updated"].doubleValue
2021-06-26 15:09:35 +05:30
}
static func == (lhs: Playlist, rhs: Playlist) -> 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)
}
}