mediaserver-nginx-autoindexer/autoindex.js

298 lines
10 KiB
JavaScript
Raw Normal View History

2021-05-23 19:24:04 +00:00
const allLinks = [...document.getElementsByTagName('a')];
const bodyInner = document.querySelector('.inner');
const tableElem = document.querySelector('table');
const infoRegex = /(-thumb)?\.(jpg|nfo|srt)$/;
2021-05-30 14:52:17 +00:00
let infoFiles = 0;
let infoFilesAccounted = 0;
2021-05-23 19:24:04 +00:00
const arrow = `
<svg version="1.1" id="back-arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
2021-05-23 19:47:14 +00:00
viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g>
2021-05-24 19:05:42 +00:00
<g>
<path fill="#fff" d="M464.344,207.418l0.768,0.168H135.888l103.496-103.724c5.068-5.064,7.848-11.924,7.848-19.124
c0-7.2-2.78-14.012-7.848-19.088L223.28,49.538c-5.064-5.064-11.812-7.864-19.008-7.864c-7.2,0-13.952,2.78-19.016,7.844
L7.844,226.914C2.76,231.998-0.02,238.77,0,245.974c-0.02,7.244,2.76,14.02,7.844,19.096l177.412,177.412
c5.064,5.06,11.812,7.844,19.016,7.844c7.196,0,13.944-2.788,19.008-7.844l16.104-16.112c5.068-5.056,7.848-11.808,7.848-19.008
c0-7.196-2.78-13.592-7.848-18.652L134.72,284.406h329.992c14.828,0,27.288-12.78,27.288-27.6v-22.788
C492,219.198,479.172,207.418,464.344,207.418z"/>
</g>
2021-05-23 19:47:14 +00:00
</g>
2021-05-23 19:24:04 +00:00
</svg>
`
2021-05-24 19:05:42 +00:00
function reencodeURI(uri) {
return encodeURIComponent(decodeURIComponent(uri));
}
function getHref(tag) {
return tag.getAttribute('href');
}
2021-05-23 19:24:04 +00:00
function findByHref(href) {
2021-05-24 19:05:42 +00:00
return allLinks.filter((link) => {
return reencodeURI(getHref(link)) === reencodeURI(href)
});
2021-05-23 19:24:04 +00:00
}
function findByInfoFile(infoFile) {
const found = ['avi', 'mp4', 'mkv'].reduce((last, current) => {
const element = findByHref(infoFile.replace(infoRegex, '.' + current))[0];
return element ? element : last;
}, null);
return found;
}
function deduplicateJointEpisode(textContent) {
return new Promise((resolve, reject) => {
const lns = textContent.split('\n');
const result = [];
let passed = 0;
for (const line of lns) {
if (line.startsWith('<episodedetails>')) {
if (passed === 1) {
break;
}
passed = 1;
}
result.push(line);
}
resolve(result.join('\n'));
2021-05-23 19:47:14 +00:00
});
2021-05-23 19:24:04 +00:00
}
const parser = new window.DOMParser();
async function createXMLRequest(nfo) {
return fetch(nfo)
.then((response) => response.text())
.then((text) => deduplicateJointEpisode(text))
.then((str) => parser.parseFromString(str, 'text/xml'));
}
function createOrImproveMovieMeta(original, thumbnail, nfo) {
2021-05-24 19:05:42 +00:00
let imgTag = `<img class="thumbnail" src="${thumbnail ? reencodeURI(getHref(thumbnail)) : ''}"/>`;
2021-05-23 19:24:04 +00:00
let movieTitle = `<div class="movie-title">${original.innerText}</div>`;
let movieDescription = `<div class="movie-description"></div>`;
2021-05-24 19:05:42 +00:00
let movieButtons = `<div class="movie-buttons"></div>`;
2021-05-23 19:24:04 +00:00
if (!thumbnail && !nfo) {
return;
}
if (original.parentElement.classList.contains('enhanced')) {
imgTag = original.querySelector('.thumbnail');
movieTitle = original.querySelector('.movie-title');
movieDescription = original.querySelector('.movie-description');
2021-05-24 19:05:42 +00:00
movieButtons = original.querySelector('.movie-buttons');
2021-05-23 19:24:04 +00:00
if (thumbnail) {
2021-05-24 19:05:42 +00:00
imgTag.src = reencodeURI(getHref(thumbnail));
2021-05-23 19:24:04 +00:00
}
} else {
original.classList.add('movie');
2021-05-24 19:05:42 +00:00
original.innerHTML = imgTag + '<div class="meta-wrap">' + movieTitle + movieDescription + movieButtons + '</div>';
2021-05-23 19:24:04 +00:00
original.parentElement.classList.add('enhanced');
2021-05-23 19:47:14 +00:00
// quick innerHTML hack to create elements here lol
2021-05-23 19:24:04 +00:00
imgTag = original.querySelector('.thumbnail');
movieTitle = original.querySelector('.movie-title');
movieDescription = original.querySelector('.movie-description');
2021-05-24 19:05:42 +00:00
movieButtons = original.querySelector('.movie-buttons');
2021-05-23 19:24:04 +00:00
}
if (nfo) {
2021-05-24 19:05:42 +00:00
createXMLRequest(reencodeURI(getHref(nfo)))
2021-05-23 19:24:04 +00:00
.then((content) => {
2021-05-30 14:52:17 +00:00
infoFilesAccounted += 1;
2021-05-23 19:24:04 +00:00
if (!content) {
return;
}
const titleEl = content.querySelector('title');
const plotEl = content.querySelector('plot');
const airedEl = content.querySelector('aired');
2021-05-23 19:47:14 +00:00
const premieredEl = content.querySelector('premiered');
2021-05-24 19:05:42 +00:00
const imdbEl = content.querySelector('uniqueid[type="imdb"]');
const tvdbEl = content.querySelector('uniqueid[type="tvdb"]');
2021-05-23 19:24:04 +00:00
if (!titleEl || !plotEl) {
return;
}
2021-05-23 19:47:14 +00:00
if (airedEl || premieredEl) {
2021-05-23 19:24:04 +00:00
const timestamp = original.parentElement.parentElement.querySelector('.timestamp');
if (timestamp) {
2021-05-23 19:47:14 +00:00
timestamp.innerText = (airedEl || premieredEl).textContent;
2021-05-23 19:24:04 +00:00
}
}
const episode = content.querySelector('episode');
const season = content.querySelector('season');
let title = titleEl.textContent
if (episode && season) {
title = `(S${season.textContent} E${episode.textContent}) ` + title;
2021-05-30 14:52:17 +00:00
original.parentElement.setAttribute('data-episode', episode.textContent);
2021-05-23 19:24:04 +00:00
}
movieTitle.innerText = title;
movieDescription.innerText = plotEl.textContent;
2021-05-24 19:05:42 +00:00
if (imdbEl) {
const imlink = document.createElement('a');
imlink.target = '_blank';
imlink.innerText = 'IMDb';
imlink.href = `https://www.imdb.com/title/${imdbEl.textContent}`;
movieButtons.appendChild(imlink);
}
if (tvdbEl) {
const tvlink = document.createElement('a');
tvlink.target = '_blank';
tvlink.innerText = 'The TVDB';
tvlink.href = `http://www.thetvdb.com/?tab=series&id=${tvdbEl.textContent}`;
movieButtons.appendChild(tvlink);
}
if (getHref(nfo) !== 'tvshow.nfo' &&
navigator && navigator.clipboard &&
navigator.clipboard.writeText) {
const copybutton = document.createElement('button');
copybutton.innerText = 'Copy direct URL';
movieButtons.appendChild(copybutton);
copybutton.addEventListener('click', (e) => {
e.preventDefault();
const popup = document.createElement('div');
popup.className = 'tooltip';
popup.innerText = 'Copied!';
const url = window.location.href + reencodeURI(getHref(original));
navigator.clipboard.writeText(url).then(() => {
copybutton.appendChild(popup);
setTimeout(() => copybutton.removeChild(popup), 1000);
});
});
}
})
2021-05-30 14:52:17 +00:00
.catch((e) => {
infoFilesAccounted += 1;
console.error(e);
});
2021-05-23 19:24:04 +00:00
}
}
2021-05-30 14:52:17 +00:00
function waitUntilInfoComplete() {
return new Promise((resolve, reject) => {
if (infoFilesAccounted >= infoFiles) {
resolve(true);
return;
}
let seconds = 0;
const accountWait = setInterval(() => {
if (infoFilesAccounted >= infoFiles || seconds > 5000) {
clearInterval(accountWait);
resolve(true);
return;
}
seconds += 500;
}, 500);
});
}
const getCellValue = (tr, idx) =>
tr.children[idx].getAttribute('data-episode')
|| tr.children[idx].innerText
|| tr.children[idx].textContent;
const comparer = (idx, asc) => (a, b) => ((v1, v2) =>
v1 !== '' && v2 !== '' && !isNaN(v1) && !isNaN(v2) ? v1 - v2 : v1.toString().localeCompare(v2)
)(getCellValue(asc ? a : b, idx), getCellValue(asc ? b : a, idx));
const sortTableValues = (index) =>
Array.from(tableElem.querySelectorAll('tr:nth-child(n+2):not(.btn-back)'))
.sort(comparer(index, this.asc = !this.asc))
.forEach((tr) => tableElem.appendChild(tr));
2021-05-23 19:24:04 +00:00
let tvShow;
function accountForMetadata() {
allLinks.forEach((link) => {
2021-05-24 19:05:42 +00:00
const url = getHref(link);
2021-05-23 19:24:04 +00:00
if (url.match(infoRegex)) {
link.parentElement.parentElement.style.display = 'none';
let findOriginal
if (url === 'tvshow.nfo' || url === 'poster.jpg') {
2021-05-24 19:05:42 +00:00
if (url === 'poster.jpg' && !allLinks.find((found) => getHref(found) === 'tvshow.nfo')) {
2021-05-23 19:24:04 +00:00
findOriginal = document.querySelector('a:not([href=".."])');
} else {
if (tvShow) {
findOriginal = tvShow;
} else {
const wrapper = document.createElement('div');
wrapper.className = 'highlight';
tvShow = document.createElement('a');
tvShow.className = 'movie';
wrapper.appendChild(tvShow);
bodyInner.insertBefore(wrapper, tableElem);
findOriginal = tvShow;
}
}
} else if (url.startsWith('season') && url.includes('poster')) {
const sn = url.match(/season(\d+)/);
if (sn) {
2021-05-24 19:05:42 +00:00
findOriginal = allLinks.find((allurl) => allurl.innerText.includes(parseInt(sn[1], 10)));
} else if (url.includes('specials')) {
findOriginal = allLinks.find((allurl) => allurl.innerText.toLowerCase().startsWith('special'));
2021-05-23 19:24:04 +00:00
}
} else {
2021-05-23 19:47:14 +00:00
findOriginal = findByInfoFile(url);
2021-05-23 19:24:04 +00:00
}
if (findOriginal) {
2021-05-30 14:52:17 +00:00
if (url.match(/.nfo$/)) {
infoFiles += 1;
}
2021-05-23 19:24:04 +00:00
createOrImproveMovieMeta(findOriginal,
url.match(/.jpg$/) ? link : undefined,
url.match(/.nfo$/) ? link : undefined,
);
}
}
if (url === '..') {
link.parentElement.parentElement.classList.add('btn-back');
link.innerHTML = arrow + 'Back (..)';
}
});
2021-05-30 14:52:17 +00:00
waitUntilInfoComplete().then(() => sortTableValues(0));
2021-05-23 19:24:04 +00:00
}
2021-05-24 19:05:42 +00:00
function createToggleCheckbox(field, value, description) {
2021-05-23 19:24:04 +00:00
const form = document.createElement('div');
const checkbox = document.createElement('input');
const label = document.createElement('label');
2021-05-24 19:05:42 +00:00
form.className = 'form ' + field;
2021-05-23 19:24:04 +00:00
checkbox.type = 'checkbox';
2021-05-24 19:05:42 +00:00
checkbox.id = field
label.innerText = description;
label.setAttribute('for', field);
2021-05-23 19:24:04 +00:00
form.appendChild(checkbox);
form.appendChild(label)
bodyInner.appendChild(form);
checkbox.addEventListener('change', (e) => {
if (checkbox.checked) {
2021-05-24 19:05:42 +00:00
window.localStorage.setItem(field, 'true');
2021-05-23 19:24:04 +00:00
} else {
2021-05-24 19:05:42 +00:00
window.localStorage.removeItem(field);
2021-05-23 19:24:04 +00:00
}
window.location.reload();
});
2021-05-24 19:05:42 +00:00
checkbox.checked = value === 'true';
2021-05-23 19:24:04 +00:00
}
if ('localStorage' in window) {
const plainMode = window.localStorage.getItem('plainMode');
if (plainMode !== 'true') {
accountForMetadata();
}
2021-05-24 19:05:42 +00:00
createToggleCheckbox('plainMode', plainMode, 'Disable metadata / display plain index listing (less bandwidth required)');
2021-05-23 19:24:04 +00:00
} else {
accountForMetadata();
}
2021-05-30 14:52:17 +00:00
document.querySelectorAll('th').forEach((th) => th.addEventListener('click', (() => {
sortTableValues(Array.from(th.parentNode.children).indexOf(th));
})));