2021-08-01 21:25:50 +00:00
|
|
|
import Foundation
|
|
|
|
|
2021-07-22 12:43:13 +00:00
|
|
|
extension Video {
|
|
|
|
static var fixture: Video {
|
|
|
|
let id = "D2sxamzaHkM"
|
|
|
|
|
|
|
|
return Video(
|
2021-10-05 20:20:09 +00:00
|
|
|
videoID: UUID().uuidString,
|
2021-08-22 19:13:33 +00:00
|
|
|
title: "Relaxing Piano Music that will make you feel amazingly good",
|
2021-07-22 12:43:13 +00:00
|
|
|
author: "Fancy Videotuber",
|
|
|
|
length: 582,
|
|
|
|
published: "7 years ago",
|
2021-08-22 19:13:33 +00:00
|
|
|
views: 21534,
|
2021-07-22 12:43:13 +00:00
|
|
|
description: "Some relaxing live piano music",
|
|
|
|
genre: "Music",
|
2021-08-31 21:17:50 +00:00
|
|
|
channel: Channel(id: "AbCdEFgHI", name: "The Channel", subscriptionsCount: 2300, videos: []),
|
2021-07-22 12:43:13 +00:00
|
|
|
thumbnails: Thumbnail.fixturesForAllQualities(videoId: id),
|
|
|
|
live: false,
|
2021-08-22 19:13:33 +00:00
|
|
|
upcoming: false,
|
|
|
|
publishedAt: Date.now,
|
|
|
|
likes: 37333,
|
|
|
|
dislikes: 30,
|
|
|
|
keywords: ["very", "cool", "video", "msfs 2020", "757", "747", "A380", "737-900", "MOD", "Zibo", "MD80", "MD11", "Rotate", "Laminar", "787", "A350", "MSFS", "MS2020", "Microsoft Flight Simulator", "Microsoft", "Flight", "Simulator", "SIM", "World", "Ortho", "Flying", "Boeing MAX"]
|
2021-07-22 12:43:13 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
static var fixtureLiveWithoutPublishedOrViews: Video {
|
|
|
|
var video = fixture
|
|
|
|
|
|
|
|
video.title = "\(video.title) \(video.title) \(video.title) \(video.title) \(video.title)"
|
|
|
|
video.published = "0 seconds ago"
|
|
|
|
video.views = 0
|
|
|
|
video.live = true
|
|
|
|
|
|
|
|
return video
|
|
|
|
}
|
|
|
|
|
|
|
|
static var fixtureUpcomingWithoutPublishedOrViews: Video {
|
|
|
|
var video = fixtureLiveWithoutPublishedOrViews
|
|
|
|
|
|
|
|
video.live = false
|
|
|
|
video.upcoming = true
|
|
|
|
|
|
|
|
return video
|
|
|
|
}
|
2021-07-27 22:40:04 +00:00
|
|
|
|
|
|
|
static var allFixtures: [Video] {
|
|
|
|
[fixture, fixtureLiveWithoutPublishedOrViews, fixtureUpcomingWithoutPublishedOrViews]
|
|
|
|
}
|
2021-09-29 11:45:00 +00:00
|
|
|
|
|
|
|
static func fixtures(_ count: Int) -> [Video] {
|
|
|
|
var result = [Video]()
|
|
|
|
while result.count < count {
|
|
|
|
result.append(allFixtures.shuffled().first!)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
2021-07-22 12:43:13 +00:00
|
|
|
}
|