Skip to content

Instantly share code, notes, and snippets.

@rogersguedes
Forked from WiBla/README.md
Created September 10, 2020 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogersguedes/587b1d78b1588e875ca9eef428773806 to your computer and use it in GitHub Desktop.
Save rogersguedes/587b1d78b1588e875ca9eef428773806 to your computer and use it in GitHub Desktop.
Add YouTube videos to plug.dj without having to search them.

What is this?

It's a script (think of it as mod) for plug.dj which will allow you to add YT (YouTube) videos to your playlists with one button.

Why is this necessary?

Plug.dj is having some trouble with their YT API Key (the thing that allows you to make YT related actions throughout the site, like searching for a song and adding the results to your playlists). Using this script, you will be able to add YT videos to your playlists again, even while plug.dj is dealing with YouTube's support to get this issue fixed.

How to use

After installing it, you should see a [+] button appearing in all your playlists. Go to the one you want to add a video, click it, and paste a YouTube video's link in the prompt that shows up. Click OK or press ENTER, and it should say Media added!, if not, the provided API key might already be used up for the day.

Gif showing how to use the script once installed If this gif isn't playing, click here: https://i.imgur.com/f1PD8eN.gifv

Install

Check this video made by STXPH which explains very-well how to install this script: https://youtu.be/IJFgl8BoxYs

How do I get my own API Key and why do I need one?

You will most likely have a better experience with this script if you get your own key, this is because the key I included is shared with everyone loading it. Since (free) API Keys are limited to 10 thousands quota points per day, if enough people are using it on a daily basis, it can quickly become useless. Having your own means you get more out of it, and you'll have to go pretty hard at it to reach your quota.

Check STXPH's video on how to generate an API key here: https://youtu.be/_hivX4e0S68

Known bugs

  • If you make a search using the input on top of your playlists, or filter them, the button will disappear.
    • Refresh plug.dj to fix this
  • Adding a song does not show up immediately
    • This is pretty hard to achieve and I don't have the time to do this, just switch playlists and it should pop up
  • The playlist media count isn't going up
    • Again, it's a small bug and I don't have the time/motivation to fix it, just refresh the page to see the real count.
