2024-07-24 12:56:12 +02:00
|
|
|
const introSkipper = {
|
2022-11-25 01:37:27 -06:00
|
|
|
originalFetch: window.fetch.bind(window),
|
2024-07-24 12:56:12 +02:00
|
|
|
d: msg => console.debug("[intro skipper] ", msg),
|
|
|
|
setup() {
|
|
|
|
this.initializeState();
|
|
|
|
document.addEventListener("viewshow", this.viewShow.bind(this));
|
|
|
|
window.fetch = this.fetchWrapper.bind(this);
|
|
|
|
this.videoPositionChanged = this.videoPositionChanged.bind(this);
|
|
|
|
this.d("Registered hooks");
|
|
|
|
},
|
|
|
|
initializeState() {
|
|
|
|
Object.assign(this, { allowEnter: true, skipSegments: {}, videoPlayer: null, skipButton: null, osdElement: null });
|
|
|
|
},
|
|
|
|
/** Wrapper around fetch() that retrieves skip segments for the currently playing item. */
|
|
|
|
async fetchWrapper(resource, options) {
|
|
|
|
const response = await this.originalFetch(resource, options);
|
|
|
|
try {
|
|
|
|
const url = new URL(resource);
|
|
|
|
if (!url.pathname.includes("/PlaybackInfo")) return response;
|
|
|
|
this.d("Retrieving skip segments from URL", url.pathname);
|
|
|
|
const pathArr = url.pathname.split("/");
|
|
|
|
const id = pathArr[1] === "Items" ? pathArr[2] : pathArr[3];
|
|
|
|
this.skipSegments = await this.secureFetch(`Episode/${id}/IntroSkipperSegments`);
|
|
|
|
this.d("Successfully retrieved skip segments", this.skipSegments);
|
|
|
|
} catch (e) {
|
|
|
|
console.error("Unable to get skip segments from", resource, e);
|
2023-03-04 00:15:26 -06:00
|
|
|
}
|
2024-07-24 12:56:12 +02:00
|
|
|
return response;
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Event handler that runs whenever the current view changes.
|
|
|
|
* Used to detect the start of video playback.
|
|
|
|
*/
|
|
|
|
viewShow() {
|
|
|
|
const location = window.location.hash;
|
|
|
|
this.d(`Location changed to ${location}`);
|
|
|
|
if (location !== "#/video") {
|
|
|
|
if (this.videoPlayer) this.initializeState();
|
|
|
|
return;
|
2024-06-01 14:15:30 +02:00
|
|
|
}
|
2024-07-24 12:56:12 +02:00
|
|
|
this.injectCss();
|
|
|
|
this.injectButton();
|
|
|
|
this.videoPlayer = document.querySelector("video");
|
|
|
|
if (this.videoPlayer) {
|
|
|
|
this.d("Hooking video timeupdate");
|
|
|
|
this.videoPlayer.addEventListener("timeupdate", this.videoPositionChanged);
|
|
|
|
this.osdElement = document.querySelector("div.videoOsdBottom")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Injects the CSS used by the skip intro button.
|
|
|
|
* Calling this function is a no-op if the CSS has already been injected.
|
|
|
|
*/
|
|
|
|
injectCss() {
|
|
|
|
if (document.querySelector("style#introSkipperCss")) {
|
|
|
|
this.d("CSS already added");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.d("Adding CSS");
|
|
|
|
const styleElement = document.createElement("style");
|
|
|
|
styleElement.id = "introSkipperCss";
|
|
|
|
styleElement.textContent = `
|
|
|
|
:root {
|
|
|
|
--rounding: 4px;
|
|
|
|
--accent: 0, 164, 220;
|
|
|
|
}
|
|
|
|
#skipIntro.upNextContainer {
|
|
|
|
width: unset;
|
|
|
|
margin: unset;
|
|
|
|
}
|
|
|
|
#skipIntro {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 7.5em;
|
|
|
|
right: 5em;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
#skipIntro .emby-button {
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 110%;
|
2024-07-25 17:09:05 +02:00
|
|
|
background: rgba(0, 0, 0, 0.7);
|
2024-07-24 12:56:12 +02:00
|
|
|
border-radius: var(--rounding);
|
|
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
|
|
|
|
transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
|
|
|
|
transform 0.3s cubic-bezier(0.4,0,0.2,1),
|
|
|
|
background-color 0.2s ease-out,
|
|
|
|
box-shadow 0.2s ease-out;
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(50%);
|
|
|
|
}
|
|
|
|
#skipIntro.show .emby-button {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
2024-07-25 17:09:05 +02:00
|
|
|
#skipIntro .emby-button:hover {
|
|
|
|
background: rgb(var(--accent));
|
|
|
|
box-shadow: 0 0 8px rgba(var(--accent), 0.6);
|
|
|
|
filter: brightness(1.2);
|
|
|
|
}
|
|
|
|
#skipIntro .emby-button:focus:not(:focus-visible) {
|
|
|
|
background: rgb(var(--accent));
|
2024-07-24 12:56:12 +02:00
|
|
|
box-shadow: 0 0 8px rgba(var(--accent), 0.6);
|
|
|
|
}
|
|
|
|
#btnSkipSegmentText {
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
padding: 0 5px 0 5px;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
document.querySelector("head").appendChild(styleElement);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Inject the skip intro button into the video player.
|
|
|
|
* Calling this function is a no-op if the CSS has already been injected.
|
|
|
|
*/
|
|
|
|
async injectButton() {
|
|
|
|
// Ensure the button we're about to inject into the page doesn't conflict with a pre-existing one
|
|
|
|
const preExistingButton = document.querySelector("div.skipIntro");
|
|
|
|
if (preExistingButton) {
|
|
|
|
preExistingButton.style.display = "none";
|
|
|
|
}
|
|
|
|
if (document.querySelector(".btnSkipIntro.injected")) {
|
|
|
|
this.d("Button already added");
|
|
|
|
this.skipButton = document.querySelector("#skipIntro");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const config = await this.secureFetch("Intros/UserInterfaceConfiguration");
|
|
|
|
if (!config.SkipButtonVisible) {
|
|
|
|
this.d("Not adding button: not visible");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.d("Adding button");
|
|
|
|
this.skipButton = document.createElement("div");
|
|
|
|
this.skipButton.id = "skipIntro";
|
|
|
|
this.skipButton.classList.add("hide", "upNextContainer");
|
|
|
|
this.skipButton.addEventListener("click", this.doSkip.bind(this));
|
|
|
|
this.skipButton.addEventListener("keydown", this.eventHandler.bind(this));
|
|
|
|
this.skipButton.innerHTML = `
|
|
|
|
<button is="emby-button" type="button" class="btnSkipIntro injected">
|
|
|
|
<span id="btnSkipSegmentText"></span>
|
|
|
|
<span class="material-icons">skip_next</span>
|
|
|
|
</button>
|
|
|
|
`;
|
|
|
|
this.skipButton.dataset.Introduction = config.SkipButtonIntroText;
|
|
|
|
this.skipButton.dataset.Credits = config.SkipButtonEndCreditsText;
|
|
|
|
const controls = document.querySelector("div#videoOsdPage");
|
|
|
|
controls.appendChild(this.skipButton);
|
|
|
|
},
|
|
|
|
/** Tests if the OSD controls are visible. */
|
|
|
|
osdVisible() {
|
|
|
|
return this.osdElement ? !this.osdElement.classList.contains("hide") : false;
|
|
|
|
},
|
|
|
|
/** Get the currently playing skippable segment. */
|
|
|
|
getCurrentSegment(position) {
|
|
|
|
for (const [key, segment] of Object.entries(this.skipSegments)) {
|
|
|
|
if ((position > segment.ShowSkipPromptAt && position < segment.HideSkipPromptAt - 1) ||
|
|
|
|
(this.osdVisible() && position > segment.IntroStart && position < segment.IntroEnd - 1)) {
|
|
|
|
segment.SegmentType = key;
|
|
|
|
return segment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return { SegmentType: "None" };
|
|
|
|
},
|
|
|
|
overrideBlur(button) {
|
|
|
|
if (!button.originalBlur) {
|
|
|
|
button.originalBlur = button.blur;
|
|
|
|
button.blur = () => {
|
|
|
|
if (!button.contains(document.activeElement)) {
|
|
|
|
button.originalBlur();
|
2024-06-01 14:15:30 +02:00
|
|
|
}
|
2024-07-24 12:56:12 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
restoreBlur(button) {
|
|
|
|
if (button.originalBlur) {
|
|
|
|
button.blur = button.originalBlur;
|
|
|
|
delete button.originalBlur;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/** Playback position changed, check if the skip button needs to be displayed. */
|
|
|
|
videoPositionChanged() {
|
|
|
|
if (!this.skipButton) return;
|
|
|
|
const embyButton = this.skipButton.querySelector(".emby-button");
|
|
|
|
const segmentType = introSkipper.getCurrentSegment(this.videoPlayer.currentTime).SegmentType;
|
|
|
|
if (segmentType === "None") {
|
|
|
|
if (!this.skipButton.classList.contains('show')) return;
|
|
|
|
this.skipButton.classList.remove('show');
|
|
|
|
embyButton.addEventListener("transitionend", () => {
|
|
|
|
this.skipButton.classList.add("hide");
|
|
|
|
this.restoreBlur(embyButton);
|
|
|
|
embyButton.blur();
|
|
|
|
this.allowEnter = true;
|
2024-04-17 21:21:25 +02:00
|
|
|
}, { once: true });
|
2023-03-04 00:15:26 -06:00
|
|
|
return;
|
2024-07-24 12:56:12 +02:00
|
|
|
}
|
|
|
|
this.skipButton.querySelector("#btnSkipSegmentText").textContent = this.skipButton.dataset[segmentType];
|
|
|
|
if (!this.skipButton.classList.contains("hide")) {
|
2024-07-25 17:09:05 +02:00
|
|
|
if (!this.osdVisible() && !embyButton.contains(document.activeElement)) embyButton.focus();
|
2024-07-24 12:56:12 +02:00
|
|
|
return;
|
|
|
|
}
|
2024-07-07 22:42:45 +02:00
|
|
|
requestAnimationFrame(() => {
|
2024-07-24 12:56:12 +02:00
|
|
|
this.skipButton.classList.remove("hide");
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
this.skipButton.classList.add('show');
|
|
|
|
this.overrideBlur(embyButton);
|
2024-07-25 17:09:05 +02:00
|
|
|
embyButton.focus();
|
2024-07-24 12:56:12 +02:00
|
|
|
});
|
2024-07-07 22:42:45 +02:00
|
|
|
});
|
2024-07-24 12:56:12 +02:00
|
|
|
},
|
|
|
|
/** Seeks to the end of the intro. */
|
|
|
|
doSkip() {
|
|
|
|
if (!this.allowEnter) return;
|
|
|
|
const segment = this.getCurrentSegment(this.videoPlayer.currentTime);
|
|
|
|
if (segment.SegmentType === "None") {
|
|
|
|
console.warn("[intro skipper] doSkip() called without an active segment");
|
|
|
|
return;
|
2024-07-07 22:42:45 +02:00
|
|
|
}
|
2024-07-24 12:56:12 +02:00
|
|
|
this.d(`Skipping ${segment.SegmentType}`);
|
|
|
|
this.allowEnter = false;
|
|
|
|
this.videoPlayer.currentTime = segment.SegmentType === "Credits" && this.videoPlayer.duration - segment.IntroEnd < 3
|
|
|
|
? this.videoPlayer.duration + 10
|
|
|
|
: segment.IntroEnd;
|
|
|
|
},
|
|
|
|
/** Make an authenticated fetch to the Jellyfin server and parse the response body as JSON. */
|
|
|
|
async secureFetch(url) {
|
|
|
|
url = new URL(url, ApiClient.serverAddress());
|
|
|
|
const res = await fetch(url, { headers: { "Authorization": `MediaBrowser Token=${ApiClient.accessToken()}` } });
|
|
|
|
if (!res.ok) throw new Error(`Expected status 200 from ${url}, but got ${res.status}`);
|
|
|
|
return res.json();
|
|
|
|
},
|
|
|
|
/** Handle keydown events. */
|
|
|
|
eventHandler(e) {
|
|
|
|
if (e.key !== "Enter") return;
|
2024-06-01 14:15:30 +02:00
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2024-07-24 12:56:12 +02:00
|
|
|
this.doSkip();
|
2024-06-01 14:15:30 +02:00
|
|
|
}
|
2024-07-24 12:56:12 +02:00
|
|
|
};
|
2024-05-18 20:05:04 +02:00
|
|
|
introSkipper.setup();
|