123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639 |
- /* eslint-disable */
- 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;
- const quotas = [
- {
- type: "QUERIES_PER_DAY",
- limit: 10000
- },
- {
- type: "QUERIES_PER_MINUTE",
- limit: 1800000
- },
- {
- type: "QUERIES_PER_100_SECONDS",
- limit: 3000000
- }
- ];
- // const dummyApiCalls = [
- // {
- // quotaCost: 100,
- // date: new Date(new Date() - (1000 * 120))
- // },
- // {
- // quotaCost: 2,
- // date: new Date(new Date() - (1000 * 120))
- // },
- // {
- // quotaCost: 1,
- // date: new Date()
- // },
- // {
- // quotaCost: 100,
- // date: new Date()
- // }
- // ];
- const isQuotaExceeded = apiCalls => {
- const reversedApiCalls = apiCalls.slice().reverse();
- 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;
- };
- const getQuotaStatus = apiCalls => {
- const reversedApiCalls = apiCalls.slice().reverse();
- const sortedQuotas = quotas.sort((a, b) => a.limit > b.limit);
- const status = {};
- for (const quota of sortedQuotas) {
- status[quota.type] = {
- quotaUsed: 0,
- limit: quota.limit,
- quotaExceeded: false
- };
- 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) status[quota.type].quotaUsed += apiCall.quotaCost;
- else break;
- }
- if (status[quota.type].quotaUsed >= quota.limit && !status[quota.type].quotaExceeded)
- status[quota.type].quotaExceeded = true;
- }
- return status;
- };
- class _YouTubeModule extends CoreClass {
- // eslint-disable-next-line require-jsdoc
- constructor() {
- super("youtube", {
- concurrency: 1,
- priorities: {
- GET_PLAYLIST: 11
- }
- });
- YouTubeModule = this;
- }
- /**
- * Initialises the activities module
- *
- * @returns {Promise} - returns promise (reject, resolve)
- */
- initialize() {
- return new Promise(resolve => {
- 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.apiCalls = [];
- 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."));
- });
- });
- }
- /**
- * Gets the details of a song using the YouTube API
- *
- * @param {object} payload - object that contains the payload
- * @param {string} payload.youtubeId - the YouTube API id of the song
- * @returns {Promise} - returns promise (reject, resolve)
- */
- GET_SONG(payload) {
- return new Promise((resolve, reject) => {
- const params = {
- part: "snippet,contentDetails,statistics,status",
- id: payload.youtubeId
- };
- YouTubeModule.runJob("API_GET_VIDEOS", { params }, this)
- .then(({ response }) => {
- const { data } = response;
- if (data.items[0] === undefined)
- return reject(new Error("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 song = {
- youtubeId: data.items[0].id,
- title: data.items[0].snippet.title,
- thumbnail: data.items[0].snippet.thumbnails.default.url,
- duration
- };
- return resolve({ song });
- })
- .catch(err => {
- YouTubeModule.log("ERROR", "GET_SONG", `${err.message}`);
- return reject(new Error("An error has occured. Please try again later."));
- });
- });
- }
- /**
- * Gets the id of the channel upload playlist
- *
- * @param {object} payload - object that contains the payload
- * @param {string} payload.channelId - the id of the YouTube channel
- * @returns {Promise} - returns promise (reject, resolve)
- */
- GET_CHANNEL_UPLOADS_PLAYLIST_ID(payload) {
- return new Promise((resolve, reject) => {
- const params = {
- part: "contentDetails",
- id: payload.channelId
- };
- YouTubeModule.runJob(
- "API_GET_CHANNELS",
- {
- params
- },
- this
- )
- .then(({ response }) => {
- const { data } = response;
- if (data.items.length === 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."));
- });
- });
- }
- /**
- * 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.
- *
- * @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(
- "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"));
- });
- });
- }
- 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 {
- YouTubeModule.apiCalls.push({
- quotaCost,
- date: new Date()
- });
- YouTubeModule.axios
- .get(url, {
- params,
- timeout: YouTubeModule.requestTimeout
- })
- .then(response => {
- if (response.data.error) {
- reject(new Error(response.data.error));
- } else {
- resolve({ response });
- }
- })
- .catch(err => {
- reject(err);
- });
- }
- });
- }
- }
- export default new _YouTubeModule();
|