2022-04-20 14:08:24 +05:30
|
|
|
'use strict';
|
2020-03-16 03:16:08 +05:30
|
|
|
var video_data = JSON.parse(document.getElementById('video_data').innerHTML);
|
|
|
|
|
2019-07-21 07:03:44 +05:30
|
|
|
function get_playlist(plid, retries) {
|
|
|
|
if (retries == undefined) retries = 5;
|
|
|
|
|
2019-06-15 20:38:06 +05:30
|
|
|
if (retries <= 0) {
|
2019-05-06 21:07:10 +05:30
|
|
|
console.log('Failed to pull playlist');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (plid.startsWith('RD')) {
|
|
|
|
var plid_url = '/api/v1/mixes/' + plid +
|
2019-05-06 21:53:14 +05:30
|
|
|
'?continuation=' + video_data.id +
|
|
|
|
'&format=html&hl=' + video_data.preferences.locale;
|
2019-05-06 21:07:10 +05:30
|
|
|
} else {
|
|
|
|
var plid_url = '/api/v1/playlists/' + plid +
|
2019-08-06 05:19:13 +05:30
|
|
|
'?index=' + video_data.index +
|
|
|
|
'&continuation' + video_data.id +
|
2019-05-06 21:53:14 +05:30
|
|
|
'&format=html&hl=' + video_data.preferences.locale;
|
2019-05-06 21:07:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.responseType = 'json';
|
2019-06-16 23:04:00 +05:30
|
|
|
xhr.timeout = 10000;
|
2019-05-06 21:07:10 +05:30
|
|
|
xhr.open('GET', plid_url, true);
|
|
|
|
|
|
|
|
xhr.onreadystatechange = function () {
|
2019-05-06 21:53:14 +05:30
|
|
|
if (xhr.readyState === 4) {
|
|
|
|
if (xhr.status === 200) {
|
2019-05-06 21:07:10 +05:30
|
|
|
if (xhr.response.nextVideo) {
|
|
|
|
player.on('ended', function () {
|
|
|
|
var url = new URL('https://example.com/embed/' + xhr.response.nextVideo);
|
|
|
|
|
2020-12-08 07:00:48 +05:30
|
|
|
url.searchParams.set('list', plid);
|
|
|
|
if (!plid.startsWith('RD')) {
|
|
|
|
url.searchParams.set('index', xhr.response.index);
|
|
|
|
}
|
|
|
|
|
2019-05-06 21:53:14 +05:30
|
|
|
if (video_data.params.autoplay || video_data.params.continue_autoplay) {
|
2019-05-06 21:07:10 +05:30
|
|
|
url.searchParams.set('autoplay', '1');
|
|
|
|
}
|
|
|
|
|
2019-05-06 21:53:14 +05:30
|
|
|
if (video_data.params.listen !== video_data.preferences.listen) {
|
|
|
|
url.searchParams.set('listen', video_data.params.listen);
|
2019-05-06 21:07:10 +05:30
|
|
|
}
|
|
|
|
|
2019-05-06 21:53:14 +05:30
|
|
|
if (video_data.params.speed !== video_data.preferences.speed) {
|
|
|
|
url.searchParams.set('speed', video_data.params.speed);
|
2019-05-06 21:07:10 +05:30
|
|
|
}
|
|
|
|
|
2019-05-27 22:46:22 +05:30
|
|
|
if (video_data.params.local !== video_data.preferences.local) {
|
|
|
|
url.searchParams.set('local', video_data.params.local);
|
|
|
|
}
|
|
|
|
|
2019-05-06 21:07:10 +05:30
|
|
|
location.assign(url.pathname + url.search);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-20 14:35:19 +05:30
|
|
|
};
|
2019-05-06 21:07:10 +05:30
|
|
|
|
2019-06-15 20:38:06 +05:30
|
|
|
xhr.onerror = function () {
|
|
|
|
console.log('Pulling playlist failed... ' + retries + '/5');
|
2022-04-20 14:35:19 +05:30
|
|
|
setTimeout(function () { get_playlist(plid, retries - 1); }, 1000);
|
|
|
|
};
|
2019-06-15 20:38:06 +05:30
|
|
|
|
2019-05-06 21:07:10 +05:30
|
|
|
xhr.ontimeout = function () {
|
2019-06-15 20:38:06 +05:30
|
|
|
console.log('Pulling playlist failed... ' + retries + '/5');
|
|
|
|
get_playlist(plid, retries - 1);
|
2022-04-20 14:35:19 +05:30
|
|
|
};
|
2019-06-15 20:38:06 +05:30
|
|
|
|
|
|
|
xhr.send();
|
2019-05-06 21:07:10 +05:30
|
|
|
}
|
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
window.addEventListener('load', function (e) {
|
|
|
|
if (video_data.plid) {
|
|
|
|
get_playlist(video_data.plid);
|
|
|
|
} else if (video_data.video_series) {
|
|
|
|
player.on('ended', function () {
|
|
|
|
var url = new URL('https://example.com/embed/' + video_data.video_series.shift());
|
|
|
|
|
|
|
|
if (video_data.params.autoplay || video_data.params.continue_autoplay) {
|
|
|
|
url.searchParams.set('autoplay', '1');
|
|
|
|
}
|
2019-05-06 21:07:10 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
if (video_data.params.listen !== video_data.preferences.listen) {
|
|
|
|
url.searchParams.set('listen', video_data.params.listen);
|
|
|
|
}
|
2019-05-06 21:07:10 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
if (video_data.params.speed !== video_data.preferences.speed) {
|
|
|
|
url.searchParams.set('speed', video_data.params.speed);
|
|
|
|
}
|
2019-05-06 21:07:10 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
if (video_data.params.local !== video_data.preferences.local) {
|
|
|
|
url.searchParams.set('local', video_data.params.local);
|
|
|
|
}
|
2019-05-27 22:46:22 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
if (video_data.video_series.length !== 0) {
|
2022-04-20 14:35:19 +05:30
|
|
|
url.searchParams.set('playlist', video_data.video_series.join(','));
|
2019-10-18 22:14:11 +05:30
|
|
|
}
|
2019-05-06 21:07:10 +05:30
|
|
|
|
2019-10-18 22:14:11 +05:30
|
|
|
location.assign(url.pathname + url.search);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|