Skip to content

Commit

Permalink
Update ContentRenderer.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
TanmayDhobale authored Jun 13, 2024
1 parent 91d008e commit 9f9bf03
Showing 1 changed file with 30 additions and 31 deletions.
61 changes: 30 additions & 31 deletions src/components/admin/ContentRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ function bunnyUrl(url: string) {
);
}

async function isUrlAccessible(url: string): Promise<boolean> {
try {
const response = await fetch(url, { method: 'HEAD' });
return response.ok;
} catch (error) {
return false;
}
}

export const getMetadata = async (contentId: number) => {
const session = await getServerSession(authOptions);
if (!session?.user) {
Expand All @@ -27,18 +36,16 @@ export const getMetadata = async (contentId: number) => {
contentId,
},
});

if (!metadata) {
return null;
}

//@ts-ignore

const userId: string = (1).toString();
const user = await db.user.findFirst({
where: {
id: session?.user?.id?.toString() || '-1',
},
});
// const user = await db.user.findFirst({
// where: {
// id: session?.user?.id?.toString() || '-1',
// },
// });
//@ts-ignore
// if (metadata.migration_status === 'MIGRATED') {
// return {
Expand Down Expand Up @@ -66,48 +73,41 @@ export const getMetadata = async (contentId: number) => {
// }
if (user.bunnyProxyEnabled) {
return {
//@ts-ignore
1080: bunnyUrl(metadata[`video_1080p_mp4_${userId}`]),
//@ts-ignore
720: bunnyUrl(metadata[`video_720p_mp4_${userId}`]),
//@ts-ignore
360: bunnyUrl(metadata[`video_360p_mp4_${userId}`]),
subtitles: metadata['subtitles'],
//@ts-ignore
slides: metadata['slides'],
//@ts-ignore
segments: metadata['segments'],
// @ts-ignore
thumnnails: metadata['thumbnail_mosiac_url'],
};
}
return {
//@ts-ignore

const mainUrls = {
1080: metadata[`video_1080p_mp4_${userId}`],
//@ts-ignore
720: metadata[`video_720p_mp4_${userId}`],
//@ts-ignore
360: metadata[`video_360p_mp4_${userId}`],
subtitles: metadata['subtitles'],
//@ts-ignore
slides: metadata['slides'],
//@ts-ignore
segments: metadata['segments'],
};

const isMainUrlAccessible = await Promise.all(
Object.values(mainUrls).map(isUrlAccessible)
);

if (isMainUrlAccessible.every(Boolean)) {
return mainUrls;
}

// If any main URL is not accessible, return Bunny URLs
return {
//@ts-ignore
1080: metadata[`video_1080p_${userId}`],
//@ts-ignore
720: metadata[`video_720p_${userId}`],
//@ts-ignore
360: metadata[`video_360p_${userId}`],
//@ts-ignore
1080: bunnyUrl(metadata[`video_1080p_mp4_${userId}`]),
720: bunnyUrl(metadata[`video_720p_mp4_${userId}`]),
360: bunnyUrl(metadata[`video_360p_mp4_${userId}`]),
subtitles: metadata['subtitles'],
//@ts-ignore
slides: metadata['slides'],
//@ts-ignore
segments: metadata['segments'],
// @ts-ignore
thumnnails: metadata['thumbnail_mosiac_url'],
};
};
Expand All @@ -133,7 +133,6 @@ export const ContentRenderer = async ({
};
}) => {
const metadata = await getMetadata(content.id);

return (
<div>
<ContentRendererClient
Expand Down

0 comments on commit 9f9bf03

Please sign in to comment.