2021-10-17 02:00:24 +00:00
|
|
|
"use strict";
|
|
|
|
|
2021-07-06 01:47:45 +00:00
|
|
|
const os = require("os");
|
2021-06-14 00:36:13 +00:00
|
|
|
const fs = require("fs");
|
2021-05-31 20:06:17 +00:00
|
|
|
const path = require("path");
|
|
|
|
|
2021-10-17 02:00:24 +00:00
|
|
|
const debug = require("debug");
|
2021-05-31 20:06:17 +00:00
|
|
|
const htmlentities = require("html-entities");
|
2021-07-06 01:47:45 +00:00
|
|
|
const phin = require("phin");
|
|
|
|
|
2021-10-17 02:00:24 +00:00
|
|
|
const HTMLPicture = require("./lib/HTMLPicture.js");
|
2021-07-06 01:47:45 +00:00
|
|
|
|
2021-05-31 20:06:17 +00:00
|
|
|
var nextid = 0;
|
|
|
|
|
2021-06-14 00:36:13 +00:00
|
|
|
const image_filename_format = (_id, src, width, format, _options) => {
|
|
|
|
const extension = path.extname(src);
|
|
|
|
const name = path.basename(src, extension);
|
|
|
|
return `${name}-${width}w.${format}`;
|
|
|
|
};
|
|
|
|
|
2021-10-17 02:00:24 +00:00
|
|
|
async function shortcode_image(src, alt) {
|
2021-05-31 20:06:17 +00:00
|
|
|
|
2021-10-17 02:00:24 +00:00
|
|
|
return HTMLPicture(
|
|
|
|
src, alt,
|
|
|
|
`./_site/img`, `/img`
|
|
|
|
);
|
2021-05-31 20:06:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function shortcode_image_url(src) {
|
2021-10-17 02:00:24 +00:00
|
|
|
const src_parsed = path.parse(src);
|
|
|
|
const target = path.join(`./_site/img`, src_parsed.base);
|
|
|
|
if(!fs.existsSync(path.dirname(target)))
|
|
|
|
await fs.promises.mkdir(target_dir, { recursive: true });
|
|
|
|
await fs.promises.copyFile(src, target);
|
2021-05-31 20:06:17 +00:00
|
|
|
|
2021-10-17 02:00:24 +00:00
|
|
|
return path.join(`/img`, src_parsed.base);
|
2021-05-31 20:06:17 +00:00
|
|
|
}
|
|
|
|
|
2021-06-14 01:25:45 +00:00
|
|
|
async function shortcode_image_urlpass(src) {
|
2021-06-14 00:36:13 +00:00
|
|
|
let target_dir = `./_site/img`;
|
|
|
|
if(!fs.existsSync(target_dir))
|
|
|
|
await fs.promises.mkdir(target_dir, { recursive: true });
|
|
|
|
let filename = path.basename(src);
|
|
|
|
// Generally speaking we optimise PNGs *very* well with oxipng/Zopfli,
|
|
|
|
// and the Image plugin doesn't respect this
|
|
|
|
await fs.promises.copyFile(src, path.join(target_dir, filename));
|
|
|
|
return `/img/${filename}`;
|
|
|
|
}
|
|
|
|
|
2021-06-08 23:34:25 +00:00
|
|
|
async function shortcode_gallerybox(content, src, idthis, idprev, idnext) {
|
|
|
|
return `<figure class="gallerybox-item" id="${idthis}">
|
|
|
|
<!-- ${await shortcode_image(src, "", "gallerybox-thumb", "300w")} -->
|
|
|
|
${await shortcode_image(src, "", "", "1920w")}
|
|
|
|
|
|
|
|
<figcaption>${content}</figcaption>
|
|
|
|
|
|
|
|
<a class="gallerybox-prev" href="#${idprev}">❰</a>
|
|
|
|
<a class="gallerybox-next" href="#${idnext}">❱</a>
|
|
|
|
</figure>`;
|
2021-05-31 20:06:17 +00:00
|
|
|
}
|
|
|
|
|
2021-07-06 01:47:45 +00:00
|
|
|
async function fetch(url) {
|
2021-10-17 02:00:24 +00:00
|
|
|
const pkg_obj = JSON.parse(await fs.promises.readFile(
|
2021-07-06 01:47:45 +00:00
|
|
|
path.join(__dirname, "package.json"), "utf8"
|
|
|
|
));
|
|
|
|
|
|
|
|
return (await phin({
|
|
|
|
url,
|
|
|
|
headers: {
|
2021-10-17 02:00:24 +00:00
|
|
|
"user-agent": `WorldEditAdditionsStaticBuilder/${pkg_obj.version} (Node.js/${process.version}; ${os.platform()} ${os.arch()}) eleventy/${pkg_obj.devDependencies["@11ty/eleventy"].replace(/\^/, "")}`
|
2021-07-06 01:47:45 +00:00
|
|
|
},
|
|
|
|
followRedirects: true,
|
|
|
|
parse: "string"
|
|
|
|
})).body;
|
|
|
|
}
|
|
|
|
|
2021-05-31 01:20:23 +00:00
|
|
|
module.exports = function(eleventyConfig) {
|
2021-12-28 22:13:38 +00:00
|
|
|
eleventyConfig.addPassthroughCopy("img2brush/img2brush.js");
|
2021-07-06 01:47:45 +00:00
|
|
|
eleventyConfig.addAsyncShortcode("fetch", fetch);
|
|
|
|
|
2021-05-31 20:06:17 +00:00
|
|
|
// eleventyConfig.addPassthroughCopy("images");
|
|
|
|
// eleventyConfig.addPassthroughCopy("css");
|
|
|
|
eleventyConfig.addShortcode("image", shortcode_image);
|
|
|
|
eleventyConfig.addJavaScriptFunction("image", shortcode_image);
|
2021-06-14 01:25:45 +00:00
|
|
|
// eleventyConfig.addNunjucksAsyncShortcode("image_url", shortcode_image_url);
|
|
|
|
eleventyConfig.addAsyncShortcode("image_url", shortcode_image_url);
|
2021-06-19 17:14:23 +00:00
|
|
|
eleventyConfig.addAsyncShortcode("image_urlpass", shortcode_image_urlpass);
|
2021-06-14 01:25:45 +00:00
|
|
|
eleventyConfig.addNunjucksAsyncShortcode("image_urlpass", shortcode_image_urlpass);
|
2021-06-08 23:34:25 +00:00
|
|
|
eleventyConfig.addPairedShortcode("gallerybox", shortcode_gallerybox);
|
2021-05-31 01:20:23 +00:00
|
|
|
}
|