12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457 |
- /* eslint-disable */
- import mongoose from "mongoose";
- import async from "async";
- import config from "config";
- import * as rax from "retry-axios";
- import axios from "axios";
- import CoreClass from "../core";
- class RateLimitter {
- /**
- * Constructor
- *
- * @param {number} timeBetween - The time between each allowed YouTube request
- */
- constructor(timeBetween) {
- this.dateStarted = Date.now();
- this.timeBetween = timeBetween;
- }
- /**
- * Returns a promise that resolves whenever the ratelimit of a YouTube request is done
- *
- * @returns {Promise} - promise that gets resolved when the rate limit allows it
- */
- continue() {
- return new Promise(resolve => {
- if (Date.now() - this.dateStarted >= this.timeBetween) resolve();
- else setTimeout(resolve, this.dateStarted + this.timeBetween - Date.now());
- });
- }
- /**
- * Restart the rate limit timer
- */
- restart() {
- this.dateStarted = Date.now();
- }
- }
- let YouTubeModule;
- let CacheModule;
- let DBModule;
- let RatingsModule;
- let SongsModule;
- let StationsModule;
- let PlaylistsModule;
- let WSModule;
- const isQuotaExceeded = apiCalls => {
- const reversedApiCalls = apiCalls.slice().reverse();
- const quotas = config.get("apis.youtube.quotas").slice();
- const sortedQuotas = quotas.sort((a, b) => a.limit > b.limit);
- let quotaExceeded = false;
- for (const quota of sortedQuotas) {
- let quotaUsed = 0;
- let dateCutoff = null;
- if (quota.type === "QUERIES_PER_MINUTE") dateCutoff = new Date() - 1000 * 60;
- else if (quota.type === "QUERIES_PER_100_SECONDS") dateCutoff = new Date() - 1000 * 100;
- else if (quota.type === "QUERIES_PER_DAY") {
- // Quota resets at midnight PT, this is my best guess to convert the current date to the last midnight PT
- dateCutoff = new Date();
- dateCutoff.setUTCMilliseconds(0);
- dateCutoff.setUTCSeconds(0);
- dateCutoff.setUTCMinutes(0);
- dateCutoff.setUTCHours(dateCutoff.getUTCHours() - 7);
- dateCutoff.setUTCHours(0);
- }
- for (const apiCall of reversedApiCalls) {
- if (apiCall.date >= dateCutoff) quotaUsed += apiCall.quotaCost;
- else break;
- }
- if (quotaUsed >= quota.limit) {
- quotaExceeded = true;
- break;
- }
- }
- return quotaExceeded;
- };
- class _YouTubeModule extends CoreClass {
- // eslint-disable-next-line require-jsdoc
- constructor() {
- super("youtube", {
- concurrency: 10,
- priorities: {
- GET_PLAYLIST: 11
- }
- });
- YouTubeModule = this;
- }
- /**
- * Initialises the activities module
- *
- * @returns {Promise} - returns promise (reject, resolve)
- */
- initialize() {
- return new Promise(async resolve => {
- CacheModule = this.moduleManager.modules.cache;
- DBModule = this.moduleManager.modules.db;
- RatingsModule = this.moduleManager.modules.ratings;
- SongsModule = this.moduleManager.modules.songs;
- StationsModule = this.moduleManager.modules.stations;
- PlaylistsModule = this.moduleManager.modules.playlists;
- WSModule = this.moduleManager.modules.ws;
- CacheModule.runJob("SUB", {
- channel: "youtube.removeYoutubeApiRequest",
- cb: requestId => {
- WSModule.runJob("EMIT_TO_ROOM", {
- room: `view-api-request.${requestId}`,
- args: ["event:youtubeApiRequest.removed"]
- });
-
- WSModule.runJob("EMIT_TO_ROOM", {
- room: "admin.youtube",
- args: ["event:admin.youtubeApiRequest.removed", { data: { requestId } }]
- });
- }
- });
- CacheModule.runJob("SUB", {
- channel: "youtube.removeVideos",
- cb: videoIds => {
- const videos = Array.isArray(videoIds) ? videoIds : [videoIds];
- videos.forEach(videoId => {
- WSModule.runJob("EMIT_TO_ROOM", {
- room: `view-youtube-video.${videoId}`,
- args: ["event:youtubeVideo.removed"]
- });
-
- WSModule.runJob("EMIT_TO_ROOM", {
- room: "admin.youtubeVideos",
- args: ["event:admin.youtubeVideo.removed", { data: { videoId } }]
- });
- });
- }
- });
- this.youtubeApiRequestModel = this.YoutubeApiRequestModel = await DBModule.runJob("GET_MODEL", {
- modelName: "youtubeApiRequest"
- });
- this.youtubeVideoModel = this.YoutubeVideoModel = await DBModule.runJob("GET_MODEL", {
- modelName: "youtubeVideo"
- });
- this.rateLimiter = new RateLimitter(config.get("apis.youtube.rateLimit"));
- this.requestTimeout = config.get("apis.youtube.requestTimeout");
- this.axios = axios.create();
- this.axios.defaults.raxConfig = {
- instance: this.axios,
- retry: config.get("apis.youtube.retryAmount"),
- noResponseRetries: config.get("apis.youtube.retryAmount")
- };
- rax.attach(this.axios);
- this.youtubeApiRequestModel
- .find({ date: { $gte: new Date() - 2 * 24 * 60 * 60 * 1000 } }, { date: true, quotaCost: true, _id: false })
- .sort({ date: 1 })
- .exec((err, youtubeApiRequests) => {
- if (err) console.log("Couldn't load YouTube API requests.");
- else {
- this.apiCalls = youtubeApiRequests;
- resolve();
- }
- });
- });
- }
- /**
- * Fetches a list of songs from Youtube's API
- *
- * @param {object} payload - object that contains the payload
- * @param {string} payload.query - the query we'll pass to youtubes api
- * @param {string} payload.pageToken - (optional) if this exists, will search search youtube for a specific page reference
- * @returns {Promise} - returns promise (reject, resolve)
- */
- SEARCH(payload) {
- const params = {
- part: "snippet",
- q: payload.query,
- type: "video",
- maxResults: 10
- };
- if (payload.pageToken) params.pageToken = payload.pageToken;
- return new Promise((resolve, reject) => {
- YouTubeModule.runJob(
- "API_SEARCH",
- {
- params
- },
- this
- )
- .then(({ response }) => {
- const { data } = response;
- return resolve(data);
- })
- .catch(err => {
- YouTubeModule.log("ERROR", "SEARCH", `${err.message}`);
- return reject(new Error("An error has occured. Please try again later."));
- });
- });
- }
- GET_QUOTA_STATUS(payload) {
- return new Promise((resolve, reject) => {
- const fromDate = payload.fromDate ? new Date(payload.fromDate) : new Date();
- YouTubeModule.youtubeApiRequestModel
- .find({ date: { $gte: fromDate - 2 * 24 * 60 * 60 * 1000, $lte: fromDate } }, { date: true, quotaCost: true, _id: false })
- .sort({ date: 1 })
- .exec((err, youtubeApiRequests) => {
- if (err) reject(new Error("Couldn't load YouTube API requests."));
- else {
- const reversedApiCalls = youtubeApiRequests.slice().reverse();
- const quotas = config.get("apis.youtube.quotas").slice();
- const sortedQuotas = quotas.sort((a, b) => a.limit > b.limit);
- const status = {};
- for (const quota of sortedQuotas) {
- status[quota.type] = {
- title: quota.title,
- quotaUsed: 0,
- limit: quota.limit,
- quotaExceeded: false
- };
- let dateCutoff = null;
- if (quota.type === "QUERIES_PER_MINUTE") dateCutoff = new Date(fromDate) - 1000 * 60;
- else if (quota.type === "QUERIES_PER_100_SECONDS") dateCutoff = new Date(fromDate) - 1000 * 100;
- else if (quota.type === "QUERIES_PER_DAY") {
- // Quota resets at midnight PT, this is my best guess to convert the current date to the last midnight PT
- dateCutoff = new Date(fromDate);
- dateCutoff.setUTCMilliseconds(0);
- dateCutoff.setUTCSeconds(0);
- dateCutoff.setUTCMinutes(0);
- dateCutoff.setUTCHours(dateCutoff.getUTCHours() - 7);
- dateCutoff.setUTCHours(0);
- }
- for (const apiCall of reversedApiCalls) {
- if (apiCall.date >= dateCutoff) status[quota.type].quotaUsed += apiCall.quotaCost;
- else break;
- }
- if (status[quota.type].quotaUsed >= quota.limit && !status[quota.type].quotaExceeded)
- status[quota.type].quotaExceeded = true;
- }
- resolve({ status });
- }
- });
- });
- }
- GET_QUOTA_CHART_DATA(payload) {
- return new Promise((resolve, reject) => {
- const fromDate = new Date(new Date() - (8 * 24 * 60 * 60 * 1000));
- YouTubeModule.youtubeApiRequestModel.aggregate([
- {
- $match: { date: { $gte: fromDate } }
- },
- {
- $group: {
- _id: { $dateToString: { format: "%Y-%m-%d", date: "$date" } },
- usage: { $sum: "$quotaCost" },
- count: { $sum: 1 }
- }
- },
- {
- $sort: { _id: 1 }
- },
- {
- $project: { date: "$_id", usage: 1, count: 1 }
- }
- ]).exec((err, data) => {
- if (err) return reject(err);
- return resolve({
- quotaUsage: {
- labels: data.map(row => row.date),
- datasets: [{
- label: "All",
- data: data.map(row => row.usage),
- borderColor: "rgb(2, 166, 242)"
- }]
- },
- apiRequests: {
- labels: data.map(row => row.date),
- datasets: [{
- label: "All",
- data: data.map(row => row.count),
- borderColor: "rgb(2, 166, 242)"
- }]
- }
- });
- });
- });
- }
- /**
- * Gets the id of the channel upload playlist
- *
- * @param {object} payload - object that contains the payload
- * @param {string} payload.id - the id of the YouTube channel. Optional: can be left out if specifying a username.
- * @param {string} payload.username - the username of the YouTube channel. Only gets used if no id is specified.
- * @returns {Promise} - returns promise (reject, resolve)
- */
- GET_CHANNEL_UPLOADS_PLAYLIST_ID(payload) {
- return new Promise((resolve, reject) => {
- const params = {
- part: "id,contentDetails"
- };
- if (payload.id) params.id = payload.id;
- else params.forUsername = payload.username;
- YouTubeModule.runJob(
- "API_GET_CHANNELS",
- {
- params
- },
- this
- )
- .then(({ response }) => {
- const { data } = response;
- if (data.pageInfo.totalResults === 0) return reject(new Error("Channel not found."));
- const playlistId = data.items[0].contentDetails.relatedPlaylists.uploads;
- return resolve({ playlistId });
- })
- .catch(err => {
- YouTubeModule.log("ERROR", "GET_CHANNEL_UPLOADS_PLAYLIST_ID", `${err.message}`);
- if (err.message === "Request failed with status code 404") {
- return reject(new Error("Channel not found. Is the channel public/unlisted?"));
- }
- return reject(new Error("An error has occured. Please try again later."));
- });
- });
- }
- /**
- * Gets the id of the channel from the custom URL
- *
- * @param {object} payload - object that contains the payload
- * @param {string} payload.customUrl - the customUrl of the YouTube channel
- * @returns {Promise} - returns promise (reject, resolve)
- */
- GET_CHANNEL_ID_FROM_CUSTOM_URL(payload) {
- return new Promise((resolve, reject) => {
- async.waterfall(
- [
- next => {
- const params = {
- part: "snippet",
- type: "channel",
- maxResults: 50
- };
- params.q = payload.customUrl;
- YouTubeModule.runJob(
- "API_SEARCH",
- {
- params
- },
- this
- )
- .then(({ response }) => {
- const { data } = response;
- if (data.pageInfo.totalResults === 0) return next("Channel not found.");
- const channelIds = data.items.map(item => item.id.channelId);
- return next(null, channelIds);
- })
- .catch(err => {
- next(err);
- });
- },
- (channelIds, next) => {
- const params = {
- part: "snippet",
- id: channelIds.join(","),
- maxResults: 50
- };
- YouTubeModule.runJob(
- "API_GET_CHANNELS",
- {
- params
- },
- this
- )
- .then(({ response }) => {
- const { data } = response;
- if (data.pageInfo.totalResults === 0) return next("Channel not found.");
- let channelId = null;
- for (const item of data.items) {
- if (
- item.snippet.customUrl &&
- item.snippet.customUrl.toLowerCase() === payload.customUrl.toLowerCase()
- ) {
- channelId = item.id;
- break;
- }
- }
- if (!channelId) return next("Channel not found.");
- return next(null, channelId);
- })
- .catch(err => {
- next(err);
- });
- }
- ],
- (err, channelId) => {
- if (err) {
- YouTubeModule.log("ERROR", "GET_CHANNEL_ID_FROM_CUSTOM_URL", `${err.message}`);
- if (err.message === "Request failed with status code 404") {
- return reject(new Error("Channel not found. Is the channel public/unlisted?"));
- }
- return reject(new Error("An error has occured. Please try again later."));
- }
- return resolve({ channelId });
- }
- );
- });
- }
- /**
- * Returns an array of songs taken from a YouTube playlist
- *
- * @param {object} payload - object that contains the payload
- * @param {boolean} payload.musicOnly - whether to return music videos or all videos in the playlist
- * @param {string} payload.url - the url of the YouTube playlist
- * @returns {Promise} - returns promise (reject, resolve)
- */
- GET_PLAYLIST(payload) {
- return new Promise((resolve, reject) => {
- const regex = /[\\?&]list=([^&#]*)/;
- const splitQuery = regex.exec(payload.url);
- if (!splitQuery) {
- YouTubeModule.log("ERROR", "GET_PLAYLIST", "Invalid YouTube playlist URL query.");
- reject(new Error("Invalid playlist URL."));
- return;
- }
- const playlistId = splitQuery[1];
- async.waterfall(
- [
- next => {
- let songs = [];
- let nextPageToken = "";
- async.whilst(
- next => {
- YouTubeModule.log(
- "INFO",
- `Getting playlist progress for job (${this.toString()}): ${songs.length
- } songs gotten so far. Is there a next page: ${nextPageToken !== undefined}.`
- );
- next(null, nextPageToken !== undefined);
- },
- next => {
- // Add 250ms delay between each job request
- setTimeout(() => {
- YouTubeModule.runJob("GET_PLAYLIST_PAGE", { playlistId, nextPageToken }, this)
- .then(response => {
- songs = songs.concat(response.songs);
- nextPageToken = response.nextPageToken;
- next();
- })
- .catch(err => next(err));
- }, 250);
- },
- err => next(err, songs)
- );
- },
- (songs, next) =>
- next(
- null,
- songs.map(song => song.contentDetails.videoId)
- ),
- (songs, next) => {
- if (!payload.musicOnly) return next(true, { songs });
- return YouTubeModule.runJob("FILTER_MUSIC_VIDEOS", { videoIds: songs.slice() }, this)
- .then(filteredSongs => next(null, { filteredSongs, songs }))
- .catch(next);
- }
- ],
- (err, response) => {
- if (err && err !== true) {
- YouTubeModule.log("ERROR", "GET_PLAYLIST", "Some error has occurred.", err.message);
- reject(new Error(err.message));
- } else {
- resolve({ songs: response.filteredSongs ? response.filteredSongs.videoIds : response.songs });
- }
- }
- );
- });
- }
- /**
- * Returns a a page from a YouTube playlist. Is used internally by GET_PLAYLIST and GET_CHANNEL.
- *
- * @param {object} payload - object that contains the payload
- * @param {boolean} payload.playlistId - the playlist id to get videos from
- * @param {boolean} payload.nextPageToken - the nextPageToken to use
- * @param {string} payload.url - the url of the YouTube playlist
- * @returns {Promise} - returns promise (reject, resolve)
- */
- GET_PLAYLIST_PAGE(payload) {
- return new Promise((resolve, reject) => {
- const params = {
- part: "contentDetails",
- playlistId: payload.playlistId,
- maxResults: 50
- };
- if (payload.nextPageToken) params.pageToken = payload.nextPageToken;
- YouTubeModule.runJob(
- "API_GET_PLAYLIST_ITEMS",
- {
- params
- },
- this
- )
- .then(({ response }) => {
- const { data } = response;
- const songs = data.items;
- if (data.nextPageToken) return resolve({ nextPageToken: data.nextPageToken, songs });
- return resolve({ songs });
- })
- .catch(err => {
- YouTubeModule.log("ERROR", "GET_PLAYLIST_PAGE", `${err.message}`);
- if (err.message === "Request failed with status code 404") {
- return reject(new Error("Playlist not found. Is the playlist public/unlisted?"));
- }
- return reject(new Error("An error has occured. Please try again later."));
- });
- });
- }
- /**
- * Filters a list of YouTube videos so that they only contains videos with music. Is used internally by GET_PLAYLIST
- *
- * @param {object} payload - object that contains the payload
- * @param {Array} payload.videoIds - an array of YouTube videoIds to filter through
- * @param {Array} payload.page - the current page/set of video's to get, starting at 0. If left null, 0 is assumed. Will recurse.
- * @returns {Promise} - returns promise (reject, resolve)
- */
- FILTER_MUSIC_VIDEOS(payload) {
- return new Promise((resolve, reject) => {
- const page = payload.page ? payload.page : 0;
- const videosPerPage = 50;
- const localVideoIds = payload.videoIds.splice(page * 50, videosPerPage);
- if (localVideoIds.length === 0) {
- resolve({ videoIds: [] });
- return;
- }
- const params = {
- part: "topicDetails",
- id: localVideoIds.join(","),
- maxResults: videosPerPage
- };
- YouTubeModule.runJob("API_GET_VIDEOS", { params }, this)
- .then(({ response }) => {
- const { data } = response;
- const videoIds = [];
- data.items.forEach(item => {
- const videoId = item.id;
- if (!item.topicDetails) return;
- if (item.topicDetails.topicCategories.indexOf("https://en.wikipedia.org/wiki/Music") !== -1)
- videoIds.push(videoId);
- });
- return YouTubeModule.runJob(
- "FILTER_MUSIC_VIDEOS",
- { videoIds: payload.videoIds, page: page + 1 },
- this
- )
- .then(result => resolve({ videoIds: videoIds.concat(result.videoIds) }))
- .catch(err => reject(err));
- })
- .catch(err => {
- YouTubeModule.log("ERROR", "FILTER_MUSIC_VIDEOS", `${err.message}`);
- return reject(new Error("Failed to find playlist from YouTube"));
- });
- });
- }
- /**
- * Returns an array of songs taken from a YouTube channel
- *
- * @param {object} payload - object that contains the payload
- * @param {boolean} payload.musicOnly - whether to return music videos or all videos in the channel
- * @param {string} payload.url - the url of the YouTube channel
- * @returns {Promise} - returns promise (reject, resolve)
- */
- GET_CHANNEL(payload) {
- return new Promise((resolve, reject) => {
- const regex =
- /\.[\w]+\/(?:(?:channel\/(UC[0-9A-Za-z_-]{21}[AQgw]))|(?:user\/?([\w-]+))|(?:c\/?([\w-]+))|(?:\/?([\w-]+)))/;
- const splitQuery = regex.exec(payload.url);
- if (!splitQuery) {
- YouTubeModule.log("ERROR", "GET_CHANNEL", "Invalid YouTube channel URL query.");
- reject(new Error("Invalid playlist URL."));
- return;
- }
- const channelId = splitQuery[1];
- const channelUsername = splitQuery[2];
- const channelCustomUrl = splitQuery[3];
- const channelUsernameOrCustomUrl = splitQuery[4];
- console.log(`Channel id: ${channelId}`);
- console.log(`Channel username: ${channelUsername}`);
- console.log(`Channel custom URL: ${channelCustomUrl}`);
- console.log(`Channel username or custom URL: ${channelUsernameOrCustomUrl}`);
- async.waterfall(
- [
- next => {
- const payload = {};
- if (channelId) payload.id = channelId;
- else if (channelUsername) payload.username = channelUsername;
- else return next(null, true, null);
- return YouTubeModule.runJob("GET_CHANNEL_UPLOADS_PLAYLIST_ID", payload, this)
- .then(({ playlistId }) => {
- next(null, false, playlistId);
- })
- .catch(err => {
- if (err.message === "Channel not found. Is the channel public/unlisted?") next(null, true, null);
- else next(err);
- });
- },
- (getUsernameFromCustomUrl, playlistId, next) => {
- if (!getUsernameFromCustomUrl) return next(null, playlistId);
- const payload = {};
- if (channelCustomUrl) payload.customUrl = channelCustomUrl;
- else if (channelUsernameOrCustomUrl) payload.customUrl = channelUsernameOrCustomUrl;
- else next("No proper URL provided.");
- YouTubeModule.runJob("GET_CHANNEL_ID_FROM_CUSTOM_URL", payload, this)
- .then(({ channelId }) => {
- YouTubeModule.runJob("GET_CHANNEL_UPLOADS_PLAYLIST_ID", { id: channelId }, this)
- .then(({ playlistId }) => {
- next(null, playlistId);
- })
- .catch(err => next(err));
- })
- .catch(err => next(err));
- },
- (playlistId, next) => {
- let songs = [];
- let nextPageToken = "";
- async.whilst(
- next => {
- YouTubeModule.log(
- "INFO",
- `Getting channel progress for job (${this.toString()}): ${songs.length
- } songs gotten so far. Is there a next page: ${nextPageToken !== undefined}.`
- );
- next(null, nextPageToken !== undefined);
- },
- next => {
- // Add 250ms delay between each job request
- setTimeout(() => {
- YouTubeModule.runJob("GET_PLAYLIST_PAGE", { playlistId, nextPageToken }, this)
- .then(response => {
- songs = songs.concat(response.songs);
- nextPageToken = response.nextPageToken;
- next();
- })
- .catch(err => next(err));
- }, 250);
- },
- err => next(err, songs)
- );
- },
- (songs, next) =>
- next(
- null,
- songs.map(song => song.contentDetails.videoId)
- ),
- (songs, next) => {
- if (!payload.musicOnly) return next(true, { songs });
- return YouTubeModule.runJob("FILTER_MUSIC_VIDEOS", { videoIds: songs.slice() }, this)
- .then(filteredSongs => next(null, { filteredSongs, songs }))
- .catch(next);
- }
- ],
- (err, response) => {
- if (err && err !== true) {
- YouTubeModule.log("ERROR", "GET_CHANNEL", "Some error has occurred.", err.message);
- reject(new Error(err.message));
- } else {
- resolve({ songs: response.filteredSongs ? response.filteredSongs.videoIds : response.songs });
- }
- }
- );
- });
- }
- API_GET_VIDEOS(payload) {
- return new Promise((resolve, reject) => {
- const { params } = payload;
- YouTubeModule.runJob(
- "API_CALL",
- {
- url: "https://www.googleapis.com/youtube/v3/videos",
- params: {
- key: config.get("apis.youtube.key"),
- ...params
- },
- quotaCost: 1
- },
- this
- )
- .then(response => {
- resolve(response);
- })
- .catch(err => {
- reject(err);
- });
- });
- }
- API_GET_PLAYLIST_ITEMS(payload) {
- return new Promise((resolve, reject) => {
- const { params } = payload;
- YouTubeModule.runJob(
- "API_CALL",
- {
- url: "https://www.googleapis.com/youtube/v3/playlistItems",
- params: {
- key: config.get("apis.youtube.key"),
- ...params
- },
- quotaCost: 1
- },
- this
- )
- .then(response => {
- resolve(response);
- })
- .catch(err => {
- reject(err);
- });
- });
- }
- API_GET_CHANNELS(payload) {
- return new Promise((resolve, reject) => {
- const { params } = payload;
- YouTubeModule.runJob(
- "API_CALL",
- {
- url: "https://www.googleapis.com/youtube/v3/channels",
- params: {
- key: config.get("apis.youtube.key"),
- ...params
- },
- quotaCost: 1
- },
- this
- )
- .then(response => {
- resolve(response);
- })
- .catch(err => {
- reject(err);
- });
- });
- }
- API_SEARCH(payload) {
- return new Promise((resolve, reject) => {
- const { params } = payload;
- YouTubeModule.runJob(
- "API_CALL",
- {
- url: "https://www.googleapis.com/youtube/v3/search",
- params: {
- key: config.get("apis.youtube.key"),
- ...params
- },
- quotaCost: 100
- },
- this
- )
- .then(response => {
- resolve(response);
- })
- .catch(err => {
- reject(err);
- });
- });
- }
- API_CALL(payload) {
- return new Promise((resolve, reject) => {
- const { url, params, quotaCost } = payload;
- const quotaExceeded = isQuotaExceeded(YouTubeModule.apiCalls);
- if (quotaExceeded) reject(new Error("Quota has been exceeded. Please wait a while."));
- else {
- const youtubeApiRequest = new YouTubeModule.YoutubeApiRequestModel({
- url,
- date: Date.now(),
- quotaCost
- });
- youtubeApiRequest.save();
- const { key, ...keylessParams } = payload.params;
- CacheModule.runJob(
- "HSET",
- {
- table: "youtubeApiRequestParams",
- key: youtubeApiRequest._id.toString(),
- value: JSON.stringify(keylessParams)
- },
- this
- ).then();
- YouTubeModule.apiCalls.push({ date: youtubeApiRequest.date, quotaCost });
- YouTubeModule.axios
- .get(url, {
- params,
- timeout: YouTubeModule.requestTimeout
- })
- .then(response => {
- if (response.data.error) {
- reject(new Error(response.data.error));
- } else {
- CacheModule.runJob(
- "HSET",
- {
- table: "youtubeApiRequestResults",
- key: youtubeApiRequest._id.toString(),
- value: JSON.stringify(response.data)
- },
- this
- ).then();
- resolve({ response });
- }
- })
- .catch(err => {
- reject(err);
- });
- }
- });
- }
- GET_API_REQUESTS(payload) {
- return new Promise((resolve, reject) => {
- const fromDate = payload.fromDate ? new Date(payload.fromDate) : new Date();
- YouTubeModule.youtubeApiRequestModel
- .find({ date: { $lte: fromDate } })
- .sort({ date: -1 })
- .exec((err, youtubeApiRequests) => {
- if (err) reject(new Error("Couldn't load YouTube API requests."));
- else {
- resolve({ apiRequests: youtubeApiRequests });
- }
- });
- });
- }
- GET_API_REQUEST(payload) {
- return new Promise((resolve, reject) => {
- const { apiRequestId } = payload;
-
- async.waterfall(
- [
- next => {
- YouTubeModule.youtubeApiRequestModel
- .findOne({ _id: apiRequestId })
- .exec(next);
- },
- (apiRequest, next) => {
- CacheModule.runJob(
- "HGET",
- {
- table: "youtubeApiRequestParams",
- key: apiRequestId.toString()
- },
- this
- ).then(apiRequestParams => {
- next(null, {
- ...apiRequest._doc,
- params: apiRequestParams
- });
- }
- ).catch(err => next(err));
- },
- (apiRequest, next) => {
- CacheModule.runJob(
- "HGET",
- {
- table: "youtubeApiRequestResults",
- key: apiRequestId.toString()
- },
- this
- ).then(apiRequestResults => {
- next(null, {
- ...apiRequest,
- results: apiRequestResults
- });
- }).catch(err => next(err));
- }
- ],
- (err, apiRequest) => {
- if (err) reject(new Error(err));
- else resolve({ apiRequest });
- }
- );
- });
- }
- RESET_STORED_API_REQUESTS(payload) {
- return new Promise((resolve, reject) => {
- async.waterfall(
- [
- next => {
- YouTubeModule.youtubeApiRequestModel.find({}, next);
- },
- (apiRequests, next) => {
- YouTubeModule.youtubeApiRequestModel.deleteMany({}, err => {
- if (err) next("Couldn't reset stored YouTube API requests.");
- else {
- next(null, apiRequests);
- }
- });
- },
- (apiRequests, next) => {
- CacheModule.runJob(
- "DEL",
- {key: "youtubeApiRequestParams"},
- this
- ).then(() => next(null, apiRequests)).catch(err => next(err));
- },
- (apiRequests, next) => {
- CacheModule.runJob(
- "DEL",
- {key: "youtubeApiRequestResults"},
- this
- ).then(() => next(null, apiRequests)).catch(err => next(err));
- },
- (apiRequests, next) => {
- async.eachLimit(
- apiRequests.map(apiRequest => apiRequest._id),
- 1,
- (requestId, next) => {
- CacheModule.runJob(
- "PUB",
- {
- channel: "youtube.removeYoutubeApiRequest",
- value: requestId
- },
- this
- )
- .then(() => {
- next();
- })
- .catch(err => {
- next(err);
- });
- },
- err => {
- if (err) next(err);
- else next();
- }
- );
- }
- ],
- err => {
- if (err) reject(new Error(err));
- else resolve();
- }
- );
- });
- }
- REMOVE_STORED_API_REQUEST(payload) {
- return new Promise((resolve, reject) => {
-
- async.waterfall(
- [
- next => {
- YouTubeModule.youtubeApiRequestModel.deleteOne({_id: payload.requestId}, err => {
- if (err) next("Couldn't remove stored YouTube API request.");
- else {
- next();
- }
- });
- },
- next => {
- CacheModule.runJob(
- "HDEL",
- {
- table: "youtubeApiRequestParams",
- key: payload.requestId.toString()
- },
- this
- ).then(next).catch(err => next(err));
- },
- next => {
- CacheModule.runJob(
- "HDEL",
- {
- table: "youtubeApiRequestResults",
- key: payload.requestId.toString()
- },
- this
- ).then(next).catch(err => next(err));
- },
- next => {
- CacheModule.runJob("PUB", {
- channel: "youtube.removeYoutubeApiRequest",
- value: requestId
- }).then(next).catch(err => next(err));;
- }
- ],
- err => {
- if (err) reject(new Error(err));
- else resolve();
- }
- );
- });
- }
- /**
- * Create YouTube videos
- *
- * @param {object} payload - an object containing the payload
- * @param {string} payload.youtubeVideos - the youtubeVideo object or array of
- * @returns {Promise} - returns a promise (resolve, reject)
- */
- CREATE_VIDEOS(payload) {
- return new Promise((resolve, reject) => {
- async.waterfall(
- [
- next => {
- let youtubeVideos = payload.youtubeVideos;
- if (typeof youtubeVideos !== "object") next("Invalid youtubeVideos type");
- else {
- if (!Array.isArray(youtubeVideos)) youtubeVideos = [youtubeVideos];
- YouTubeModule.youtubeVideoModel.insertMany(youtubeVideos, next);
- }
- },
- (youtubeVideos, next) => {
- const youtubeIds = youtubeVideos.map(video => video.youtubeId);
- async.eachLimit(
- youtubeIds,
- 2,
- (youtubeId, next) => {
- RatingsModule.runJob("RECALCULATE_RATINGS", { youtubeId }, this)
- .then(() => next())
- .catch(next);
- },
- err => {
- if (err) next(err);
- else next(null, youtubeVideos);
- }
- );
- }
- ],
- (err, youtubeVideos) => {
- if (err) reject(new Error(err));
- else resolve({ youtubeVideos });
- }
- )
- });
- }
- /**
- * Get YouTube video
- *
- * @param {object} payload - an object containing the payload
- * @param {string} payload.identifier - the youtube video ObjectId or YouTube ID
- * @param {string} payload.createMissing - attempt to fetch and create video if not in db
- * @returns {Promise} - returns a promise (resolve, reject)
- */
- GET_VIDEO(payload) {
- return new Promise((resolve, reject) => {
- async.waterfall(
- [
- next => {
- const query = mongoose.Types.ObjectId.isValid(payload.identifier) ?
- { _id: payload.identifier } :
- { youtubeId: payload.identifier };
- return YouTubeModule.youtubeVideoModel.findOne(query, next);
- },
- (video, next) => {
- if (video) return next(null, video, false);
- if (mongoose.Types.ObjectId.isValid(payload.identifier) || !payload.createMissing) return next("YouTube video not found.");
- const params = {
- part: "snippet,contentDetails,statistics,status",
- id: payload.identifier
- };
-
- return YouTubeModule.runJob("API_GET_VIDEOS", { params }, this)
- .then(({ response }) => {
- const { data } = response;
- if (data.items[0] === undefined)
- return next("The specified video does not exist or cannot be publicly accessed.");
-
- // TODO Clean up duration converter
- let dur = data.items[0].contentDetails.duration;
-
- dur = dur.replace("PT", "");
-
- let duration = 0;
-
- dur = dur.replace(/([\d]*)H/, (v, v2) => {
- v2 = Number(v2);
- duration = v2 * 60 * 60;
- return "";
- });
-
- dur = dur.replace(/([\d]*)M/, (v, v2) => {
- v2 = Number(v2);
- duration += v2 * 60;
- return "";
- });
-
- // eslint-disable-next-line no-unused-vars
- dur = dur.replace(/([\d]*)S/, (v, v2) => {
- v2 = Number(v2);
- duration += v2;
- return "";
- });
-
- const youtubeVideo = {
- youtubeId: data.items[0].id,
- title: data.items[0].snippet.title,
- author: data.items[0].snippet.channelTitle,
- thumbnail: data.items[0].snippet.thumbnails.default.url,
- duration
- };
-
- return next(null, false, youtubeVideo);
- })
- .catch(next);
- },
- (video, youtubeVideo, next) => {
- if (video) return next(null, video, true);
- return YouTubeModule.runJob("CREATE_VIDEOS", { youtubeVideos: youtubeVideo }, this)
- .then(res => {
- if (res.youtubeVideos.length === 1) next(null, res.youtubeVideos[0], false)
- else next("YouTube video not found.")
- })
- .catch(next);
- }
- ],
- (err, video, existing) => {
- if (err) reject(new Error(err));
- else resolve({ video, existing });
- }
- )
- });
- }
- /**
- * Remove YouTube videos
- *
- * @param {object} payload - an object containing the payload
- * @param {string} payload.videoIds - Array of youtubeVideo ObjectIds
- * @returns {Promise} - returns a promise (resolve, reject)
- */
- REMOVE_VIDEOS(payload) {
- return new Promise((resolve, reject) => {
- let videoIds = payload.videoIds;
- if (!Array.isArray(videoIds)) videoIds = [videoIds];
- async.waterfall(
- [
- next => {
- if (!videoIds.every(videoId => mongoose.Types.ObjectId.isValid(videoId)))
- next("One or more videoIds are not a valid ObjectId.");
- else {
- YouTubeModule.youtubeVideoModel.find({_id: { $in: videoIds }}, (err, videos) => {
- if (err) next(err);
- else next(null, videos.map(video => video.youtubeId));
- });
- }
- },
- (youtubeIds, next) => {
- SongsModule.SongModel.find({ youtubeId: { $in: youtubeIds } }, (err, songs) => {
- if (err) next(err);
- else {
- const filteredIds = youtubeIds.filter(youtubeId => !songs.find(song => song.youtubeId === youtubeId));
- if (filteredIds.length < youtubeIds.length) next("One or more videos are attached to songs.");
- else next(null, filteredIds);
- }
- });
- },
- (youtubeIds, next) => {
- RatingsModule.runJob("REMOVE_RATINGS",{youtubeIds},this)
- .then(() => next(null, youtubeIds))
- .catch(next);
- },
- (youtubeIds, next) => {
- async.eachLimit(
- youtubeIds,
- 2,
- (youtubeId, next) => {
- async.waterfall(
- [
- next => {
- PlaylistsModule.playlistModel.find({ "songs.youtubeId": youtubeId }, (err, playlists) => {
- if (err) next(err);
- else {
- async.eachLimit(
- playlists,
- 1,
- (playlist, next) => {
- PlaylistsModule.runJob("REMOVE_FROM_PLAYLIST", { playlistId: playlist._id, youtubeId }, this)
- .then(() => next())
- .catch(next);
- },
- next
- );
- }
- });
- },
-
- next => {
- StationsModule.stationModel.find({ "queue.youtubeId": youtubeId }, (err, stations) => {
- if (err) next(err);
- else {
- async.eachLimit(
- stations,
- 1,
- (station, next) => {
- StationsModule.runJob("REMOVE_FROM_QUEUE", { stationId: station._id, youtubeId }, this)
- .then(() => next())
- .catch(err => {
- if (
- err === "Station not found" ||
- err === "Song is not currently in the queue."
- )
- next();
- else next(err);
- });
- },
- next
- );
- }
- });
- },
-
- next => {
- StationsModule.stationModel.find({ "currentSong.youtubeId": youtubeId }, (err, stations) => {
- if (err) next(err);
- else {
- async.eachLimit(
- stations,
- 1,
- (station, next) => {
- StationsModule.runJob(
- "SKIP_STATION",
- { stationId: station._id, natural: false },
- this
- )
- .then(() => {
- next();
- })
- .catch(err => {
- if (err.message === "Station not found.") next();
- else next(err);
- });
- },
- next
- );
- }
- });
- }
- ],
- next
- );
- },
- next
- );
- },
- next => {
- YouTubeModule.youtubeVideoModel.deleteMany({_id: { $in: videoIds }}, next);
- },
- (res, next) => {
- CacheModule.runJob("PUB", {
- channel: "youtube.removeVideos",
- value: videoIds
- }).then(next).catch(err => next(err));
- }
- ],
- err => {
- if (err) reject(new Error(err));
- else resolve();
- }
- )
- });
- }
- /**
- * Request a set of YouTube videos
- *
- * @param {object} payload - an object containing the payload
- * @param {string} payload.url - the url of the the YouTube playlist or channel
- * @param {boolean} payload.musicOnly - whether to only get music from the playlist/channel
- * @param {boolean} payload.returnVideos - whether to return videos
- * @returns {Promise} - returns a promise (resolve, reject)
- */
- REQUEST_SET(payload) {
- return new Promise((resolve, reject) => {
- async.waterfall(
- [
- next => {
- const playlistRegex = /[\\?&]list=([^&#]*)/;
- const channelRegex =
- /\.[\w]+\/(?:(?:channel\/(UC[0-9A-Za-z_-]{21}[AQgw]))|(?:user\/?([\w-]+))|(?:c\/?([\w-]+))|(?:\/?([\w-]+)))/;
- if (playlistRegex.exec(payload.url) || channelRegex.exec(payload.url))
- YouTubeModule.runJob(
- playlistRegex.exec(payload.url) ? "GET_PLAYLIST" : "GET_CHANNEL",
- {
- url: payload.url,
- musicOnly: payload.musicOnly
- },
- this
- )
- .then(res => {
- next(null, res.songs);
- })
- .catch(next);
- else next("Invalid YouTube URL.");
- },
- (youtubeIds, next) => {
- let successful = 0;
- let videos = {};
- let failed = 0;
- let alreadyInDatabase = 0;
-
- if (youtubeIds.length === 0) next();
-
- async.eachOfLimit(
- youtubeIds,
- 1,
- (youtubeId, index, next2) => {
- YouTubeModule.runJob("GET_VIDEO", { identifier: youtubeId, createMissing: true }, this)
- .then(res => {
- successful += 1;
- if (res.existing) alreadyInDatabase += 1;
- if (res.video) videos[index] = res.video;
- })
- .catch(() => {
- failed += 1;
- })
- .finally(() => {
- next2();
- });
- },
- () => {
- if (payload.returnVideos)
- videos = Object.keys(videos)
- .sort()
- .map(key => videos[key]);
-
- next(null, { successful, failed, alreadyInDatabase, videos });
- }
- );
- }
- ],
- (err, response) => {
- if (err) reject(new Error(err));
- else resolve(response);
- }
- )
- });
- }
- }
- export default new _YouTubeModule();
|