youtube.js 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746
  1. import mongoose from "mongoose";
  2. import async from "async";
  3. import config from "config";
  4. import * as rax from "retry-axios";
  5. import axios from "axios";
  6. import CoreClass from "../core";
  7. class RateLimitter {
  8. /**
  9. * Constructor
  10. *
  11. * @param {number} timeBetween - The time between each allowed YouTube request
  12. */
  13. constructor(timeBetween) {
  14. this.dateStarted = Date.now();
  15. this.timeBetween = timeBetween;
  16. }
  17. /**
  18. * Returns a promise that resolves whenever the ratelimit of a YouTube request is done
  19. *
  20. * @returns {Promise} - promise that gets resolved when the rate limit allows it
  21. */
  22. continue() {
  23. return new Promise(resolve => {
  24. if (Date.now() - this.dateStarted >= this.timeBetween) resolve();
  25. else setTimeout(resolve, this.dateStarted + this.timeBetween - Date.now());
  26. });
  27. }
  28. /**
  29. * Restart the rate limit timer
  30. */
  31. restart() {
  32. this.dateStarted = Date.now();
  33. }
  34. }
  35. let YouTubeModule;
  36. let CacheModule;
  37. let DBModule;
  38. let MediaModule;
  39. let SongsModule;
  40. let StationsModule;
  41. let PlaylistsModule;
  42. let WSModule;
  43. const isQuotaExceeded = apiCalls => {
  44. const reversedApiCalls = apiCalls.slice().reverse();
  45. const quotas = config.get("apis.youtube.quotas").slice();
  46. const sortedQuotas = quotas.sort((a, b) => a.limit > b.limit);
  47. let quotaExceeded = false;
  48. sortedQuotas.forEach(quota => {
  49. let quotaUsed = 0;
  50. let dateCutoff = null;
  51. if (quota.type === "QUERIES_PER_MINUTE") dateCutoff = new Date() - 1000 * 60;
  52. else if (quota.type === "QUERIES_PER_100_SECONDS") dateCutoff = new Date() - 1000 * 100;
  53. else if (quota.type === "QUERIES_PER_DAY") {
  54. // Quota resets at midnight PT, this is my best guess to convert the current date to the last midnight PT
  55. dateCutoff = new Date();
  56. dateCutoff.setUTCMilliseconds(0);
  57. dateCutoff.setUTCSeconds(0);
  58. dateCutoff.setUTCMinutes(0);
  59. dateCutoff.setUTCHours(dateCutoff.getUTCHours() - 7);
  60. dateCutoff.setUTCHours(0);
  61. }
  62. reversedApiCalls.forEach(apiCall => {
  63. if (apiCall.date >= dateCutoff) quotaUsed += apiCall.quotaCost;
  64. });
  65. if (quotaUsed >= quota.limit) {
  66. quotaExceeded = true;
  67. }
  68. });
  69. return quotaExceeded;
  70. };
  71. class _YouTubeModule extends CoreClass {
  72. // eslint-disable-next-line require-jsdoc
  73. constructor() {
  74. super("youtube", {
  75. concurrency: 10,
  76. priorities: {
  77. GET_PLAYLIST: 11
  78. }
  79. });
  80. YouTubeModule = this;
  81. }
  82. /**
  83. * Initialises the activities module
  84. *
  85. * @returns {Promise} - returns promise (reject, resolve)
  86. */
  87. async initialize() {
  88. CacheModule = this.moduleManager.modules.cache;
  89. DBModule = this.moduleManager.modules.db;
  90. MediaModule = this.moduleManager.modules.media;
  91. SongsModule = this.moduleManager.modules.songs;
  92. StationsModule = this.moduleManager.modules.stations;
  93. PlaylistsModule = this.moduleManager.modules.playlists;
  94. WSModule = this.moduleManager.modules.ws;
  95. this.youtubeApiRequestModel = this.YoutubeApiRequestModel = await DBModule.runJob("GET_MODEL", {
  96. modelName: "youtubeApiRequest"
  97. });
  98. this.youtubeVideoModel = this.YoutubeVideoModel = await DBModule.runJob("GET_MODEL", {
  99. modelName: "youtubeVideo"
  100. });
  101. return new Promise(resolve => {
  102. CacheModule.runJob("SUB", {
  103. channel: "youtube.removeYoutubeApiRequest",
  104. cb: requestId => {
  105. WSModule.runJob("EMIT_TO_ROOM", {
  106. room: `view-api-request.${requestId}`,
  107. args: ["event:youtubeApiRequest.removed"]
  108. });
  109. WSModule.runJob("EMIT_TO_ROOM", {
  110. room: "admin.youtube",
  111. args: ["event:admin.youtubeApiRequest.removed", { data: { requestId } }]
  112. });
  113. }
  114. });
  115. CacheModule.runJob("SUB", {
  116. channel: "youtube.removeVideos",
  117. cb: videoIds => {
  118. const videos = Array.isArray(videoIds) ? videoIds : [videoIds];
  119. videos.forEach(videoId => {
  120. WSModule.runJob("EMIT_TO_ROOM", {
  121. room: `view-youtube-video.${videoId}`,
  122. args: ["event:youtubeVideo.removed"]
  123. });
  124. WSModule.runJob("EMIT_TO_ROOM", {
  125. room: "admin.youtubeVideos",
  126. args: ["event:admin.youtubeVideo.removed", { data: { videoId } }]
  127. });
  128. WSModule.runJob("EMIT_TO_ROOMS", {
  129. rooms: ["import-album", "edit-songs"],
  130. args: ["event:admin.youtubeVideo.removed", { videoId }]
  131. });
  132. });
  133. }
  134. });
  135. this.rateLimiter = new RateLimitter(config.get("apis.youtube.rateLimit"));
  136. this.requestTimeout = config.get("apis.youtube.requestTimeout");
  137. this.axios = axios.create();
  138. this.axios.defaults.raxConfig = {
  139. instance: this.axios,
  140. retry: config.get("apis.youtube.retryAmount"),
  141. noResponseRetries: config.get("apis.youtube.retryAmount")
  142. };
  143. rax.attach(this.axios);
  144. this.youtubeApiRequestModel
  145. .find(
  146. { date: { $gte: new Date() - 2 * 24 * 60 * 60 * 1000 } },
  147. { date: true, quotaCost: true, _id: false }
  148. )
  149. .sort({ date: 1 })
  150. .exec((err, youtubeApiRequests) => {
  151. if (err) console.log("Couldn't load YouTube API requests.");
  152. else {
  153. this.apiCalls = youtubeApiRequests;
  154. resolve();
  155. }
  156. });
  157. });
  158. }
  159. /**
  160. * Fetches a list of songs from Youtube's API
  161. *
  162. * @param {object} payload - object that contains the payload
  163. * @param {string} payload.query - the query we'll pass to youtubes api
  164. * @param {string} payload.pageToken - (optional) if this exists, will search search youtube for a specific page reference
  165. * @returns {Promise} - returns promise (reject, resolve)
  166. */
  167. SEARCH(payload) {
  168. const params = {
  169. part: "snippet",
  170. q: payload.query,
  171. type: "video",
  172. maxResults: 10
  173. };
  174. if (payload.pageToken) params.pageToken = payload.pageToken;
  175. return new Promise((resolve, reject) => {
  176. YouTubeModule.runJob(
  177. "API_SEARCH",
  178. {
  179. params
  180. },
  181. this
  182. )
  183. .then(({ response }) => {
  184. const { data } = response;
  185. return resolve(data);
  186. })
  187. .catch(err => {
  188. YouTubeModule.log("ERROR", "SEARCH", `${err.message}`);
  189. if (err.message === "Searching with YouTube is disabled.") return reject(err);
  190. return reject(new Error("An error has occured. Please try again later."));
  191. });
  192. });
  193. }
  194. /**
  195. * Returns details about the YouTube quota usage
  196. *
  197. * @param {object} payload - object that contains the payload
  198. * @param {string} payload.fromDate - date to select requests up to
  199. * @returns {Promise} - returns promise (reject, resolve)
  200. */
  201. GET_QUOTA_STATUS(payload) {
  202. return new Promise((resolve, reject) => {
  203. const fromDate = payload.fromDate ? new Date(payload.fromDate) : new Date();
  204. YouTubeModule.youtubeApiRequestModel
  205. .find(
  206. { date: { $gte: fromDate - 2 * 24 * 60 * 60 * 1000, $lte: fromDate } },
  207. { date: true, quotaCost: true, _id: false }
  208. )
  209. .sort({ date: 1 })
  210. .exec((err, youtubeApiRequests) => {
  211. if (err) reject(new Error("Couldn't load YouTube API requests."));
  212. else {
  213. const reversedApiCalls = youtubeApiRequests.slice().reverse();
  214. const quotas = config.get("apis.youtube.quotas").slice();
  215. const sortedQuotas = quotas.sort((a, b) => a.limit > b.limit);
  216. const status = {};
  217. sortedQuotas.forEach(quota => {
  218. status[quota.type] = {
  219. title: quota.title,
  220. quotaUsed: 0,
  221. limit: quota.limit,
  222. quotaExceeded: false
  223. };
  224. let dateCutoff = null;
  225. if (quota.type === "QUERIES_PER_MINUTE") dateCutoff = new Date(fromDate) - 1000 * 60;
  226. else if (quota.type === "QUERIES_PER_100_SECONDS")
  227. dateCutoff = new Date(fromDate) - 1000 * 100;
  228. else if (quota.type === "QUERIES_PER_DAY") {
  229. // Quota resets at midnight PT, this is my best guess to convert the current date to the last midnight PT
  230. dateCutoff = new Date(fromDate);
  231. dateCutoff.setUTCMilliseconds(0);
  232. dateCutoff.setUTCSeconds(0);
  233. dateCutoff.setUTCMinutes(0);
  234. dateCutoff.setUTCHours(dateCutoff.getUTCHours() - 7);
  235. dateCutoff.setUTCHours(0);
  236. }
  237. reversedApiCalls.forEach(apiCall => {
  238. if (apiCall.date >= dateCutoff) status[quota.type].quotaUsed += apiCall.quotaCost;
  239. });
  240. if (status[quota.type].quotaUsed >= quota.limit && !status[quota.type].quotaExceeded)
  241. status[quota.type].quotaExceeded = true;
  242. });
  243. resolve({ status });
  244. }
  245. });
  246. });
  247. }
  248. /**
  249. * Returns YouTube quota chart data
  250. *
  251. * @param {object} payload - object that contains the payload
  252. * @param {string} payload.timePeriod - either hours or days
  253. * @param {string} payload.startDate - beginning date
  254. * @param {string} payload.endDate - end date
  255. * @param {string} payload.dataType - either usage or count
  256. * @returns {Promise} - returns promise (reject, resolve)
  257. */
  258. GET_QUOTA_CHART_DATA(payload) {
  259. return new Promise((resolve, reject) => {
  260. const { timePeriod, startDate, endDate, dataType } = payload;
  261. // const timePeriod = "hours";
  262. // const startDate = new Date("2022-05-20 00:00:00");
  263. // const endDate = new Date("2022-05-21 00:00:00");
  264. // const timePeriod = "days";
  265. // const startDate = new Date("2022-05-15 00:00:00");
  266. // const endDate = new Date("2022-05-21 00:00:00");
  267. // const endDate = new Date("2022-05-30 00:00:00");
  268. // const dataType = "usage";
  269. // const dataType = "count";
  270. async.waterfall(
  271. [
  272. next => {
  273. let timeRanges = [];
  274. if (timePeriod === "hours") {
  275. startDate.setMinutes(0, 0, 0);
  276. endDate.setMinutes(0, 0, 0);
  277. const lastDate = new Date(startDate);
  278. do {
  279. const newDate = new Date(lastDate.getTime() + 1000 * 60 * 60);
  280. timeRanges.push({
  281. startDate: new Date(lastDate),
  282. endDate: newDate
  283. });
  284. lastDate.setTime(newDate.getTime());
  285. } while (lastDate.getTime() < endDate.getTime());
  286. if (timeRanges.length === 0 || timeRanges.length > 24)
  287. return next("No valid time ranges specified.");
  288. timeRanges = timeRanges.map(timeRange => ({
  289. ...timeRange,
  290. label: `${timeRange.startDate.getHours().toString().padStart(2, "0")}:00`
  291. }));
  292. } else if (timePeriod === "days") {
  293. startDate.setHours(0, 0, 0, 0);
  294. endDate.setHours(0, 0, 0, 0);
  295. const lastDate = new Date(startDate);
  296. do {
  297. const newDate = new Date(lastDate.getTime() + 1000 * 60 * 60 * 24);
  298. timeRanges.push({
  299. startDate: new Date(lastDate),
  300. endDate: newDate
  301. });
  302. lastDate.setTime(newDate.getTime());
  303. } while (lastDate.getTime() < endDate.getTime());
  304. if (timeRanges.length === 0 || timeRanges.length > 31)
  305. return next("No valid time ranges specified.");
  306. const days = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
  307. if (timeRanges.length <= 7)
  308. timeRanges = timeRanges.map(timeRange => ({
  309. ...timeRange,
  310. label: days[timeRange.startDate.getDay()]
  311. }));
  312. else
  313. timeRanges = timeRanges.map(timeRange => ({
  314. ...timeRange,
  315. label: `${timeRange.startDate.getDate().toString().padStart(2, "0")}-${(
  316. timeRange.startDate.getMonth() + 1
  317. )
  318. .toString()
  319. .padStart(2, "0")}`
  320. }));
  321. }
  322. return next(null, timeRanges);
  323. },
  324. (timeRanges, next) => {
  325. YouTubeModule.youtubeApiRequestModel
  326. .find({
  327. date: { $gte: startDate, $lte: endDate }
  328. })
  329. .sort({ date: 1 })
  330. .exec((err, youtubeApiRequests) => {
  331. next(err, timeRanges, youtubeApiRequests);
  332. });
  333. },
  334. (timeRanges, youtubeApiRequests, next) => {
  335. const regex = /https:\/\/www\.googleapis\.com\/youtube\/v3\/(.+)/;
  336. const requestTypes = Object.fromEntries(
  337. youtubeApiRequests
  338. .map(youtubeApiRequest => regex.exec(youtubeApiRequest.url)[1])
  339. .filter((requestType, index, array) => array.indexOf(requestType) === index)
  340. .map(requestType => [requestType, 0])
  341. );
  342. timeRanges = timeRanges.map(timeRange => ({
  343. ...timeRange,
  344. data: { total: 0, ...requestTypes }
  345. }));
  346. youtubeApiRequests.forEach(youtubeApiRequest => {
  347. timeRanges.forEach(timeRange => {
  348. if (
  349. timeRange.startDate <= youtubeApiRequest.date &&
  350. timeRange.endDate >= youtubeApiRequest.date
  351. ) {
  352. const requestType = regex.exec(youtubeApiRequest.url)[1];
  353. if (!timeRange.data[requestType]) timeRange.data[requestType] = 0;
  354. if (dataType === "usage") {
  355. timeRange.data[requestType] += youtubeApiRequest.quotaCost;
  356. timeRange.data.total += youtubeApiRequest.quotaCost;
  357. } else if (dataType === "count") {
  358. timeRange.data[requestType] += 1;
  359. timeRange.data.total += 1;
  360. }
  361. }
  362. });
  363. });
  364. next(null, timeRanges);
  365. },
  366. (timeRanges, next) => {
  367. const chartData = {};
  368. chartData.labels = timeRanges.map(timeRange => timeRange.label);
  369. const datasetTypes = Object.keys(timeRanges[0].data);
  370. const colors = {
  371. total: "rgb(2, 166, 242)",
  372. videos: "rgb(166, 2, 242)",
  373. search: "rgb(242, 2, 166)",
  374. channels: "rgb(2, 242, 166)",
  375. playlistItems: "rgb(242, 166, 2)"
  376. };
  377. chartData.datasets = datasetTypes.map(datasetType => {
  378. let label;
  379. switch (datasetType) {
  380. case "total":
  381. label = "Total";
  382. break;
  383. case "videos":
  384. label = "Videos";
  385. break;
  386. case "search":
  387. label = "Search";
  388. break;
  389. case "playlistItems":
  390. label = "Playlist Items";
  391. break;
  392. default:
  393. label = datasetType;
  394. }
  395. return {
  396. label,
  397. borderColor: colors[datasetType],
  398. backgroundColor: colors[datasetType],
  399. data: timeRanges.map(timeRange => timeRange.data[datasetType])
  400. };
  401. });
  402. next(null, chartData);
  403. }
  404. ],
  405. (err, chartData) => {
  406. if (err) reject(err);
  407. else resolve(chartData);
  408. }
  409. );
  410. });
  411. }
  412. /**
  413. * Gets the id of the channel upload playlist
  414. *
  415. * @param {object} payload - object that contains the payload
  416. * @param {string} payload.id - the id of the YouTube channel. Optional: can be left out if specifying a username.
  417. * @param {string} payload.username - the username of the YouTube channel. Only gets used if no id is specified.
  418. * @returns {Promise} - returns promise (reject, resolve)
  419. */
  420. GET_CHANNEL_UPLOADS_PLAYLIST_ID(payload) {
  421. return new Promise((resolve, reject) => {
  422. const params = {
  423. part: "id,contentDetails"
  424. };
  425. if (payload.id) params.id = payload.id;
  426. else params.forUsername = payload.username;
  427. YouTubeModule.runJob(
  428. "API_GET_CHANNELS",
  429. {
  430. params
  431. },
  432. this
  433. )
  434. .then(({ response }) => {
  435. const { data } = response;
  436. if (data.pageInfo.totalResults === 0) return reject(new Error("Channel not found."));
  437. const playlistId = data.items[0].contentDetails.relatedPlaylists.uploads;
  438. return resolve({ playlistId });
  439. })
  440. .catch(err => {
  441. YouTubeModule.log("ERROR", "GET_CHANNEL_UPLOADS_PLAYLIST_ID", `${err.message}`);
  442. if (err.message === "Request failed with status code 404")
  443. return reject(new Error("Channel not found. Is the channel public/unlisted?"));
  444. if (err.message === "Searching with YouTube is disabled.") return reject(err);
  445. return reject(new Error("An error has occured. Please try again later."));
  446. });
  447. });
  448. }
  449. /**
  450. * Gets the id of the channel from the custom URL
  451. *
  452. * @param {object} payload - object that contains the payload
  453. * @param {string} payload.customUrl - the customUrl of the YouTube channel
  454. * @returns {Promise} - returns promise (reject, resolve)
  455. */
  456. GET_CHANNEL_ID_FROM_CUSTOM_URL(payload) {
  457. return new Promise((resolve, reject) => {
  458. async.waterfall(
  459. [
  460. next => {
  461. const params = {
  462. part: "snippet",
  463. type: "channel",
  464. maxResults: 50
  465. };
  466. params.q = payload.customUrl;
  467. YouTubeModule.runJob(
  468. "API_SEARCH",
  469. {
  470. params
  471. },
  472. this
  473. )
  474. .then(({ response }) => {
  475. const { data } = response;
  476. if (data.pageInfo.totalResults === 0) return next("Channel not found.");
  477. const channelIds = data.items.map(item => item.id.channelId);
  478. return next(null, channelIds);
  479. })
  480. .catch(err => {
  481. next(err);
  482. });
  483. },
  484. (channelIds, next) => {
  485. const params = {
  486. part: "snippet",
  487. id: channelIds.join(","),
  488. maxResults: 50
  489. };
  490. YouTubeModule.runJob(
  491. "API_GET_CHANNELS",
  492. {
  493. params
  494. },
  495. this
  496. )
  497. .then(({ response }) => {
  498. const { data } = response;
  499. if (data.pageInfo.totalResults === 0) return next("Channel not found.");
  500. let channelId = null;
  501. data.items.forEach(item => {
  502. if (
  503. item.snippet.customUrl &&
  504. item.snippet.customUrl.toLowerCase() === payload.customUrl.toLowerCase()
  505. ) {
  506. channelId = item.id;
  507. }
  508. });
  509. if (!channelId) return next("Channel not found.");
  510. return next(null, channelId);
  511. })
  512. .catch(err => {
  513. next(err);
  514. });
  515. }
  516. ],
  517. (err, channelId) => {
  518. if (err) {
  519. YouTubeModule.log("ERROR", "GET_CHANNEL_ID_FROM_CUSTOM_URL", `${err.message || err}`);
  520. if (err.message === "Request failed with status code 404")
  521. return reject(new Error("Channel not found. Is the channel public/unlisted?"));
  522. if (err.message === "Searching with YouTube is disabled.") return reject(err);
  523. return reject(new Error("An error has occured. Please try again later."));
  524. }
  525. return resolve({ channelId });
  526. }
  527. );
  528. });
  529. }
  530. /**
  531. * Returns an array of songs taken from a YouTube playlist
  532. *
  533. * @param {object} payload - object that contains the payload
  534. * @param {boolean} payload.musicOnly - whether to return music videos or all videos in the playlist
  535. * @param {string} payload.url - the url of the YouTube playlist
  536. * @returns {Promise} - returns promise (reject, resolve)
  537. */
  538. GET_PLAYLIST(payload) {
  539. return new Promise((resolve, reject) => {
  540. const regex = /[\\?&]list=([^&#]*)/;
  541. const splitQuery = regex.exec(payload.url);
  542. if (!splitQuery) {
  543. YouTubeModule.log("ERROR", "GET_PLAYLIST", "Invalid YouTube playlist URL query.");
  544. reject(new Error("Invalid playlist URL."));
  545. return;
  546. }
  547. const playlistId = splitQuery[1];
  548. const maxPages = config.has("apis.youtube.maxPlaylistPages")
  549. ? Number.parseInt(config.get("apis.youtube.maxPlaylistPages"))
  550. : 20;
  551. let currentPage = 0;
  552. async.waterfall(
  553. [
  554. next => {
  555. let songs = [];
  556. let nextPageToken = "";
  557. async.whilst(
  558. next => {
  559. YouTubeModule.log(
  560. "INFO",
  561. `Getting playlist progress for job (${this.toString()}): ${
  562. songs.length
  563. } songs gotten so far. Is there a next page: ${nextPageToken !== undefined}.`
  564. );
  565. next(null, nextPageToken !== undefined && currentPage < maxPages);
  566. },
  567. next => {
  568. currentPage += 1;
  569. // Add 250ms delay between each job request
  570. setTimeout(() => {
  571. YouTubeModule.runJob("GET_PLAYLIST_PAGE", { playlistId, nextPageToken }, this)
  572. .then(response => {
  573. songs = songs.concat(response.songs);
  574. nextPageToken = response.nextPageToken;
  575. next();
  576. })
  577. .catch(err => next(err));
  578. }, 250);
  579. },
  580. err => next(err, songs)
  581. );
  582. },
  583. (songs, next) =>
  584. next(
  585. null,
  586. songs.map(song => song.contentDetails.videoId)
  587. ),
  588. (songs, next) => {
  589. if (!payload.musicOnly) return next(true, { songs });
  590. return YouTubeModule.runJob("FILTER_MUSIC_VIDEOS", { videoIds: songs.slice() }, this)
  591. .then(filteredSongs => next(null, { filteredSongs, songs }))
  592. .catch(next);
  593. }
  594. ],
  595. (err, response) => {
  596. if (err && err !== true) {
  597. YouTubeModule.log("ERROR", "GET_PLAYLIST", "Some error has occurred.", err.message);
  598. reject(new Error(err.message));
  599. } else {
  600. resolve({ songs: response.filteredSongs ? response.filteredSongs.videoIds : response.songs });
  601. }
  602. }
  603. );
  604. });
  605. }
  606. /**
  607. * Returns a a page from a YouTube playlist. Is used internally by GET_PLAYLIST and GET_CHANNEL.
  608. *
  609. * @param {object} payload - object that contains the payload
  610. * @param {boolean} payload.playlistId - the playlist id to get videos from
  611. * @param {boolean} payload.nextPageToken - the nextPageToken to use
  612. * @param {string} payload.url - the url of the YouTube playlist
  613. * @returns {Promise} - returns promise (reject, resolve)
  614. */
  615. GET_PLAYLIST_PAGE(payload) {
  616. return new Promise((resolve, reject) => {
  617. const params = {
  618. part: "contentDetails",
  619. playlistId: payload.playlistId,
  620. maxResults: 50
  621. };
  622. if (payload.nextPageToken) params.pageToken = payload.nextPageToken;
  623. YouTubeModule.runJob(
  624. "API_GET_PLAYLIST_ITEMS",
  625. {
  626. params
  627. },
  628. this
  629. )
  630. .then(({ response }) => {
  631. const { data } = response;
  632. const songs = data.items;
  633. if (data.nextPageToken) return resolve({ nextPageToken: data.nextPageToken, songs });
  634. return resolve({ songs });
  635. })
  636. .catch(err => {
  637. YouTubeModule.log("ERROR", "GET_PLAYLIST_PAGE", `${err.message}`);
  638. if (err.message === "Request failed with status code 404")
  639. return reject(new Error("Playlist not found. Is the playlist public/unlisted?"));
  640. return reject(new Error("An error has occured. Please try again later."));
  641. });
  642. });
  643. }
  644. /**
  645. * Filters a list of YouTube videos so that they only contains videos with music. Is used internally by GET_PLAYLIST
  646. *
  647. * @param {object} payload - object that contains the payload
  648. * @param {Array} payload.videoIds - an array of YouTube videoIds to filter through
  649. * @param {Array} payload.page - the current page/set of video's to get, starting at 0. If left null, 0 is assumed. Will recurse.
  650. * @returns {Promise} - returns promise (reject, resolve)
  651. */
  652. FILTER_MUSIC_VIDEOS(payload) {
  653. return new Promise((resolve, reject) => {
  654. const page = payload.page ? payload.page : 0;
  655. const videosPerPage = 50;
  656. const localVideoIds = payload.videoIds.splice(page * 50, videosPerPage);
  657. if (localVideoIds.length === 0) {
  658. resolve({ videoIds: [] });
  659. return;
  660. }
  661. const params = {
  662. part: "topicDetails",
  663. id: localVideoIds.join(","),
  664. maxResults: videosPerPage
  665. };
  666. YouTubeModule.runJob("API_GET_VIDEOS", { params }, this)
  667. .then(({ response }) => {
  668. const { data } = response;
  669. const videoIds = [];
  670. data.items.forEach(item => {
  671. const videoId = item.id;
  672. if (!item.topicDetails) return;
  673. if (item.topicDetails.topicCategories.indexOf("https://en.wikipedia.org/wiki/Music") !== -1)
  674. videoIds.push(videoId);
  675. });
  676. return YouTubeModule.runJob(
  677. "FILTER_MUSIC_VIDEOS",
  678. { videoIds: payload.videoIds, page: page + 1 },
  679. this
  680. )
  681. .then(result => resolve({ videoIds: videoIds.concat(result.videoIds) }))
  682. .catch(err => reject(err));
  683. })
  684. .catch(err => {
  685. YouTubeModule.log("ERROR", "FILTER_MUSIC_VIDEOS", `${err.message}`);
  686. return reject(new Error("Failed to find playlist from YouTube"));
  687. });
  688. });
  689. }
  690. /**
  691. * Returns an array of songs taken from a YouTube channel
  692. *
  693. * @param {object} payload - object that contains the payload
  694. * @param {boolean} payload.musicOnly - whether to return music videos or all videos in the channel
  695. * @param {boolean} payload.disableSearch - whether to allow searching for custom url/username
  696. * @param {string} payload.url - the url of the YouTube channel
  697. * @returns {Promise} - returns promise (reject, resolve)
  698. */
  699. GET_CHANNEL(payload) {
  700. return new Promise((resolve, reject) => {
  701. const regex =
  702. /\.[\w]+\/(?:(?:channel\/(UC[0-9A-Za-z_-]{21}[AQgw]))|(?:user\/?([\w-]+))|(?:c\/?([\w-]+))|(?:\/?([\w-]+)))/;
  703. const splitQuery = regex.exec(payload.url);
  704. if (!splitQuery) {
  705. YouTubeModule.log("ERROR", "GET_CHANNEL", "Invalid YouTube channel URL query.");
  706. reject(new Error("Invalid playlist URL."));
  707. return;
  708. }
  709. const channelId = splitQuery[1];
  710. const channelUsername = splitQuery[2];
  711. const channelCustomUrl = splitQuery[3];
  712. const channelUsernameOrCustomUrl = splitQuery[4];
  713. console.log(`Channel id: ${channelId}`);
  714. console.log(`Channel username: ${channelUsername}`);
  715. console.log(`Channel custom URL: ${channelCustomUrl}`);
  716. console.log(`Channel username or custom URL: ${channelUsernameOrCustomUrl}`);
  717. const disableSearch = payload.disableSearch || false;
  718. async.waterfall(
  719. [
  720. next => {
  721. const payload = {};
  722. if (channelId) payload.id = channelId;
  723. else if (channelUsername) payload.username = channelUsername;
  724. else return next(null, true, null);
  725. return YouTubeModule.runJob("GET_CHANNEL_UPLOADS_PLAYLIST_ID", payload, this)
  726. .then(({ playlistId }) => {
  727. next(null, false, playlistId);
  728. })
  729. .catch(err => {
  730. if (err.message === "Channel not found. Is the channel public/unlisted?")
  731. next(null, true, null);
  732. else next(err);
  733. });
  734. },
  735. (getUsernameFromCustomUrl, playlistId, next) => {
  736. if (!getUsernameFromCustomUrl) return next(null, playlistId);
  737. if (disableSearch)
  738. return next(
  739. "Importing with this type of URL is disabled. Please provide a channel URL with the channel ID."
  740. );
  741. const payload = {};
  742. if (channelCustomUrl) payload.customUrl = channelCustomUrl;
  743. else if (channelUsernameOrCustomUrl) payload.customUrl = channelUsernameOrCustomUrl;
  744. else return next("No proper URL provided.");
  745. return YouTubeModule.runJob("GET_CHANNEL_ID_FROM_CUSTOM_URL", payload, this)
  746. .then(({ channelId }) => {
  747. YouTubeModule.runJob("GET_CHANNEL_UPLOADS_PLAYLIST_ID", { id: channelId }, this)
  748. .then(({ playlistId }) => {
  749. next(null, playlistId);
  750. })
  751. .catch(err => next(err));
  752. })
  753. .catch(err => next(err));
  754. },
  755. (playlistId, next) => {
  756. let songs = [];
  757. let nextPageToken = "";
  758. async.whilst(
  759. next => {
  760. YouTubeModule.log(
  761. "INFO",
  762. `Getting channel progress for job (${this.toString()}): ${
  763. songs.length
  764. } songs gotten so far. Is there a next page: ${nextPageToken !== undefined}.`
  765. );
  766. next(null, nextPageToken !== undefined);
  767. },
  768. next => {
  769. // Add 250ms delay between each job request
  770. setTimeout(() => {
  771. YouTubeModule.runJob("GET_PLAYLIST_PAGE", { playlistId, nextPageToken }, this)
  772. .then(response => {
  773. songs = songs.concat(response.songs);
  774. nextPageToken = response.nextPageToken;
  775. next();
  776. })
  777. .catch(err => next(err));
  778. }, 250);
  779. },
  780. err => next(err, songs)
  781. );
  782. },
  783. (songs, next) =>
  784. next(
  785. null,
  786. songs.map(song => song.contentDetails.videoId)
  787. ),
  788. (songs, next) => {
  789. if (!payload.musicOnly) return next(true, { songs });
  790. return YouTubeModule.runJob("FILTER_MUSIC_VIDEOS", { videoIds: songs.slice() }, this)
  791. .then(filteredSongs => next(null, { filteredSongs, songs }))
  792. .catch(next);
  793. }
  794. ],
  795. (err, response) => {
  796. if (err && err !== true) {
  797. YouTubeModule.log("ERROR", "GET_CHANNEL", "Some error has occurred.", err.message || err);
  798. reject(new Error(err.message || err));
  799. } else {
  800. resolve({ songs: response.filteredSongs ? response.filteredSongs.videoIds : response.songs });
  801. }
  802. }
  803. );
  804. });
  805. }
  806. /**
  807. * Perform YouTube API get videos request
  808. *
  809. * @param {object} payload - object that contains the payload
  810. * @param {object} payload.params - request parameters
  811. * @returns {Promise} - returns promise (reject, resolve)
  812. */
  813. API_GET_VIDEOS(payload) {
  814. return new Promise((resolve, reject) => {
  815. const { params } = payload;
  816. YouTubeModule.runJob(
  817. "API_CALL",
  818. {
  819. url: "https://www.googleapis.com/youtube/v3/videos",
  820. params: {
  821. key: config.get("apis.youtube.key"),
  822. ...params
  823. },
  824. quotaCost: 1
  825. },
  826. this
  827. )
  828. .then(response => {
  829. resolve(response);
  830. })
  831. .catch(err => {
  832. reject(err);
  833. });
  834. });
  835. }
  836. /**
  837. * Perform YouTube API get playlist items request
  838. *
  839. * @param {object} payload - object that contains the payload
  840. * @param {object} payload.params - request parameters
  841. * @returns {Promise} - returns promise (reject, resolve)
  842. */
  843. API_GET_PLAYLIST_ITEMS(payload) {
  844. return new Promise((resolve, reject) => {
  845. const { params } = payload;
  846. YouTubeModule.runJob(
  847. "API_CALL",
  848. {
  849. url: "https://www.googleapis.com/youtube/v3/playlistItems",
  850. params: {
  851. key: config.get("apis.youtube.key"),
  852. ...params
  853. },
  854. quotaCost: 1
  855. },
  856. this
  857. )
  858. .then(response => {
  859. resolve(response);
  860. })
  861. .catch(err => {
  862. reject(err);
  863. });
  864. });
  865. }
  866. /**
  867. * Perform YouTube API get channels request
  868. *
  869. * @param {object} payload - object that contains the payload
  870. * @param {object} payload.params - request parameters
  871. * @returns {Promise} - returns promise (reject, resolve)
  872. */
  873. API_GET_CHANNELS(payload) {
  874. return new Promise((resolve, reject) => {
  875. const { params } = payload;
  876. YouTubeModule.runJob(
  877. "API_CALL",
  878. {
  879. url: "https://www.googleapis.com/youtube/v3/channels",
  880. params: {
  881. key: config.get("apis.youtube.key"),
  882. ...params
  883. },
  884. quotaCost: 1
  885. },
  886. this
  887. )
  888. .then(response => {
  889. resolve(response);
  890. })
  891. .catch(err => {
  892. reject(err);
  893. });
  894. });
  895. }
  896. /**
  897. * Perform YouTube API search request
  898. *
  899. * @param {object} payload - object that contains the payload
  900. * @param {object} payload.params - request parameters
  901. * @returns {Promise} - returns promise (reject, resolve)
  902. */
  903. API_SEARCH(payload) {
  904. return new Promise((resolve, reject) => {
  905. const { params } = payload;
  906. if (
  907. config.has("experimental.disable_youtube_search") &&
  908. config.get("experimental.disable_youtube_search")
  909. ) {
  910. reject(new Error("Searching with YouTube is disabled."));
  911. return;
  912. }
  913. YouTubeModule.runJob(
  914. "API_CALL",
  915. {
  916. url: "https://www.googleapis.com/youtube/v3/search",
  917. params: {
  918. key: config.get("apis.youtube.key"),
  919. ...params
  920. },
  921. quotaCost: 100
  922. },
  923. this
  924. )
  925. .then(response => {
  926. resolve(response);
  927. })
  928. .catch(err => {
  929. reject(err);
  930. });
  931. });
  932. }
  933. /**
  934. * Perform YouTube API call
  935. *
  936. * @param {object} payload - object that contains the payload
  937. * @param {object} payload.url - request url
  938. * @param {object} payload.params - request parameters
  939. * @param {object} payload.quotaCost - request quotaCost
  940. * @returns {Promise} - returns promise (reject, resolve)
  941. */
  942. API_CALL(payload) {
  943. return new Promise((resolve, reject) => {
  944. const { url, params, quotaCost } = payload;
  945. const quotaExceeded = isQuotaExceeded(YouTubeModule.apiCalls);
  946. if (quotaExceeded) reject(new Error("Quota has been exceeded. Please wait a while."));
  947. else {
  948. const youtubeApiRequest = new YouTubeModule.YoutubeApiRequestModel({
  949. url,
  950. date: Date.now(),
  951. quotaCost
  952. });
  953. youtubeApiRequest.save();
  954. const { ...keylessParams } = payload.params;
  955. CacheModule.runJob("HSET", {
  956. table: "youtubeApiRequestParams",
  957. key: youtubeApiRequest._id.toString(),
  958. value: JSON.stringify(keylessParams)
  959. }).then();
  960. YouTubeModule.apiCalls.push({ date: youtubeApiRequest.date, quotaCost });
  961. YouTubeModule.axios
  962. .get(url, {
  963. params,
  964. timeout: YouTubeModule.requestTimeout
  965. })
  966. .then(response => {
  967. if (response.data.error) {
  968. reject(new Error(response.data.error));
  969. } else {
  970. CacheModule.runJob("HSET", {
  971. table: "youtubeApiRequestResults",
  972. key: youtubeApiRequest._id.toString(),
  973. value: JSON.stringify(response.data)
  974. }).then();
  975. resolve({ response });
  976. }
  977. })
  978. .catch(err => {
  979. reject(err);
  980. });
  981. }
  982. });
  983. }
  984. /**
  985. * Fetch all api requests
  986. *
  987. * @param {object} payload - object that contains the payload
  988. * @param {object} payload.fromDate - data to fetch requests up to
  989. * @returns {Promise} - returns promise (reject, resolve)
  990. */
  991. GET_API_REQUESTS(payload) {
  992. return new Promise((resolve, reject) => {
  993. const fromDate = payload.fromDate ? new Date(payload.fromDate) : new Date();
  994. YouTubeModule.youtubeApiRequestModel
  995. .find({ date: { $lte: fromDate } })
  996. .sort({ date: -1 })
  997. .exec((err, youtubeApiRequests) => {
  998. if (err) reject(new Error("Couldn't load YouTube API requests."));
  999. else {
  1000. resolve({ apiRequests: youtubeApiRequests });
  1001. }
  1002. });
  1003. });
  1004. }
  1005. /**
  1006. * Fetch an api request
  1007. *
  1008. * @param {object} payload - object that contains the payload
  1009. * @param {object} payload.apiRequestId - the api request id
  1010. * @returns {Promise} - returns promise (reject, resolve)
  1011. */
  1012. GET_API_REQUEST(payload) {
  1013. return new Promise((resolve, reject) => {
  1014. const { apiRequestId } = payload;
  1015. async.waterfall(
  1016. [
  1017. next => {
  1018. YouTubeModule.youtubeApiRequestModel.findOne({ _id: apiRequestId }).exec(next);
  1019. },
  1020. (apiRequest, next) => {
  1021. CacheModule.runJob(
  1022. "HGET",
  1023. {
  1024. table: "youtubeApiRequestParams",
  1025. key: apiRequestId.toString()
  1026. },
  1027. this
  1028. )
  1029. .then(apiRequestParams => {
  1030. next(null, {
  1031. ...apiRequest._doc,
  1032. params: apiRequestParams
  1033. });
  1034. })
  1035. .catch(err => next(err));
  1036. },
  1037. (apiRequest, next) => {
  1038. CacheModule.runJob(
  1039. "HGET",
  1040. {
  1041. table: "youtubeApiRequestResults",
  1042. key: apiRequestId.toString()
  1043. },
  1044. this
  1045. )
  1046. .then(apiRequestResults => {
  1047. next(null, {
  1048. ...apiRequest,
  1049. results: apiRequestResults
  1050. });
  1051. })
  1052. .catch(err => next(err));
  1053. }
  1054. ],
  1055. (err, apiRequest) => {
  1056. if (err) reject(new Error(err));
  1057. else resolve({ apiRequest });
  1058. }
  1059. );
  1060. });
  1061. }
  1062. /**
  1063. * Removed all stored api requests from mongo and redis
  1064. *
  1065. * @returns {Promise} - returns promise (reject, resolve)
  1066. */
  1067. RESET_STORED_API_REQUESTS() {
  1068. return new Promise((resolve, reject) => {
  1069. async.waterfall(
  1070. [
  1071. next => {
  1072. this.publishProgress({ status: "update", message: `Resetting stored API requests (stage 1)` });
  1073. YouTubeModule.youtubeApiRequestModel.find({}, next);
  1074. },
  1075. (apiRequests, next) => {
  1076. this.publishProgress({ status: "update", message: `Resetting stored API requests (stage 2)` });
  1077. YouTubeModule.youtubeApiRequestModel.deleteMany({}, err => {
  1078. if (err) next("Couldn't reset stored YouTube API requests.");
  1079. else {
  1080. next(null, apiRequests);
  1081. }
  1082. });
  1083. },
  1084. (apiRequests, next) => {
  1085. this.publishProgress({ status: "update", message: `Resetting stored API requests (stage 3)` });
  1086. CacheModule.runJob("DEL", { key: "youtubeApiRequestParams" }, this)
  1087. .then(() => next(null, apiRequests))
  1088. .catch(err => next(err));
  1089. },
  1090. (apiRequests, next) => {
  1091. this.publishProgress({ status: "update", message: `Resetting stored API requests (stage 4)` });
  1092. CacheModule.runJob("DEL", { key: "youtubeApiRequestResults" }, this)
  1093. .then(() => next(null, apiRequests))
  1094. .catch(err => next(err));
  1095. },
  1096. (apiRequests, next) => {
  1097. this.publishProgress({ status: "update", message: `Resetting stored API requests (stage 5)` });
  1098. async.eachLimit(
  1099. apiRequests.map(apiRequest => apiRequest._id),
  1100. 1,
  1101. (requestId, next) => {
  1102. CacheModule.runJob(
  1103. "PUB",
  1104. {
  1105. channel: "youtube.removeYoutubeApiRequest",
  1106. value: requestId
  1107. },
  1108. this
  1109. )
  1110. .then(() => {
  1111. next();
  1112. })
  1113. .catch(err => {
  1114. next(err);
  1115. });
  1116. },
  1117. err => {
  1118. if (err) next(err);
  1119. else next();
  1120. }
  1121. );
  1122. }
  1123. ],
  1124. err => {
  1125. if (err) reject(new Error(err));
  1126. else resolve();
  1127. }
  1128. );
  1129. });
  1130. }
  1131. /**
  1132. * Remove a stored api request
  1133. *
  1134. * @param {object} payload - object that contains the payload
  1135. * @param {object} payload.requestId - the api request id
  1136. * @returns {Promise} - returns promise (reject, resolve)
  1137. */
  1138. REMOVE_STORED_API_REQUEST(payload) {
  1139. return new Promise((resolve, reject) => {
  1140. async.waterfall(
  1141. [
  1142. next => {
  1143. YouTubeModule.youtubeApiRequestModel.deleteOne({ _id: payload.requestId }, err => {
  1144. if (err) next("Couldn't remove stored YouTube API request.");
  1145. else {
  1146. next();
  1147. }
  1148. });
  1149. },
  1150. next => {
  1151. CacheModule.runJob(
  1152. "HDEL",
  1153. {
  1154. table: "youtubeApiRequestParams",
  1155. key: payload.requestId.toString()
  1156. },
  1157. this
  1158. )
  1159. .then(next)
  1160. .catch(err => next(err));
  1161. },
  1162. next => {
  1163. CacheModule.runJob(
  1164. "HDEL",
  1165. {
  1166. table: "youtubeApiRequestResults",
  1167. key: payload.requestId.toString()
  1168. },
  1169. this
  1170. )
  1171. .then(next)
  1172. .catch(err => next(err));
  1173. },
  1174. next => {
  1175. CacheModule.runJob("PUB", {
  1176. channel: "youtube.removeYoutubeApiRequest",
  1177. value: payload.requestId.toString()
  1178. })
  1179. .then(next)
  1180. .catch(err => next(err));
  1181. }
  1182. ],
  1183. err => {
  1184. if (err) reject(new Error(err));
  1185. else resolve();
  1186. }
  1187. );
  1188. });
  1189. }
  1190. /**
  1191. * Create YouTube videos
  1192. *
  1193. * @param {object} payload - an object containing the payload
  1194. * @param {string} payload.youtubeVideos - the youtubeVideo object or array of
  1195. * @returns {Promise} - returns a promise (resolve, reject)
  1196. */
  1197. CREATE_VIDEOS(payload) {
  1198. return new Promise((resolve, reject) => {
  1199. async.waterfall(
  1200. [
  1201. next => {
  1202. let { youtubeVideos } = payload;
  1203. if (typeof youtubeVideos !== "object") next("Invalid youtubeVideos type");
  1204. else {
  1205. if (!Array.isArray(youtubeVideos)) youtubeVideos = [youtubeVideos];
  1206. YouTubeModule.youtubeVideoModel.insertMany(youtubeVideos, next);
  1207. }
  1208. },
  1209. (youtubeVideos, next) => {
  1210. // TODO support spotify here
  1211. const mediaSources = youtubeVideos.map(video => `youtube:${video.youtubeId}`);
  1212. async.eachLimit(
  1213. mediaSources,
  1214. 2,
  1215. (mediaSource, next) => {
  1216. MediaModule.runJob("RECALCULATE_RATINGS", { mediaSource }, this)
  1217. .then(() => next())
  1218. .catch(next);
  1219. },
  1220. err => {
  1221. if (err) next(err);
  1222. else next(null, youtubeVideos);
  1223. }
  1224. );
  1225. }
  1226. ],
  1227. (err, youtubeVideos) => {
  1228. if (err) reject(new Error(err));
  1229. else resolve({ youtubeVideos });
  1230. }
  1231. );
  1232. });
  1233. }
  1234. /**
  1235. * Get YouTube video
  1236. *
  1237. * @param {object} payload - an object containing the payload
  1238. * @param {string} payload.identifier - the youtube video ObjectId or YouTube ID
  1239. * @param {string} payload.createMissing - attempt to fetch and create video if not in db
  1240. * @returns {Promise} - returns a promise (resolve, reject)
  1241. */
  1242. GET_VIDEO(payload) {
  1243. return new Promise((resolve, reject) => {
  1244. async.waterfall(
  1245. [
  1246. next => {
  1247. const query = mongoose.Types.ObjectId.isValid(payload.identifier)
  1248. ? { _id: payload.identifier }
  1249. : { youtubeId: payload.identifier };
  1250. return YouTubeModule.youtubeVideoModel.findOne(query, next);
  1251. },
  1252. (video, next) => {
  1253. if (video) return next(null, video, false);
  1254. if (mongoose.Types.ObjectId.isValid(payload.identifier) || !payload.createMissing)
  1255. return next("YouTube video not found.");
  1256. const params = {
  1257. part: "snippet,contentDetails,statistics,status",
  1258. id: payload.identifier
  1259. };
  1260. return YouTubeModule.runJob("API_GET_VIDEOS", { params }, this)
  1261. .then(({ response }) => {
  1262. const { data } = response;
  1263. if (data.items[0] === undefined)
  1264. return next("The specified video does not exist or cannot be publicly accessed.");
  1265. // TODO Clean up duration converter
  1266. let dur = data.items[0].contentDetails.duration;
  1267. dur = dur.replace("PT", "");
  1268. let duration = 0;
  1269. dur = dur.replace(/([\d]*)H/, (v, v2) => {
  1270. v2 = Number(v2);
  1271. duration = v2 * 60 * 60;
  1272. return "";
  1273. });
  1274. dur = dur.replace(/([\d]*)M/, (v, v2) => {
  1275. v2 = Number(v2);
  1276. duration += v2 * 60;
  1277. return "";
  1278. });
  1279. dur.replace(/([\d]*)S/, (v, v2) => {
  1280. v2 = Number(v2);
  1281. duration += v2;
  1282. return "";
  1283. });
  1284. const youtubeVideo = {
  1285. youtubeId: data.items[0].id,
  1286. title: data.items[0].snippet.title,
  1287. author: data.items[0].snippet.channelTitle,
  1288. thumbnail: data.items[0].snippet.thumbnails.default.url,
  1289. duration,
  1290. uploadedAt: new Date(data.items[0].snippet.publishedAt)
  1291. };
  1292. return next(null, false, youtubeVideo);
  1293. })
  1294. .catch(next);
  1295. },
  1296. (video, youtubeVideo, next) => {
  1297. if (video) return next(null, video, true);
  1298. return YouTubeModule.runJob("CREATE_VIDEOS", { youtubeVideos: youtubeVideo }, this)
  1299. .then(res => {
  1300. if (res.youtubeVideos.length === 1) next(null, res.youtubeVideos[0], false);
  1301. else next("YouTube video not found.");
  1302. })
  1303. .catch(next);
  1304. }
  1305. ],
  1306. (err, video, existing) => {
  1307. if (err) reject(new Error(err));
  1308. else resolve({ video, existing });
  1309. }
  1310. );
  1311. });
  1312. }
  1313. /**
  1314. * Remove YouTube videos
  1315. *
  1316. * @param {object} payload - an object containing the payload
  1317. * @param {string} payload.videoIds - Array of youtubeVideo ObjectIds
  1318. * @returns {Promise} - returns a promise (resolve, reject)
  1319. */
  1320. REMOVE_VIDEOS(payload) {
  1321. return new Promise((resolve, reject) => {
  1322. let { videoIds } = payload;
  1323. if (!Array.isArray(videoIds)) videoIds = [videoIds];
  1324. async.waterfall(
  1325. [
  1326. next => {
  1327. if (!videoIds.every(videoId => mongoose.Types.ObjectId.isValid(videoId)))
  1328. next("One or more videoIds are not a valid ObjectId.");
  1329. else {
  1330. this.publishProgress({ status: "update", message: `Removing video (stage 1)` });
  1331. YouTubeModule.youtubeVideoModel.find({ _id: { $in: videoIds } }, (err, videos) => {
  1332. if (err) next(err);
  1333. else
  1334. next(
  1335. null,
  1336. videos.map(video => video.youtubeId)
  1337. );
  1338. });
  1339. }
  1340. },
  1341. (youtubeIds, next) => {
  1342. this.publishProgress({ status: "update", message: `Removing video (stage 2)` });
  1343. SongsModule.SongModel.find({ youtubeId: { $in: youtubeIds } }, (err, songs) => {
  1344. if (err) next(err);
  1345. else {
  1346. const filteredIds = youtubeIds.filter(
  1347. youtubeId => !songs.find(song => song.youtubeId === youtubeId)
  1348. );
  1349. if (filteredIds.length < youtubeIds.length)
  1350. next("One or more videos are attached to songs.");
  1351. else next(null, filteredIds);
  1352. }
  1353. });
  1354. },
  1355. (youtubeIds, next) => {
  1356. this.publishProgress({ status: "update", message: `Removing video (stage 3)` });
  1357. MediaModule.runJob("REMOVE_RATINGS", { youtubeIds }, this)
  1358. .then(() => next(null, youtubeIds))
  1359. .catch(next);
  1360. },
  1361. (youtubeIds, next) => {
  1362. this.publishProgress({ status: "update", message: `Removing video (stage 4)` });
  1363. async.eachLimit(
  1364. youtubeIds,
  1365. 2,
  1366. (youtubeId, next) => {
  1367. async.waterfall(
  1368. [
  1369. next => {
  1370. PlaylistsModule.playlistModel.find(
  1371. { "songs.youtubeId": youtubeId },
  1372. (err, playlists) => {
  1373. if (err) next(err);
  1374. else {
  1375. async.eachLimit(
  1376. playlists,
  1377. 1,
  1378. (playlist, next) => {
  1379. PlaylistsModule.runJob(
  1380. "REMOVE_FROM_PLAYLIST",
  1381. { playlistId: playlist._id, youtubeId },
  1382. this
  1383. )
  1384. .then(() => next())
  1385. .catch(next);
  1386. },
  1387. next
  1388. );
  1389. }
  1390. }
  1391. );
  1392. },
  1393. next => {
  1394. StationsModule.stationModel.find(
  1395. { "queue.youtubeId": youtubeId },
  1396. (err, stations) => {
  1397. if (err) next(err);
  1398. else {
  1399. async.eachLimit(
  1400. stations,
  1401. 1,
  1402. (station, next) => {
  1403. StationsModule.runJob(
  1404. "REMOVE_FROM_QUEUE",
  1405. { stationId: station._id, youtubeId },
  1406. this
  1407. )
  1408. .then(() => next())
  1409. .catch(err => {
  1410. if (
  1411. err === "Station not found" ||
  1412. err ===
  1413. "Song is not currently in the queue."
  1414. )
  1415. next();
  1416. else next(err);
  1417. });
  1418. },
  1419. next
  1420. );
  1421. }
  1422. }
  1423. );
  1424. },
  1425. next => {
  1426. StationsModule.stationModel.find(
  1427. { "currentSong.youtubeId": youtubeId },
  1428. (err, stations) => {
  1429. if (err) next(err);
  1430. else {
  1431. async.eachLimit(
  1432. stations,
  1433. 1,
  1434. (station, next) => {
  1435. StationsModule.runJob(
  1436. "SKIP_STATION",
  1437. {
  1438. stationId: station._id,
  1439. natural: false,
  1440. skipReason: "other"
  1441. },
  1442. this
  1443. )
  1444. .then(() => {
  1445. next();
  1446. })
  1447. .catch(err => {
  1448. if (err.message === "Station not found.")
  1449. next();
  1450. else next(err);
  1451. });
  1452. },
  1453. next
  1454. );
  1455. }
  1456. }
  1457. );
  1458. }
  1459. ],
  1460. next
  1461. );
  1462. },
  1463. next
  1464. );
  1465. },
  1466. next => {
  1467. this.publishProgress({ status: "update", message: `Removing video (stage 5)` });
  1468. YouTubeModule.youtubeVideoModel.deleteMany({ _id: { $in: videoIds } }, next);
  1469. },
  1470. (res, next) => {
  1471. this.publishProgress({ status: "update", message: `Removing video (stage 6)` });
  1472. CacheModule.runJob("PUB", {
  1473. channel: "youtube.removeVideos",
  1474. value: videoIds
  1475. })
  1476. .then(next)
  1477. .catch(err => next(err));
  1478. }
  1479. ],
  1480. err => {
  1481. if (err) reject(new Error(err));
  1482. else resolve();
  1483. }
  1484. );
  1485. });
  1486. }
  1487. /**
  1488. * Request a set of YouTube videos
  1489. *
  1490. * @param {object} payload - an object containing the payload
  1491. * @param {string} payload.url - the url of the the YouTube playlist or channel
  1492. * @param {boolean} payload.musicOnly - whether to only get music from the playlist/channel
  1493. * @param {boolean} payload.returnVideos - whether to return videos
  1494. * @returns {Promise} - returns a promise (resolve, reject)
  1495. */
  1496. REQUEST_SET(payload) {
  1497. return new Promise((resolve, reject) => {
  1498. async.waterfall(
  1499. [
  1500. next => {
  1501. const playlistRegex = /[\\?&]list=([^&#]*)/;
  1502. const channelRegex =
  1503. /\.[\w]+\/(?:(?:channel\/(UC[0-9A-Za-z_-]{21}[AQgw]))|(?:user\/?([\w-]+))|(?:c\/?([\w-]+))|(?:\/?([\w-]+)))/;
  1504. if (playlistRegex.exec(payload.url) || channelRegex.exec(payload.url))
  1505. YouTubeModule.runJob(
  1506. playlistRegex.exec(payload.url) ? "GET_PLAYLIST" : "GET_CHANNEL",
  1507. {
  1508. url: payload.url,
  1509. musicOnly: payload.musicOnly
  1510. },
  1511. this
  1512. )
  1513. .then(res => {
  1514. next(null, res.songs);
  1515. })
  1516. .catch(next);
  1517. else next("Invalid YouTube URL.");
  1518. },
  1519. (youtubeIds, next) => {
  1520. let successful = 0;
  1521. let failed = 0;
  1522. let alreadyInDatabase = 0;
  1523. let videos = {};
  1524. const successfulVideoIds = [];
  1525. const failedVideoIds = [];
  1526. if (youtubeIds.length === 0) next();
  1527. async.eachOfLimit(
  1528. youtubeIds,
  1529. 1,
  1530. (youtubeId, index, next2) => {
  1531. YouTubeModule.runJob("GET_VIDEO", { identifier: youtubeId, createMissing: true }, this)
  1532. .then(res => {
  1533. successful += 1;
  1534. successfulVideoIds.push(youtubeId);
  1535. if (res.existing) alreadyInDatabase += 1;
  1536. if (res.video) videos[index] = res.video;
  1537. })
  1538. .catch(() => {
  1539. failed += 1;
  1540. failedVideoIds.push(youtubeId);
  1541. })
  1542. .finally(() => {
  1543. next2();
  1544. });
  1545. },
  1546. () => {
  1547. if (payload.returnVideos)
  1548. videos = Object.keys(videos)
  1549. .sort()
  1550. .map(key => videos[key]);
  1551. next(null, {
  1552. successful,
  1553. failed,
  1554. alreadyInDatabase,
  1555. videos,
  1556. successfulVideoIds,
  1557. failedVideoIds
  1558. });
  1559. }
  1560. );
  1561. }
  1562. ],
  1563. (err, response) => {
  1564. if (err) reject(new Error(err));
  1565. else resolve(response);
  1566. }
  1567. );
  1568. });
  1569. }
  1570. }
  1571. export default new _YouTubeModule();