| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786 | import mongoose from "mongoose";import async from "async";import isLoginRequired from "../hooks/loginRequired";import { useHasPermission } from "../hooks/hasPermission";// eslint-disable-next-lineimport moduleManager from "../../index";const DBModule = moduleManager.modules.db;const CacheModule = moduleManager.modules.cache;const UtilsModule = moduleManager.modules.utils;const YouTubeModule = moduleManager.modules.youtube;const MediaModule = moduleManager.modules.media;export default {	/**	 * Returns details about the YouTube quota usage	 * @returns {{status: string, data: object}}	 */	getQuotaStatus: useHasPermission("admin.view.youtube", function getQuotaStatus(session, fromDate, cb) {		YouTubeModule.runJob("GET_QUOTA_STATUS", { fromDate }, this)			.then(response => {				this.log("SUCCESS", "YOUTUBE_GET_QUOTA_STATUS", `Getting quota status was successful.`);				return cb({ status: "success", data: { status: response.status } });			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log("ERROR", "YOUTUBE_GET_QUOTA_STATUS", `Getting quota status failed. "${err}"`);				return cb({ status: "error", message: err });			});	}),	/**	 * Returns YouTube quota chart data	 * @param {object} session - the session object automatically added by the websocket	 * @param timePeriod - either hours or days	 * @param startDate - beginning date	 * @param endDate - end date	 * @param dataType - either usage or count	 * @returns {{status: string, data: object}}	 */	getQuotaChartData: useHasPermission(		"admin.view.youtube",		function getQuotaChartData(session, timePeriod, startDate, endDate, dataType, cb) {			YouTubeModule.runJob(				"GET_QUOTA_CHART_DATA",				{ timePeriod, startDate: new Date(startDate), endDate: new Date(endDate), dataType },				this			)				.then(data => {					this.log("SUCCESS", "YOUTUBE_GET_QUOTA_CHART_DATA", `Getting quota chart data was successful.`);					return cb({ status: "success", data });				})				.catch(async err => {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log("ERROR", "YOUTUBE_GET_QUOTA_CHART_DATA", `Getting quota chart data failed. "${err}"`);					return cb({ status: "error", message: err });				});		}	),	/**	 * Gets api requests, used in the admin youtube page by the AdvancedTable component	 * @param {object} session - the session object automatically added by the websocket	 * @param page - the page	 * @param pageSize - the size per page	 * @param properties - the properties to return for each news item	 * @param sort - the sort object	 * @param queries - the queries array	 * @param operator - the operator for queries	 * @param cb	 */	getApiRequests: useHasPermission(		"admin.view.youtube",		async function getApiRequests(session, page, pageSize, properties, sort, queries, operator, cb) {			async.waterfall(				[					next => {						DBModule.runJob(							"GET_DATA",							{								page,								pageSize,								properties,								sort,								queries,								operator,								modelName: "youtubeApiRequest",								blacklistedProperties: [],								specialProperties: {},								specialQueries: {}							},							this						)							.then(response => {								next(null, response);							})							.catch(err => {								next(err);							});					}				],				async (err, response) => {					if (err && err !== true) {						err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);						this.log("ERROR", "YOUTUBE_GET_API_REQUESTS", `Failed to get YouTube api requests. "${err}"`);						return cb({ status: "error", message: err });					}					this.log("SUCCESS", "YOUTUBE_GET_API_REQUESTS", `Fetched YouTube api requests successfully.`);					return cb({						status: "success",						message: "Successfully fetched YouTube api requests.",						data: response					});				}			);		}	),	/**	 * Returns a specific api request	 * @returns {{status: string, data: object}}	 */	getApiRequest: useHasPermission("youtube.getApiRequest", function getApiRequest(session, apiRequestId, cb) {		if (!mongoose.Types.ObjectId.isValid(apiRequestId))			return cb({ status: "error", message: "Api request id is not a valid ObjectId." });		return YouTubeModule.runJob("GET_API_REQUEST", { apiRequestId }, this)			.then(response => {				this.log(					"SUCCESS",					"YOUTUBE_GET_API_REQUEST",					`Getting api request with id ${apiRequestId} was successful.`				);				return cb({ status: "success", data: { apiRequest: response.apiRequest } });			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log(					"ERROR",					"YOUTUBE_GET_API_REQUEST",					`Getting api request with id ${apiRequestId} failed. "${err}"`				);				return cb({ status: "error", message: err });			});	}),	/**	 * Reset stored API requests	 * @returns {{status: string, data: object}}	 */	resetStoredApiRequests: useHasPermission(		"youtube.resetStoredApiRequests",		async function resetStoredApiRequests(session, cb) {			this.keepLongJob();			this.publishProgress({				status: "started",				title: "Reset stored API requests",				message: "Resetting stored API requests.",				id: this.toString()			});			await CacheModule.runJob("RPUSH", { key: `longJobs.${session.userId}`, value: this.toString() }, this);			await CacheModule.runJob(				"PUB",				{					channel: "longJob.added",					value: { jobId: this.toString(), userId: session.userId }				},				this			);			YouTubeModule.runJob("RESET_STORED_API_REQUESTS", {}, this)				.then(() => {					this.log(						"SUCCESS",						"YOUTUBE_RESET_STORED_API_REQUESTS",						`Resetting stored API requests was successful.`					);					this.publishProgress({						status: "success",						message: "Successfully reset stored YouTube API requests."					});					return cb({ status: "success", message: "Successfully reset stored YouTube API requests" });				})				.catch(async err => {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"YOUTUBE_RESET_STORED_API_REQUESTS",						`Resetting stored API requests failed. "${err}"`					);					this.publishProgress({						status: "error",						message: err					});					return cb({ status: "error", message: err });				});		}	),	/**	 * Remove stored API requests	 * @returns {{status: string, data: object}}	 */	removeStoredApiRequest: useHasPermission(		"youtube.removeStoredApiRequest",		function removeStoredApiRequest(session, requestId, cb) {			YouTubeModule.runJob("REMOVE_STORED_API_REQUEST", { requestId }, this)				.then(() => {					this.log(						"SUCCESS",						"YOUTUBE_REMOVE_STORED_API_REQUEST",						`Removing stored API request "${requestId}" was successful.`					);					return cb({ status: "success", message: "Successfully removed stored YouTube API request" });				})				.catch(async err => {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"YOUTUBE_REMOVE_STORED_API_REQUEST",						`Removing stored API request "${requestId}" failed. "${err}"`					);					return cb({ status: "error", message: err });				});		}	),	/**	 * Gets videos, used in the admin youtube page by the AdvancedTable component	 * @param {object} session - the session object automatically added by the websocket	 * @param page - the page	 * @param pageSize - the size per page	 * @param properties - the properties to return for each news item	 * @param sort - the sort object	 * @param queries - the queries array	 * @param operator - the operator for queries	 * @param {Function} cb - gets called with the result	 */	getVideos: useHasPermission(		"admin.view.youtubeVideos",		async function getVideos(session, page, pageSize, properties, sort, queries, operator, cb) {			async.waterfall(				[					next => {						DBModule.runJob(							"GET_DATA",							{								page,								pageSize,								properties,								sort,								queries,								operator,								modelName: "youtubeVideo",								blacklistedProperties: [],								specialProperties: {									songId: [										// Fetch songs from songs collection with a matching mediaSource, which we first need to assemble										{											$lookup: {												from: "songs",												let: {													mediaSource: { $concat: ["youtube:", "$youtubeId"] }												},												pipeline: [													{														$match: {															$expr: { $eq: ["$mediaSource", "$$mediaSource"] }														}													}												],												as: "song"											}										},										// Turn the array of songs returned in the last step into one object, since only one song should have been returned maximum										{											$unwind: {												path: "$song",												preserveNullAndEmptyArrays: true											}										},										// Add new field songId, which grabs the song object's _id and tries turning it into a string										{											$addFields: {												songId: {													$convert: {														input: "$song._id",														to: "string",														onError: "",														onNull: ""													}												}											}										},										// Cleanup, don't return the song object for any further steps										{											$project: {												song: 0											}										}									]								},								specialQueries: {},								specialFilters: {									importJob: importJobId => [										{											$lookup: {												from: "importjobs",												let: { youtubeId: "$youtubeId" },												pipeline: [													{														$match: {															_id: mongoose.Types.ObjectId(importJobId)														}													},													{														$addFields: {															importJob: {																$in: ["$$youtubeId", "$response.successfulVideoIds"]															}														}													},													{														$project: {															importJob: 1,															_id: 0														}													}												],												as: "importJob"											}										},										{											$unwind: "$importJob"										},										{											$set: {												importJob: "$importJob.importJob"											}										}									]								}							},							this						)							.then(response => {								next(null, response);							})							.catch(err => {								next(err);							});					}				],				async (err, response) => {					if (err && err !== true) {						err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);						this.log("ERROR", "YOUTUBE_GET_VIDEOS", `Failed to get YouTube videos. "${err}"`);						return cb({ status: "error", message: err });					}					this.log("SUCCESS", "YOUTUBE_GET_VIDEOS", `Fetched YouTube videos successfully.`);					return cb({						status: "success",						message: "Successfully fetched YouTube videos.",						data: response					});				}			);		}	),	/**	 * Gets channels, used in the admin youtube page by the AdvancedTable component	 * @param {object} session - the session object automatically added by the websocket	 * @param page - the page	 * @param pageSize - the size per page	 * @param properties - the properties to return for each news item	 * @param sort - the sort object	 * @param queries - the queries array	 * @param operator - the operator for queries	 * @param {Function} cb - gets called with the result	 */	getChannels: useHasPermission(		"admin.view.youtubeChannels",		async function getChannels(session, page, pageSize, properties, sort, queries, operator, cb) {			async.waterfall(				[					next => {						DBModule.runJob(							"GET_DATA",							{								page,								pageSize,								properties,								sort,								queries,								operator,								modelName: "youtubeChannel",								blacklistedProperties: [],								specialProperties: {},								specialQueries: {},								specialFilters: {}							},							this						)							.then(response => {								next(null, response);							})							.catch(err => {								next(err);							});					}				],				async (err, response) => {					if (err && err !== true) {						err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);						this.log("ERROR", "YOUTUBE_GET_CHANNELS", `Failed to get YouTube channels. "${err}"`);						return cb({ status: "error", message: err });					}					this.log("SUCCESS", "YOUTUBE_GET_CHANNELS", `Fetched YouTube channels successfully.`);					return cb({						status: "success",						message: "Successfully fetched YouTube channels.",						data: response					});				}			);		}	),	/**	 * Get a YouTube video	 * @param {object} session - the session object automatically added by the websocket	 * @param {string} identifier - the identifier of the video to get	 * @param {string} createMissing - whether to create the video if it doesn't exist yet	 * @param {Function} cb - gets called with the result	 * @returns {{status: string, data: object}}	 */	getVideo: isLoginRequired(function getVideo(session, identifier, createMissing, cb) {		return YouTubeModule.runJob("GET_VIDEOS", { identifiers: [identifier], createMissing }, this)			.then(res => {				this.log("SUCCESS", "YOUTUBE_GET_VIDEO", `Fetching video was successful.`);				return cb({ status: "success", message: "Successfully fetched YouTube video", data: res.videos[0] });			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log("ERROR", "YOUTUBE_GET_VIDEO", `Fetching video failed. "${err}"`);				return cb({ status: "error", message: err });			});	}),	/**	 * Get a YouTube channel from ID	 * @param {object} session - the session object automatically added by the websocket	 * @param {string} channelId - the YouTube channel id to get	 * @param {Function} cb - gets called with the result	 * @returns {{status: string, data: object}}	 */	getChannel: useHasPermission("youtube.getChannel", function getChannel(session, channelId, cb) {		return YouTubeModule.runJob("GET_CHANNELS_FROM_IDS", { channelIds: [channelId] }, this)			.then(res => {				if (res.channels.length === 0) {					this.log("ERROR", "YOUTUBE_GET_CHANNELS_FROM_IDS", `Fetching channel failed.`);					return cb({ status: "error", message: "Failed to get channel" });				}				this.log("SUCCESS", "YOUTUBE_GET_CHANNELS_FROM_IDS", `Fetching channel was successful.`);				return cb({					status: "success",					message: "Successfully fetched YouTube channel",					data: res.channels[0]				});			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log("ERROR", "YOUTUBE_GET_CHANNELS_FROM_IDS", `Fetching video failed. "${err}"`);				return cb({ status: "error", message: err });			});	}),	/**	 * Remove YouTube videos	 * @param {object} session - the session object automatically added by the websocket	 * @param {Array} videoIds - the YouTube video ids to remove	 * @param {Function} cb - gets called with the result	 * @returns {{status: string, data: object}}	 */	removeVideos: useHasPermission("youtube.removeVideos", async function removeVideos(session, videoIds, cb) {		this.keepLongJob();		this.publishProgress({			status: "started",			title: "Bulk remove YouTube videos",			message: "Bulk removing YouTube videos.",			id: this.toString()		});		await CacheModule.runJob("RPUSH", { key: `longJobs.${session.userId}`, value: this.toString() }, this);		await CacheModule.runJob(			"PUB",			{				channel: "longJob.added",				value: { jobId: this.toString(), userId: session.userId }			},			this		);		YouTubeModule.runJob("REMOVE_VIDEOS", { videoIds }, this)			.then(() => {				this.log("SUCCESS", "YOUTUBE_REMOVE_VIDEOS", `Removing videos was successful.`);				this.publishProgress({					status: "success",					message: "Successfully removed YouTube videos."				});				return cb({ status: "success", message: "Successfully removed YouTube videos" });			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log("ERROR", "YOUTUBE_REMOVE_VIDEOS", `Removing videos failed. "${err}"`);				this.publishProgress({					status: "error",					message: err				});				return cb({ status: "error", message: err });			});	}),	/**	 * Gets missing YouTube video's from all playlists, stations and songs	 * @param {object} session - the session object automatically added by the websocket	 * @param {Function} cb - gets called with the result	 * @returns {{status: string, data: object}}	 */	getMissingVideos: useHasPermission("youtube.getMissingVideos", async function getMissingVideos(session, cb) {		this.keepLongJob();		this.publishProgress({			status: "started",			title: "Get missing YouTube videos",			message: "Fetching missing YouTube videos.",			id: this.toString()		});		await CacheModule.runJob("RPUSH", { key: `longJobs.${session.userId}`, value: this.toString() }, this);		await CacheModule.runJob(			"PUB",			{				channel: "longJob.added",				value: { jobId: this.toString(), userId: session.userId }			},			this		);		return YouTubeModule.runJob("GET_MISSING_VIDEOS", {}, this)			.then(response => {				this.log("SUCCESS", "YOUTUBE_GET_MISSING_VIDEOS", `Getting missing videos was successful.`);				this.publishProgress({					status: "success",					message: "Successfully fetched missing YouTube videos."				});				return cb({ status: "success", data: { ...response } });			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log("ERROR", "YOUTUBE_GET_MISSING_VIDEOS", `Getting missing videos failed. "${err}"`);				this.publishProgress({					status: "error",					message: err				});				return cb({ status: "error", message: err });			});	}),	/**	 * Updates YouTube video's from version 1 to version 2, by re-fetching the video's	 * @param {object} session - the session object automatically added by the websocket	 * @param {Function} cb - gets called with the result	 * @returns {{status: string, data: object}}	 */	updateVideosV1ToV2: useHasPermission("youtube.updateVideosV1ToV2", async function updateVideosV1ToV2(session, cb) {		this.keepLongJob();		this.publishProgress({			status: "started",			title: "Update YouTube videos to v2",			message: "Updating YouTube videos from v1 to v2.",			id: this.toString()		});		await CacheModule.runJob("RPUSH", { key: `longJobs.${session.userId}`, value: this.toString() }, this);		await CacheModule.runJob(			"PUB",			{				channel: "longJob.added",				value: { jobId: this.toString(), userId: session.userId }			},			this		);		return YouTubeModule.runJob("UPDATE_VIDEOS_V1_TO_V2", {}, this)			.then(response => {				this.log("SUCCESS", "YOUTUBE_UPDATE_VIDEOS_V1_TO_V2", `Updating v1 videos to v2 was successful.`);				this.publishProgress({					status: "success",					message: "Successfully updated YouTube videos from v1 to v2."				});				return cb({ status: "success", data: { ...response } });			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log("ERROR", "YOUTUBE_UPDATE_VIDEOS_V1_TO_V2", `Updating v1 videos to v2 failed. "${err}"`);				this.publishProgress({					status: "error",					message: err				});				return cb({ status: "error", message: err });			});	}),	/**	 * Requests a set of YouTube videos	 * @param {object} session - the session object automatically added by the websocket	 * @param {string} url - the url of the the YouTube playlist	 * @param {boolean} musicOnly - whether to only get music from the playlist	 * @param {boolean} musicOnly - whether to return videos	 * @param {Function} cb - gets called with the result	 */	requestSet: isLoginRequired(function requestSet(session, url, musicOnly, returnVideos, cb) {		YouTubeModule.runJob("REQUEST_SET", { url, musicOnly, returnVideos }, this)			.then(response => {				this.log(					"SUCCESS",					"REQUEST_SET",					`Successfully imported a YouTube playlist to be requested for user "${session.userId}".`				);				return cb({					status: "success",					message: `Playlist is done importing.`,					videos: returnVideos ? response.videos : null				});			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log(					"ERROR",					"REQUEST_SET",					`Importing a YouTube playlist to be requested failed for user "${session.userId}". "${err}"`				);				return cb({ status: "error", message: err });			});	}),	/**	 * Requests a set of YouTube videos as an admin	 * @param {object} session - the session object automatically added by the websocket	 * @param {string} url - the url of the the YouTube playlist	 * @param {boolean} musicOnly - whether to only get music from the playlist	 * @param {boolean} musicOnly - whether to return videos	 * @param {Function} cb - gets called with the result	 */	requestSetAdmin: useHasPermission(		"youtube.requestSetAdmin",		async function requestSetAdmin(session, url, musicOnly, returnVideos, cb) {			const importJobModel = await DBModule.runJob("GET_MODEL", { modelName: "importJob" }, this);			this.keepLongJob();			this.publishProgress({				status: "started",				title: "Import playlist",				message: "Importing playlist.",				id: this.toString()			});			await CacheModule.runJob("RPUSH", { key: `longJobs.${session.userId}`, value: this.toString() }, this);			await CacheModule.runJob(				"PUB",				{					channel: "longJob.added",					value: { jobId: this.toString(), userId: session.userId }				},				this			);			async.waterfall(				[					next => {						importJobModel.create(							{								type: "youtube",								query: {									url,									musicOnly								},								status: "in-progress",								response: {},								requestedBy: session.userId,								requestedAt: Date.now()							},							next						);					},					(importJob, next) => {						YouTubeModule.runJob("REQUEST_SET", { url, musicOnly, returnVideos }, this)							.then(response => {								next(null, importJob, response);							})							.catch(err => {								next(err, importJob);							});					},					(importJob, response, next) => {						importJobModel.updateOne(							{ _id: importJob._id },							{								$set: {									status: "success",									response: {										failed: response.failed,										successful: response.successful,										alreadyInDatabase: response.alreadyInDatabase,										successfulVideoIds: response.successfulVideoIds,										failedVideoIds: response.failedVideoIds									}								}							},							err => {								if (err) next(err, importJob);								else									MediaModule.runJob("UPDATE_IMPORT_JOBS", { jobIds: importJob._id })										.then(() => next(null, importJob, response))										.catch(error => next(error, importJob));							}						);					}				],				async (err, importJob, response) => {					if (err) {						err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);						this.log(							"ERROR",							"REQUEST_SET_ADMIN",							`Importing a YouTube playlist to be requested failed for admin "${session.userId}". "${err}"`						);						importJobModel.updateOne({ _id: importJob._id }, { $set: { status: "error" } });						MediaModule.runJob("UPDATE_IMPORT_JOBS", { jobIds: importJob._id });						return cb({ status: "error", message: err });					}					this.log(						"SUCCESS",						"REQUEST_SET_ADMIN",						`Successfully imported a YouTube playlist to be requested for admin "${session.userId}".`					);					this.publishProgress({						status: "success",						message: `Playlist is done importing.`					});					return cb({						status: "success",						message: `Playlist is done importing.`,						videos: returnVideos ? response.videos : null					});				}			);		}	),	/**	 * Gets missing YouTube channels	 * @param {object} session - the session object automatically added by the websocket	 * @param {Function} cb - gets called with the result	 * @returns {{status: string, data: object}}	 */	getMissingChannels: useHasPermission("youtube.getMissingChannels", function getMissingChannels(session, cb) {		return YouTubeModule.runJob("GET_MISSING_CHANNELS", {}, this)			.then(response => {				this.log("SUCCESS", "YOUTUBE_GET_MISSING_CHANNELS", `Getting missing YouTube channels was successful.`);				return cb({ status: "success", data: { ...response } });			})			.catch(async err => {				err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);				this.log("ERROR", "YOUTUBE_GET_MISSING_CHANNELS", `Getting missing YouTube channels failed. "${err}"`);				return cb({ status: "error", message: err });			});	})};
 |