quartz-research-note/quartz/plugins/emitters/aliases.ts

57 lines
1.5 KiB
TypeScript
Raw Normal View History

2023-07-23 00:27:41 +00:00
import {
CanonicalSlug,
FilePath,
ServerSlug,
canonicalizeServer,
resolveRelative,
} from "../../path"
2023-06-17 02:41:59 +00:00
import { QuartzEmitterPlugin } from "../types"
2023-07-23 00:27:41 +00:00
import path from "path"
2023-06-17 02:41:59 +00:00
export const AliasRedirects: QuartzEmitterPlugin = () => ({
name: "AliasRedirects",
getQuartzComponents() {
return []
},
2023-07-24 00:09:12 +00:00
async emit({ argv }, content, _resources, emit): Promise<FilePath[]> {
2023-07-13 07:19:35 +00:00
const fps: FilePath[] = []
2023-06-17 02:41:59 +00:00
for (const [_tree, file] of content) {
const ogSlug = canonicalizeServer(file.data.slug!)
2023-08-03 06:04:26 +00:00
const dir = path.posix.relative(argv.directory, file.dirname ?? argv.directory)
2023-06-17 02:41:59 +00:00
2023-07-13 07:19:35 +00:00
let aliases: CanonicalSlug[] = []
2023-06-17 02:41:59 +00:00
if (file.data.frontmatter?.aliases) {
aliases = file.data.frontmatter?.aliases
} else if (file.data.frontmatter?.alias) {
aliases = [file.data.frontmatter?.alias]
}
for (const alias of aliases) {
const slug = path.posix.join(dir, alias) as ServerSlug
2023-06-17 02:41:59 +00:00
const redirUrl = resolveRelative(canonicalizeServer(slug), ogSlug)
2023-08-11 04:16:07 +00:00
const fp = await emit({
2023-06-17 02:41:59 +00:00
content: `
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>${ogSlug}</title>
<link rel="canonical" href="${redirUrl}">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=${redirUrl}">
</head>
</html>
`,
slug,
ext: ".html",
})
fps.push(fp)
}
}
return fps
2023-07-23 00:27:41 +00:00
},
2023-06-17 02:41:59 +00:00
})