2021-06-28 20:32:13 +05:30
|
|
|
import AVFoundation
|
|
|
|
import Defaults
|
|
|
|
import Foundation
|
2021-08-26 03:42:59 +05:30
|
|
|
import SwiftyJSON
|
2021-06-28 20:32:13 +05:30
|
|
|
|
2021-09-01 02:47:50 +05:30
|
|
|
struct Channel: Identifiable, Hashable {
|
2021-06-28 20:32:13 +05:30
|
|
|
var id: String
|
|
|
|
var name: String
|
2021-09-01 02:47:50 +05:30
|
|
|
var videos = [Video]()
|
|
|
|
|
|
|
|
private var subscriptionsCount: Int?
|
|
|
|
private var subscriptionsText: String?
|
2021-06-28 20:32:13 +05:30
|
|
|
|
2021-08-26 03:42:59 +05:30
|
|
|
init(json: JSON) {
|
|
|
|
id = json["authorId"].stringValue
|
|
|
|
name = json["author"].stringValue
|
2021-09-01 02:47:50 +05:30
|
|
|
subscriptionsCount = json["subCount"].int
|
|
|
|
subscriptionsText = json["subCountText"].string
|
|
|
|
|
|
|
|
if let channelVideos = json.dictionaryValue["latestVideos"] {
|
|
|
|
videos = channelVideos.arrayValue.map(Video.init)
|
|
|
|
}
|
2021-08-26 03:42:59 +05:30
|
|
|
}
|
|
|
|
|
2021-09-01 02:47:50 +05:30
|
|
|
init(id: String, name: String, subscriptionsCount: Int? = nil, videos: [Video] = []) {
|
2021-08-26 03:42:59 +05:30
|
|
|
self.id = id
|
|
|
|
self.name = name
|
|
|
|
self.subscriptionsCount = subscriptionsCount
|
2021-09-01 02:47:50 +05:30
|
|
|
self.videos = videos
|
|
|
|
}
|
|
|
|
|
|
|
|
var subscriptionsString: String? {
|
|
|
|
if subscriptionsCount != nil {
|
|
|
|
return subscriptionsCount!.formattedAsAbbreviation()
|
|
|
|
}
|
|
|
|
|
|
|
|
return subscriptionsText
|
|
|
|
}
|
|
|
|
|
|
|
|
func hash(into hasher: inout Hasher) {
|
|
|
|
hasher.combine(id)
|
2021-06-28 20:32:13 +05:30
|
|
|
}
|
|
|
|
}
|