import type { MetadataRoute } from '../../../../lib/metadata/types/metadata-interface' import { resolveArray } from '../../../../lib/metadata/generate/utils' // convert robots data to txt string export function resolveRobots(data: MetadataRoute.Robots): string { let content = '' const rules = Array.isArray(data.rules) ? data.rules : [data.rules] for (const rule of rules) { const userAgent = resolveArray(rule.userAgent || ['*']) for (const agent of userAgent) { content += `User-Agent: ${agent}\n` } if (rule.allow) { const allow = resolveArray(rule.allow) for (const item of allow) { content += `Allow: ${item}\n` } } if (rule.disallow) { const disallow = resolveArray(rule.disallow) for (const item of disallow) { content += `Disallow: ${item}\n` } } if (rule.crawlDelay) { content += `Crawl-delay: ${rule.crawlDelay}\n` } content += '\n' } if (data.host) { content += `Host: ${data.host}\n` } if (data.sitemap) { const sitemap = resolveArray(data.sitemap) // TODO-METADATA: support injecting sitemap url into robots.txt sitemap.forEach((item) => { content += `Sitemap: ${item}\n` }) } return content } // TODO-METADATA: support multi sitemap files // convert sitemap data to xml string export function resolveSitemap(data: MetadataRoute.Sitemap): string { const hasAlternates = data.some( (item) => Object.keys(item.alternates ?? {}).length > 0 ) const hasImages = data.some((item) => Boolean(item.images?.length)) const hasVideos = data.some((item) => Boolean(item.videos?.length)) let content = '' content += '\n' content += '${item.url}\n` const languages = item.alternates?.languages if (languages && Object.keys(languages).length) { // Since sitemap is separated from the page rendering, there's not metadataBase accessible yet. // we give the default setting that won't effect the languages resolving. for (const language in languages) { content += `\n` } } if (item.images?.length) { for (const image of item.images) { content += `\n${image}\n\n` } } if (item.videos?.length) { for (const video of item.videos) { let videoFields = [ ``, `${video.title}`, `${video.thumbnail_loc}`, `${video.description}`, video.content_loc && `${video.content_loc}`, video.player_loc && `${video.player_loc}`, video.duration && `${video.duration}`, video.view_count && `${video.view_count}`, video.tag && `${video.tag}`, video.rating && `${video.rating}`, video.expiration_date && `${video.expiration_date}`, video.publication_date && `${video.publication_date}`, video.family_friendly && `${video.family_friendly}`, video.requires_subscription && `${video.requires_subscription}`, video.live && `${video.live}`, video.restriction && `${video.restriction.content}`, video.platform && `${video.platform.content}`, video.uploader && `${video.uploader.content}`, `\n`, ].filter(Boolean) content += videoFields.join('\n') } } if (item.lastModified) { const serializedDate = item.lastModified instanceof Date ? item.lastModified.toISOString() : item.lastModified content += `${serializedDate}\n` } if (item.changeFrequency) { content += `${item.changeFrequency}\n` } if (typeof item.priority === 'number') { content += `${item.priority}\n` } content += '\n' } content += '\n' return content } export function resolveManifest(data: MetadataRoute.Manifest): string { return JSON.stringify(data) } export function resolveRouteData( data: MetadataRoute.Robots | MetadataRoute.Sitemap | MetadataRoute.Manifest, fileType: 'robots' | 'sitemap' | 'manifest' ): string { if (fileType === 'robots') { return resolveRobots(data as MetadataRoute.Robots) } if (fileType === 'sitemap') { return resolveSitemap(data as MetadataRoute.Sitemap) } if (fileType === 'manifest') { return resolveManifest(data as MetadataRoute.Manifest) } return '' }