// ==UserScript==
// @name Plug.dj YT API Key workaround
// @namespace https://plug.dj?refuid=4613422
// @version 1.5.0
// @author WiBla (contact.wibla@gmail.com)
// @description This script will add a button next to "import/create playlist" that allows you to add videos without searching for them
// @downloadURL https://gist.github.com/WiBla/ad1aa9a98949c624cd2886c1a25b5feb/raw/8d83fc7bb1ac77f8ff9494023991e21e5599ec56/yt-workaround.user.js
// @updateURL https://gist.github.com/WiBla/ad1aa9a98949c624cd2886c1a25b5feb/raw/8d83fc7bb1ac77f8ff9494023991e21e5599ec56/yt-workaround.user.js
// @include *://plug.dj/*
// @include *://*.plug.dj/*
// @exclude *://*.plug.dj/_/*
// @exclude *://*.plug.dj/@/*
// @exclude *://*.plug.dj/!/*
// @exclude *://*.plug.dj/about
// @exclude *://*.plug.dj/ba
// @exclude *://*.plug.dj/forgot-password
// @exclude *://*.plug.dj/founders
// @exclude *://*.plug.dj/giftsub/*
// @exclude *://*.plug.dj/jobs
// @exclude *://*.plug.dj/legal
// @exclude *://*.plug.dj/merch
// @exclude *://*.plug.dj/partners
// @exclude *://*.plug.dj/plot
// @exclude *://*.plug.dj/privacy
// @exclude *://*.plug.dj/purchase
// @exclude *://*.plug.dj/subscribe
// @exclude *://*.plug.dj/team
// @exclude *://*.plug.dj/terms
// @exclude *://*.plug.dj/press
// @grant none
// @run-at document-end
// ==/UserScript==
/* global $, gapi, API, _, require */
(function() {
'use strict';
// Because plug.dj hides the interface while loading, this is necessary
// We can't just use document.readyState ($.ready)
function plugReady() {
return typeof API !== 'undefined' && API.enabled && typeof jQuery !== 'undefined' && typeof require !== 'undefined';
}
function autoReload() {
if (!plugReady()) {
setTimeout(autoReload, 200);
} else {
init();
}
}
function init() {
var pl = {}, media = {}, APIKey = localStorage.getItem('yt-api-key');
if (APIKey == null) {
APIKey = 'AIzaSyD--___tekD3NI_-Sj8cAnNyuDKFmdtOkM';
API.chatLog('⚠ YT-workaround is using the default API key, this is not recommended as everyone uses the same and it is very limited. If you know how, you should definitely get your own and configure it with /key [YOUR KEY HERE]');
} else {
API.chatLog('YT-workaround is using a custom key, you rock 💪');
}
window.gapi.client.setApiKey(APIKey);
function convert_time(duration) {
var a = duration.match(/\d+/g),
indexOfH = duration.indexOf('H'),
indexOfM = duration.indexOf('M'),
indexOfS = duration.indexOf('S');
switch(true) {
case indexOfM >= 0 && indexOfH == -1 && indexOfS == -1:
a = [0, a[0], 0];
break;
case indexOfH >= 0 && indexOfM == -1:
a = [a[0], 0, a[1]];
break;
case indexOfH >= 0 && indexOfM == -1 && indexOfS == -1:
a = [a[0], 0, 0];
break;
}
duration = 0;
switch(a.length) {
case 1:
duration = duration + parseInt(a[0]);
break;
case 2:
duration = duration + parseInt(a[0]) * 60;
duration = duration + parseInt(a[1]);
break;
case 3:
duration = duration + parseInt(a[0]) * 3600;
duration = duration + parseInt(a[1]) * 60;
duration = duration + parseInt(a[2]);
break;
}
return duration;
}
function completeMedia() {
$.ajax({
url: `https://www.googleapis.com/youtube/v3/videos?id=${media.cid}&key=${gapi.config.get().client.apiKey}&part=snippet,contentDetails`,
type: 'GET',
success: (data) => {
media.author = data.items[0].snippet.title.split('-');
// Video's title contains a "-" so parse it
if (media.author.length > 1) {
media.title = media.author[1].trim();
media.author = media.author[0].trim();
} else { // Otherwise, use the channel's name as author..
media.title = media.author[0].trim();
media.author = data.items[0].snippet.channelTitle;
}
media.image = data.items[0].snippet.thumbnails.default.url;
media.duration = convert_time(data.items[0].contentDetails.duration);
media.format = 1;
media.id = -1;
addMedia();
},
error: (err) => {
if (err.responseJSON.error.message.indexOf('Daily Limit') > -1) {
alert('The current API Key has exceeded its quota.\nTry setting your own by typing "/key [YOUR KEY HERE]" in the chat');
} else {
console.error('[YT-WORKAROUND]', err);
alert("Something went wrong with YouTube. You can check the console for more info.");
}
}
});
}
function addMedia() {
$.ajax({
url: `/_/playlists/${pl.id}/media/insert`,
type: 'POST',
data: JSON.stringify({
media: [media],
"append": false
}),
contentType: 'application/json',
success: () => alert('Media added!\nIf you don\'t see it, try switching playlists or refreshing.'),
error: (err) => {
if (err.responseJSON.status === 'maxItems') {
alert('This playlist is full!');
} else alert('Sorry, the media couldn\'t be added.');
}
});
}
function extractCID(cid) {
return cid.replace(/(?:https?:)?(?:\/\/)?(?:[0-9A-Z-]+\.)?(?:youtu\.be\/|youtube(?:-nocookie)?\.com\/\S*?[^\w\s-])((?!videoseries)[\w-]{11})(?=[^\w-]|$)(?![?=&+%\w.-]*(?:['"][^<>]*>|<\/a>))[?=&+%\w.-]*/gi, '$1');
}
function askCID() {
media.cid = prompt(`Importing in ${pl.name}:\nVideo's link:`);
if (!!media.cid === false) return;
media.cid = extractCID(media.cid);
completeMedia(media);
}
// let found = false;
// function findPlaylist() {
// if (found) return askCID();
// pl.name = prompt('In which playlist do you wish to add the song?\nName must be exactly the same');
// if (!!pl.name === false) return;
// $.ajax({
// url: '/_/playlists',
// success: (data) => {
// data.data.forEach((playlist, i, a) => {
// if (playlist.name === pl.name) {
// if (playlist.count === 200) {
// alert(`${pl.name} is full!`);
// } else {
// pl.id = playlist.id;
// found = true;
// askCID();
// }
// }
// if (i + 1 >= a.length && !found) {
// if (confirm(`"${pl.name}" couldn't be found. Do you whish to add the media in "${playlist.name}"?`)) {
// pl = playlist;
// askCID();
// }
// }
// });
// }
// });
// }
var $grabBtn = $('<div id="playlist-add-button" class="button" title="YouTube Grab+">'+
'<i class="fa fa-plus-square"></i>'+
'</div>');
// $grabBtn.click(function(event) {
// found = event.ctrlKey ? false : found;
// findPlaylist();
// });
var playlists = _.find(require.s.contexts._.defined, (m)=>m&&m.activeMedia);
$grabBtn.click(function() {
playlists.models.forEach((model) => {
model = model.toJSON();
if (model.visible) {
if (model.count === 200) {
alert(`${model.name} is full!`);
} else {
pl = model;
askCID();
}
}
});
});
$('.playlist-buttons-container .playlist-edit-group').prepend($grabBtn);
function chatCmd(cmd) {
cmd = cmd.split(' ');
if (cmd[0] === '/key' && cmd.length == 2) {
if (/AIza[0-9A-z\-_]{35}/.test(cmd[1]) === false) {
API.chatLog('This is not a valid YT API Key!');
return;
}
window.gapi.client.setApiKey(cmd[1]);
localStorage.setItem('yt-api-key', cmd[1]);
API.chatLog('Custom API key saved! You\'re a pro 👍');
} else {
API.chatLog('Please use this format: /key [KEY] (do not include the square brackets obviously)');
}
}
API.on(API.CHAT_COMMAND, chatCmd);
API.chatLog('YT-workaround fully loaded! Refresh to de-activate it.');
}
autoReload();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment