123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- import { compress, fetchAdvanced, randomId } from "@sv443-network/userutils";
- import { marked } from "marked";
- import { branch, compressionFormat, repo } from "../constants";
- import { type Domain, type ResourceKey } from "../types";
- import { error, type TrLocale, warn } from ".";
- import langMapping from "../../assets/locales.json" assert { type: "json" };
- //#SECTION misc
- /**
- * Returns the current domain as a constant string representation
- * @throws Throws if script runs on an unexpected website
- */
- export function getDomain(): Domain {
- if(location.hostname.match(/^music\.youtube/))
- return "ytm";
- else if(location.hostname.match(/youtube\./))
- return "yt";
- else
- throw new Error("BetterYTM is running on an unexpected website. Please don't tamper with the @match directives in the userscript header.");
- }
- /** Returns a pseudo-random ID unique to each session - returns null if sessionStorage is unavailable */
- export function getSessionId(): string | null {
- try {
- let sesId = window.sessionStorage.getItem("_bytm-session-id");
- if(!sesId)
- window.sessionStorage.setItem("_bytm-session-id", sesId = randomId(8, 36));
- return sesId;
- }
- catch(err) {
- warn("Couldn't get session ID, sessionStorage / cookies might be disabled:", err);
- return null;
- }
- }
- let isCompressionSupported: boolean | undefined;
- /** Tests whether compression via the predefined {@linkcode compressionFormat} is supported */
- export async function compressionSupported() {
- if(typeof isCompressionSupported === "boolean")
- return isCompressionSupported;
- try {
- await compress(".", compressionFormat, "string");
- return isCompressionSupported = true;
- }
- catch(e) {
- return isCompressionSupported = false;
- }
- }
- /** Returns a string with the given array's items separated by a default separator (`", "` by default), with an optional different separator for the last item */
- export function arrayWithSeparators<TArray>(array: TArray[], separator = ", ", lastSeparator?: string) {
- const arr = [...array];
- if(!lastSeparator)
- lastSeparator = separator;
- if(arr.length === 0)
- return "";
- else if(arr.length <= 2)
- return arr.join(lastSeparator);
- else
- return `${arr.slice(0, -1).join(separator)}${lastSeparator}${arr.at(-1)!}`;
- }
- /** Returns the watch ID of the current video or null if not on a video page */
- export function getWatchId() {
- const { searchParams, pathname } = new URL(location.href);
- return pathname.includes("/watch") ? searchParams.get("v") : null;
- }
- type ThumbQuality = `${"" | "hq" | "mq" | "sd" | "maxres"}default`;
- /** Returns the thumbnail URL for a video with the given watch ID and quality (defaults to "hqdefault") */
- export function getThumbnailUrl(watchId: string, quality?: ThumbQuality): string
- /** Returns the thumbnail URL for a video with the given watch ID and index */
- export function getThumbnailUrl(watchId: string, index: 0 | 1 | 2 | 3): string
- /** Returns the thumbnail URL for a video with either a given quality identifier or index */
- export function getThumbnailUrl(watchId: string, qualityOrIndex: ThumbQuality | 0 | 1 | 2 | 3 = "hqdefault") {
- return `https://i.ytimg.com/vi/${watchId}/${qualityOrIndex}.jpg`;
- }
- /** Returns the best available thumbnail URL for a video with the given watch ID */
- export async function getBestThumbnailUrl(watchId: string) {
- const priorityList = ["maxresdefault", "sddefault", 0];
- for(const quality of priorityList) {
- let response: Response | undefined;
- const url = getThumbnailUrl(watchId, quality as ThumbQuality);
- try {
- response = await fetchAdvanced(url, { method: "HEAD", timeout: 5000 });
- }
- catch(e) {
- void e;
- }
- if(response?.ok)
- return url;
- }
- }
- /** Copies a JSON-serializable object */
- export function reserialize<T>(data: T): T {
- return JSON.parse(JSON.stringify(data));
- }
- //#SECTION resources
- /**
- * Returns the URL of a resource by its name, as defined in `assets/resources.json`, from GM resource cache - [see GM.getResourceUrl docs](https://wiki.greasespot.net/GM.getResourceUrl)
- * Falls back to a `raw.githubusercontent.com` URL or base64-encoded data URI if the resource is not available in the GM resource cache
- */
- export async function getResourceUrl(name: ResourceKey | "_") {
- let url = await GM.getResourceUrl(name);
- if(!url || url.length === 0) {
- const resource = GM.info.script.resources?.[name].url;
- if(typeof resource === "string") {
- const resourceUrl = new URL(resource);
- const resourcePath = resourceUrl.pathname;
- if(resourcePath)
- return `https://raw.githubusercontent.com/${repo}/${branch}${resourcePath}`;
- }
- warn(`Couldn't get blob URL nor external URL for @resource '${name}', trying to use base64-encoded fallback`);
- // @ts-ignore
- url = await GM.getResourceUrl(name, false);
- }
- return url;
- }
- /**
- * Returns the preferred locale of the user, provided it is supported by the userscript.
- * Prioritizes `navigator.language`, then `navigator.languages`, then `"en_US"` as a fallback.
- */
- export function getPreferredLocale(): TrLocale {
- const navLang = navigator.language.replace(/-/g, "_");
- const navLangs = navigator.languages
- .filter(lang => lang.match(/^[a-z]{2}(-|_)[A-Z]$/) !== null)
- .map(lang => lang.replace(/-/g, "_"));
- if(Object.entries(langMapping).find(([key]) => key === navLang))
- return navLang as TrLocale;
- for(const loc of navLangs) {
- if(Object.entries(langMapping).find(([key]) => key === loc))
- return loc as TrLocale;
- }
- // if navigator.languages has entries that aren't locale codes in the format xx_XX
- if(navigator.languages.some(lang => lang.match(/^[a-z]{2}$/))) {
- for(const lang of navLangs) {
- const foundLoc = Object.entries(langMapping).find(([key]) => key.startsWith(lang))?.[0];
- if(foundLoc)
- return foundLoc as TrLocale;
- }
- }
- return "en_US";
- }
- /** Returns the content behind the passed resource identifier to be assigned to an element's innerHTML property */
- export async function resourceToHTMLString(resource: ResourceKey) {
- try {
- const resourceUrl = await getResourceUrl(resource);
- if(!resourceUrl)
- throw new Error(`Couldn't find URL for resource '${resource}'`);
- return await (await fetchAdvanced(resourceUrl)).text();
- }
- catch(err) {
- error("Couldn't get SVG element from resource:", err);
- return null;
- }
- }
- /** Parses a markdown string using marked and turns it into an HTML string with default settings - doesn't sanitize against XSS! */
- export function parseMarkdown(mdString: string) {
- return marked.parse(mdString, {
- async: true,
- gfm: true,
- });
- }
- /** Returns the content of the changelog markdown file */
- export async function getChangelogMd() {
- return await (await fetchAdvanced(await getResourceUrl("doc-changelog"))).text();
- }
- /** Returns the changelog as HTML with a details element for each version */
- export async function getChangelogHtmlWithDetails() {
- try {
- const changelogMd = await getChangelogMd();
- let changelogHtml = await parseMarkdown(changelogMd);
- const getVerId = (verStr: string) => verStr.trim().replace(/[._#\s-]/g, "");
- changelogHtml = changelogHtml.replace(/<div\s+class="split">\s*<\/div>\s*\n?\s*<br(\s\/)?>/gm, "</details>\n<br>\n<details class=\"bytm-changelog-version-details\">");
- const h2Matches = Array.from(changelogHtml.matchAll(/<h2(\s+id=".+")?>([\d\w\s.]+)<\/h2>/gm));
- for(const match of h2Matches) {
- const [fullMatch, , verStr] = match;
- const verId = getVerId(verStr);
- const h2Elem = `<h2 id="${verId}" role="subheading" aria-level="1">Version ${verStr}</h2>`;
- const summaryElem = `<summary tab-index="0">${h2Elem}</summary>`;
- changelogHtml = changelogHtml.replace(fullMatch, `${summaryElem}`);
- }
- changelogHtml = `<details class="bytm-changelog-version-details">${changelogHtml}</details>`;
- return changelogHtml;
- }
- catch(err) {
- return `Error while preparing changelog: ${err}`;
- }
- }
|