youtube: don't block api startup waiting for innertube to activate (#532)

cobalt api has been getting blocked for several seconds
during startup, and also crashing when unable to connect
to youtube (e.g. when it's blocked); this should fix both
those things
This commit is contained in:
jj 2024-05-29 10:26:17 +02:00 committed by GitHub
parent 35ba3dc1a3
commit 44ecfeeea7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ import { env } from '../../config.js';
import { cleanString } from '../../sub/utils.js';
import { fetch } from 'undici'
const ytBase = await Innertube.create();
const ytBase = Innertube.create().catch(e => e);
const codecMatch = {
h264: {
@ -23,16 +23,21 @@ const codecMatch = {
}
}
const cloneInnertube = (customFetch) => {
const cloneInnertube = async (customFetch) => {
const innertube = await ytBase;
if (innertube instanceof Error) {
throw innertube;
}
const session = new Session(
ytBase.session.context,
ytBase.session.key,
ytBase.session.api_version,
ytBase.session.account_index,
ytBase.session.player,
innertube.session.context,
innertube.session.key,
innertube.session.api_version,
innertube.session.account_index,
innertube.session.player,
undefined,
customFetch ?? ytBase.session.http.fetch,
ytBase.session.cache
customFetch ?? innertube.session.http.fetch,
innertube.session.cache
);
const yt = new Innertube(session);
@ -40,7 +45,7 @@ const cloneInnertube = (customFetch) => {
}
export default async function(o) {
const yt = cloneInnertube(
const yt = await cloneInnertube(
(input, init) => fetch(input, { ...init, dispatcher: o.dispatcher })
);