mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
80 lines
2.8 KiB
TypeScript
80 lines
2.8 KiB
TypeScript
import { APIVideoData, APIVideoInfo } from "../src/types/youtubeApi.model";
|
|
|
|
export class YouTubeApiMock {
|
|
// eslint-disable-next-line require-await
|
|
static async listVideos(videoID: string): Promise<APIVideoInfo> {
|
|
const obj = {
|
|
id: videoID
|
|
};
|
|
|
|
if (obj.id === "knownWrongID") {
|
|
return {
|
|
err: "No video found"
|
|
};
|
|
}
|
|
|
|
if (obj.id === "noDuration") {
|
|
return {
|
|
err: null,
|
|
data: {
|
|
title: "Example Title",
|
|
lengthSeconds: 0,
|
|
videoThumbnails: [
|
|
{
|
|
quality: "maxres",
|
|
url: "https://sponsor.ajay.app/LogoSponsorBlockSimple256px.png",
|
|
second__originalUrl:"https://sponsor.ajay.app/LogoSponsorBlockSimple256px.png",
|
|
width: 1280,
|
|
height: 720
|
|
},
|
|
]
|
|
} as APIVideoData
|
|
};
|
|
} else if (obj.id === "duration-update") {
|
|
return {
|
|
err: null,
|
|
data: {
|
|
title: "Example Title",
|
|
lengthSeconds: 500,
|
|
videoThumbnails: [
|
|
{
|
|
quality: "maxres",
|
|
url: "https://sponsor.ajay.app/LogoSponsorBlockSimple256px.png",
|
|
second__originalUrl:"https://sponsor.ajay.app/LogoSponsorBlockSimple256px.png",
|
|
width: 1280,
|
|
height: 720
|
|
},
|
|
]
|
|
} as APIVideoData
|
|
};
|
|
} else if (obj.id === "channelid-convert") {
|
|
return {
|
|
err: null,
|
|
data: {
|
|
title: "Video Lookup Title",
|
|
author: "ChannelAuthor",
|
|
authorId: "ChannelID"
|
|
} as APIVideoData
|
|
};
|
|
} else {
|
|
return {
|
|
err: null,
|
|
data: {
|
|
title: "Example Title",
|
|
authorId: "ExampleChannel",
|
|
published: 123,
|
|
lengthSeconds: 4980,
|
|
videoThumbnails: [
|
|
{
|
|
quality: "maxres",
|
|
url: "https://sponsor.ajay.app/LogoSponsorBlockSimple256px.png",
|
|
second__originalUrl:"https://sponsor.ajay.app/LogoSponsorBlockSimple256px.png",
|
|
width: 1280,
|
|
height: 720
|
|
},
|
|
]
|
|
} as APIVideoData
|
|
};
|
|
}
|
|
}
|
|
}
|