invidious/assets/js/watch.js

376 lines
13 KiB
JavaScript
Raw Normal View History

2019-05-06 14:48:33 +00:00
String.prototype.supplant = function (o) {
return this.replace(/{([^{}]*)}/g, function (a, b) {
var r = o[b];
return typeof r === 'string' || typeof r === 'number' ? r : a;
});
}
2018-10-07 03:20:40 +00:00
function toggle_parent(target) {
2019-05-02 01:03:39 +00:00
body = target.parentNode.parentNode.children[1];
2019-05-06 14:48:33 +00:00
if (body.style.display === null || body.style.display === '') {
target.innerHTML = '[ + ]';
body.style.display = 'none';
2019-05-02 01:03:39 +00:00
} else {
2019-05-06 14:48:33 +00:00
target.innerHTML = '[ - ]';
body.style.display = '';
2019-05-02 01:03:39 +00:00
}
2018-10-07 03:20:40 +00:00
}
function toggle_comments(target) {
2019-05-02 01:03:39 +00:00
body = target.parentNode.parentNode.parentNode.children[1];
2019-05-06 14:48:33 +00:00
if (body.style.display === null || body.style.display === '') {
target.innerHTML = '[ + ]';
body.style.display = 'none';
2019-05-02 01:03:39 +00:00
} else {
2019-05-06 14:48:33 +00:00
target.innerHTML = '[ - ]';
body.style.display = '';
2019-05-02 01:03:39 +00:00
}
2018-10-07 03:20:40 +00:00
}
function swap_comments(source) {
2019-05-06 14:48:33 +00:00
if (source == 'youtube') {
2019-05-02 01:03:39 +00:00
get_youtube_comments();
2019-05-06 14:48:33 +00:00
} else if (source == 'reddit') {
2019-05-02 01:03:39 +00:00
get_reddit_comments();
}
2018-10-07 03:20:40 +00:00
}
2019-02-16 20:24:15 +00:00
function show_youtube_replies(target, inner_text, sub_text) {
2019-05-02 01:03:39 +00:00
body = target.parentNode.parentNode.children[1];
2019-05-06 14:48:33 +00:00
body.style.display = '';
2018-10-15 16:15:23 +00:00
2019-05-02 01:03:39 +00:00
target.innerHTML = inner_text;
2019-05-06 14:48:33 +00:00
target.setAttribute('onclick', "hide_youtube_replies(this, \'" + inner_text + "\', \'" + sub_text + "\')");
2018-10-15 16:15:23 +00:00
}
2019-02-16 20:24:15 +00:00
function hide_youtube_replies(target, inner_text, sub_text) {
2019-05-02 01:03:39 +00:00
body = target.parentNode.parentNode.children[1];
2019-05-06 14:48:33 +00:00
body.style.display = 'none';
2018-10-15 16:15:23 +00:00
2019-05-02 01:03:39 +00:00
target.innerHTML = sub_text;
2019-05-06 14:48:33 +00:00
target.setAttribute('onclick', "show_youtube_replies(this, \'" + inner_text + "\', \'" + sub_text + "\')");
}
function continue_autoplay(target) {
if (target.checked) {
player.on('ended', function () {
var url = new URL('https://example.com/watch?v=' + watch_data.next_video);
if (watch_data.params.autoplay || watch_data.params.continue_autoplay) {
url.searchParams.set('autoplay', '1');
}
if (watch_data.params.listen !== watch_data.preferences.listen) {
url.searchParams.set('listen', watch_data.params.listen);
}
if (watch_data.params.speed !== watch_data.preferences.speed) {
url.searchParams.set('speed', watch_data.params.speed);
}
url.searchParams.set('continue', '1');
location.assign(url.pathname + url.search);
});
} else {
player.off('ended');
}
}
function number_with_separator(val) {
while (/(\d+)(\d{3})/.test(val.toString())) {
val = val.toString().replace(/(\d+)(\d{3})/, '$1' + ',' + '$2');
}
return val;
}
function get_playlist(plid, timeouts = 0) {
playlist = document.getElementById('playlist');
if (timeouts > 10) {
console.log('Failed to pull playlist');
playlist.innerHTML = '';
return;
}
playlist.innerHTML = ' \
<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3> \
<hr>'
if (plid.startsWith('RD')) {
var plid_url = '/api/v1/mixes/' + plid +
'?continuation=' + watch_data.id +
'&format=html&hl=' + watch_data.preferences.locale;
} else {
var plid_url = '/api/v1/playlists/' + plid +
'?continuation=' + watch_data.id +
'&format=html&hl=' + watch_data.preferences.locale;
}
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;
xhr.open('GET', plid_url, true);
xhr.send();
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
playlist.innerHTML = xhr.response.playlistHtml;
if (xhr.response.nextVideo) {
player.on('ended', function () {
var url = new URL('https://example.com/watch?v=' + watch_data.next_video);
if (watch_data.params.autoplay || watch_data.params.continue_autoplay) {
url.searchParams.set('autoplay', '1');
}
if (watch_data.params.listen !== watch_data.preferences.listen) {
url.searchParams.set('listen', watch_data.params.listen);
}
if (watch_data.params.speed !== watch_data.preferences.speed) {
url.searchParams.set('speed', watch_data.params.speed);
}
url.searchParams.set('list', plid);
location.assign(url.pathname + url.search);
});
}
} else {
playlist.innerHTML = '';
document.getElementById('continue').style.display = '';
}
}
}
xhr.ontimeout = function () {
console.log('Pulling playlist timed out.');
playlist = document.getElementById('playlist');
playlist.innerHTML =
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3><hr>';
get_playlist(plid, timeouts + 1);
}
}
function get_reddit_comments(timeouts = 0) {
comments = document.getElementById('comments');
if (timeouts > 10) {
console.log('Failed to pull comments');
comments.innerHTML = '';
return;
}
var fallback = comments.innerHTML;
comments.innerHTML =
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>';
var url = '/api/v1/comments/' + watch_data.id +
'?source=reddit&format=html' +
'&hl=' + watch_data.preferences.locale;
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;
xhr.open('GET', url, true);
xhr.send();
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
comments.innerHTML = ' \
<div> \
<h3> \
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a> \
{title} \
</h3> \
<p> \
<b> \
<a href="javascript:void(0)" onclick="swap_comments(\'youtube\')"> \
{youtubeCommentsText} \
</a> \
</b> \
</p> \
<b> \
<a rel="noopener" target="_blank" href="https://reddit.com{permalink}">{redditPermalinkText}</a> \
</b> \
</div> \
<div>{contentHtml}</div> \
<hr>'.supplant({
title: xhr.response.title,
youtubeCommentsText: watch_data.youtube_comments_text,
redditPermalinkText: watch_data.reddit_permalink_text,
permalink: xhr.response.permalink,
contentHtml: xhr.response.contentHtml
});
} else {
if (watch_data.preferences.comments[1] === 'youtube') {
get_youtube_comments(timeouts + 1);
} else {
comments.innerHTML = fallback;
}
}
}
}
xhr.ontimeout = function () {
console.log('Pulling comments timed out.');
get_reddit_comments(timeouts + 1);
}
}
function get_youtube_comments(timeouts = 0) {
comments = document.getElementById('comments');
if (timeouts > 10) {
console.log('Failed to pull comments');
comments.innerHTML = '';
return;
}
var fallback = comments.innerHTML;
comments.innerHTML =
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>';
var url = '/api/v1/comments/' + watch_data.id +
'?format=html' +
'&hl=' + watch_data.preferences.locale +
'&thin_mode=' + watch_data.preferences.thin_mode;
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;
xhr.open('GET', url, true);
xhr.send();
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
if (xhr.response.commentCount > 0) {
comments.innerHTML = ' \
<div> \
<h3> \
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a> \
{commentsText} \
</h3> \
<b> \
<a href="javascript:void(0)" onclick="swap_comments(\'reddit\')"> \
{redditComments} \
</a> \
</b> \
</div> \
<div>{contentHtml}</div> \
<hr>'.supplant({
contentHtml: xhr.response.contentHtml,
redditComments: watch_data.reddit_comments_text,
commentsText: watch_data.comments_text.supplant(
{ commentCount: number_with_separator(xhr.response.commentCount) }
)
});
} else {
comments.innerHTML = '';
}
} else {
if (watch_data.preferences[1] === 'youtube') {
get_youtube_comments(timeouts + 1);
} else {
comments.innerHTML = '';
}
}
}
}
xhr.ontimeout = function () {
console.log('Pulling comments timed out.');
comments.innerHTML =
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>';
get_youtube_comments(timeouts + 1);
}
}
function get_youtube_replies(target, load_more) {
var continuation = target.getAttribute('data-continuation');
var body = target.parentNode.parentNode;
var fallback = body.innerHTML;
body.innerHTML =
'<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>';
var url = '/api/v1/comments/' + watch_data.id +
'?format=html' +
'&hl=' + watch_data.preferences.locale +
'&thin_mode=' + watch_data.preferences.thin_mode +
'&continuation=' + continuation;
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;
xhr.open('GET', url, true);
xhr.send();
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
if (load_more) {
body = body.parentNode.parentNode;
body.removeChild(body.lastElementChild);
body.innerHTML += xhr.response.contentHtml;
} else {
body.innerHTML = ' \
<p><a href="javascript:void(0)" \
onclick="hide_youtube_replies(this, \'{hideRepliesText}\', \'{showRepliesText}\')">{hideRepliesText} \
</a></p> \
<div>{contentHtml}</div>'.supplant({
hideRepliesText: watch_data.hide_replies_text,
showRepliesText: watch_data.show_replies_text,
contentHtml: xhr.response.contentHtml
});
}
} else {
body.innerHTML = fallback;
}
}
}
xhr.ontimeout = function () {
console.log('Pulling comments timed out.');
body.innerHTML = fallback;
}
}
if (watch_data.play_next) {
player.on('ended', function () {
var url = new URL('https://example.com/watch?v=' + watch_data.next_video);
if (watch_data.params.autoplay || watch_data.params.continue_autoplay) {
url.searchParams.set('autoplay', '1');
}
if (watch_data.params.listen !== watch_data.preferences.listen) {
url.searchParams.set('listen', watch_data.params.listen);
}
if (watch_data.params.speed !== watch_data.preferences.speed) {
url.searchParams.set('speed', watch_data.params.speed);
}
url.searchParams.set('continue', '1');
location.assign(url.pathname + url.search);
});
}
if (watch_data.plid) {
get_playlist(watch_data.plid);
}
if (watch_data.preferences.comments[0] === 'youtube') {
get_youtube_comments();
} else if (watch_data.preferences.comments[0] === 'reddit') {
get_reddit_comments();
} else if (watch_data.preferences.comments[1] === 'youtube') {
get_youtube_comments();
} else if (watch_data.preferences.comments[1] === 'reddit') {
get_reddit_comments();
} else {
comments = document.getElementById('comments');
comments.innerHTML = '';
2018-10-15 16:15:23 +00:00
}