import { YouTubeChannel } from './Channel'; import { YouTubeThumbnail } from './Thumbnail'; interface VideoOptions { /** * YouTube Video ID */ id?: string; /** * YouTube video url */ url: string; /** * YouTube Video title */ title?: string; /** * YouTube Video description. */ description?: string; /** * YouTube Video Duration Formatted */ durationRaw: string; /** * YouTube Video Duration in seconds */ durationInSec: number; /** * YouTube Video Uploaded Date */ uploadedAt?: string; /** * YouTube Views */ views: number; /** * YouTube Thumbnail Data */ thumbnail?: { width: number | undefined; height: number | undefined; url: string | undefined; }; /** * YouTube Video's uploader Channel Data */ channel?: YouTubeChannel; /** * YouTube Video's likes */ likes: number; /** * YouTube Video live status */ live: boolean; /** * YouTube Video private status */ private: boolean; /** * YouTube Video tags */ tags: string[]; /** * `true` if the video has been identified by the YouTube community as inappropriate or offensive to some audiences and viewer discretion is advised */ discretionAdvised: boolean; } /** * Class for YouTube Video url */ export class YouTubeVideo { /** * YouTube Video ID */ id?: string; /** * YouTube video url */ url: string; /** * YouTube Class type. == "video" */ type: 'video' | 'playlist' | 'channel'; /** * YouTube Video title */ title?: string; /** * YouTube Video description. */ description?: string; /** * YouTube Video Duration Formatted */ durationRaw: string; /** * YouTube Video Duration in seconds */ durationInSec: number; /** * YouTube Video Uploaded Date */ uploadedAt?: string; /** * YouTube Views */ views: number; /** * YouTube Thumbnail Data */ thumbnails: YouTubeThumbnail[]; /** * YouTube Video's uploader Channel Data */ channel?: YouTubeChannel; /** * YouTube Video's likes */ likes: number; /** * YouTube Video live status */ live: boolean; /** * YouTube Video private status */ private: boolean; /** * YouTube Video tags */ tags: string[]; /** * `true` if the video has been identified by the YouTube community as inappropriate or offensive to some audiences and viewer discretion is advised */ discretionAdvised: boolean; /** * Constructor for YouTube Video Class * @param data JSON parsed data. */ constructor(data: any) { if (!data) throw new Error(`Can not initiate ${this.constructor.name} without data`); this.id = data.id || undefined; this.url = `https://www.youtube.com/watch?v=${this.id}`; this.type = 'video'; this.title = data.title || undefined; this.description = data.description || undefined; this.durationRaw = data.duration_raw || '0:00'; this.durationInSec = (data.duration < 0 ? 0 : data.duration) || 0; this.uploadedAt = data.uploadedAt || undefined; this.views = parseInt(data.views) || 0; const thumbnails = []; for (const thumb of data.thumbnails) { thumbnails.push(new YouTubeThumbnail(thumb)); } this.thumbnails = thumbnails || []; this.channel = new YouTubeChannel(data.channel) || {}; this.likes = data.likes || 0; this.live = !!data.live; this.private = !!data.private; this.tags = data.tags || []; this.discretionAdvised = !!data.discretionAdvised; } /** * Converts class to title name of video. * @returns Title name */ toString(): string { return this.url || ''; } /** * Converts class to JSON data * @returns JSON data. */ toJSON(): VideoOptions { return { id: this.id, url: this.url, title: this.title, description: this.description, durationInSec: this.durationInSec, durationRaw: this.durationRaw, uploadedAt: this.uploadedAt, thumbnail: this.thumbnails[this.thumbnails.length - 1].toJSON() || this.thumbnails, channel: this.channel, views: this.views, tags: this.tags, likes: this.likes, live: this.live, private: this.private, discretionAdvised: this.discretionAdvised }; } }