File size: 11,833 Bytes
780c9fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 |
import fs from "node:fs/promises";
import path from "node:path";
import os from "node:os";
import { eachLimit } from "async";
import cliProgress from "cli-progress";
import { fdir } from "fdir";
import fse from "fs-extra";
import { temporaryDirectory } from "tempy";
import * as cheerio from "cheerio";
import { fileTypeFromFile } from "file-type";
import imagemin from "imagemin";
import imageminPngquant from "imagemin-pngquant";
import imageminMozjpeg from "imagemin-mozjpeg";
import imageminGifsicle from "imagemin-gifsicle";
import imageminSvgo from "imagemin-svgo";
import isSvg from "is-svg";
import { MAX_FILE_SIZE } from "./env.js";
import {
MAX_COMPRESSION_DIFFERENCE_PERCENTAGE,
AUDIO_EXT,
VIDEO_EXT,
FONT_EXT,
VALID_MIME_TYPES,
} from "./constants.js";
import { createRegExpFromExtensions } from "./utils.js";
/**
* @typedef {Object} CheckerOptions
* @property {boolean} [saveCompression]
*/
const BINARY_NON_IMAGE_FILE_REGEXP = createRegExpFromExtensions(
...AUDIO_EXT,
...VIDEO_EXT,
...FONT_EXT,
);
/**
* @param {number} bytes
* @returns {string}
*/
function formatSize(bytes) {
if (bytes > 1024 * 1024) {
return `${(bytes / 1024.0 / 1024.0).toFixed(1)}MB`;
}
if (bytes > 1024) {
return `${(bytes / 1024.0).toFixed(1)}KB`;
}
return `${bytes}b`;
}
/**
* An error that includes a suggested fix command.
* @extends Error
*/
class FixableError extends Error {
/**
* @type {string}
*/
fixCommand;
/**
* @param {string} message
* @param {string} fixCommand
*/
constructor(message, fixCommand) {
super(message);
this.fixCommand = fixCommand;
}
toString() {
return `${this.constructor.name}: ${this.message}`;
}
}
/**
* @param {string} filePath
* @returns {string}
*/
function getRelativePath(filePath) {
return path.relative(process.cwd(), filePath);
}
/**
* Check a single file for naming, type, reference, and compression rules.
* @param {string} filePath
* @param {CheckerOptions} [options={}]
* @returns {Promise<void>}
*/
export async function checkFile(filePath, options = {}) {
// Check that the filename is always lowercase.
const expectedPath = path.join(
path.dirname(filePath),
path.basename(filePath).toLowerCase(),
);
if (filePath !== expectedPath) {
throw new Error(
`Base name must be lowercase (not ${path.basename(
filePath,
)}). Please rename the file and update its usages.`,
);
}
// Check that the file size is >0 and <MAX_FILE_SIZE.
const stat = await fs.stat(filePath);
if (!stat.size) {
throw new Error(`${filePath} is 0 bytes`);
}
// Ensure that binary files contain what their extension indicates.
// Exclude images, as they're checked separately in checkCompression().
if (BINARY_NON_IMAGE_FILE_REGEXP.test(filePath)) {
const ext = filePath.split(".").pop();
const type = await fileTypeFromFile(filePath);
if (!type) {
throw new Error(`Failed to detect type of file attachment: ${filePath}`);
}
if ((ext || "").toLowerCase() !== type.ext) {
throw new Error(
`Unexpected type '${type.mime}' (*.${type.ext}) detected for file attachment: ${filePath}.`,
);
}
}
// FileType can't check for .svg files.
// So use special case for files called '*.svg'
if (path.extname(filePath) === ".svg") {
// SVGs must not contain any script tags
const content = await fs.readFile(filePath, "utf-8");
if (!isSvg(content)) {
throw new Error(`${filePath} does not appear to be an SVG`);
}
const $ = cheerio.load(content);
const disallowedTagNames = new Set(["script", "object", "iframe", "embed"]);
$("*").each((i, element) => {
if (!("tagName" in element)) {
return;
}
const { tagName } = element;
if (disallowedTagNames.has(tagName)) {
throw new Error(`${filePath} contains a <${tagName}> tag`);
}
for (const key in element.attribs) {
if (/(\\x[a-f0-9]{2}|\b)on\w+/.test(key)) {
throw new Error(
`${filePath} <${tagName}> contains an unsafe attribute: '${key}'`,
);
}
}
});
} else {
// Check that the file extension matches the file header.
const fileType = await fileTypeFromFile(filePath);
if (!fileType) {
// This can easily happen if the .png (for example) file is actually just
// a text file and not a binary.
throw new Error(
`${getRelativePath(
filePath,
)} file-type could not be extracted at all ` +
`(probably not a ${path.extname(filePath)} file)`,
);
}
if (!VALID_MIME_TYPES.has(fileType.mime)) {
throw new Error(
`${getRelativePath(filePath)} has an unrecognized mime type: ${
fileType.mime
}`,
);
} else if (
path.extname(filePath).replace(".jpeg", ".jpg").slice(1) !== fileType.ext
) {
// If the file is a 'image/png' but called '.jpe?g', that's wrong.
throw new Error(
`${getRelativePath(filePath)} of type '${
fileType.mime
}' should have extension '${
fileType.ext
}', but has extension '${path.extname(
filePath,
)}'. Please rename the file and update its usages.`,
);
}
}
// The image has to be mentioned in the adjacent index.html document
const parentPath = path.dirname(filePath);
const htmlFilePath = path.join(parentPath, "index.html");
const mdFilePath = path.join(parentPath, "index.md");
const docFilePath = (await fse.exists(htmlFilePath))
? htmlFilePath
: (await fse.exists(mdFilePath))
? mdFilePath
: null;
if (!docFilePath) {
throw new FixableError(
`${getRelativePath(
filePath,
)} can be removed, because it is not located in a folder with a document file.`,
`rm -i '${getRelativePath(filePath)}'`,
);
}
// The image must be mentioned (as a string) in the content
const rawContent = docFilePath
? await fs.readFile(docFilePath, "utf-8")
: null;
if (!rawContent.includes(path.basename(filePath))) {
throw new FixableError(
`${getRelativePath(
filePath,
)} can be removed, because it is not mentioned in ${getRelativePath(
docFilePath,
)}`,
`rm -i '${getRelativePath(filePath)}'`,
);
}
await checkCompression(filePath, options);
}
/**
* Compresses an image (if supported) and optionally saves the result,
* enforcing size and compression delta constraints.
* @param {string} filePath
* @param {CheckerOptions} options
* @returns {Promise<void>}
*/
async function checkCompression(filePath, options) {
const tempdir = temporaryDirectory();
const extension = path.extname(filePath).toLowerCase();
try {
/** @type {import('imagemin').Plugin[]} */
const plugins = [];
if (extension === ".jpg" || extension === ".jpeg") {
plugins.push(imageminMozjpeg());
} else if (extension === ".png") {
plugins.push(imageminPngquant());
} else if (extension === ".gif") {
plugins.push(imageminGifsicle());
} else if (extension === ".svg") {
plugins.push(imageminSvgo());
}
if (!plugins.length) {
return;
}
const files = await imagemin([filePath], {
destination: tempdir,
plugins,
// Needed because otherwise start trying to find files using
// `globby()` which chokes on file paths that contain brackets.
// E.g. `/web/css/transform-function/rotate3d()/transform.png`
// Setting this to false tells imagemin() to just accept what
// it's given instead of trying to search for the image.
glob: false,
});
if (!files.length) {
throw new Error(`${filePath} could not be compressed`);
}
const compressed = files[0];
const [sizeBefore, sizeAfter] = (
await Promise.all([
fs.stat(filePath),
fs.stat(compressed.destinationPath),
])
).map((s) => s.size);
const reductionPercentage = 100 - (100 * sizeAfter) / sizeBefore;
const formattedBefore = formatSize(sizeBefore);
const formattedMax = formatSize(MAX_FILE_SIZE);
const formattedAfter = formatSize(sizeAfter);
// this check should only be done if we want to save the compressed file
if (sizeAfter > MAX_FILE_SIZE) {
throw new Error(
`${getRelativePath(
filePath,
)} is too large (${formattedBefore} > ${formattedMax}), even after compressing to ${formattedAfter}.`,
);
} else if (!options.saveCompression && sizeBefore > MAX_FILE_SIZE) {
throw new FixableError(
`${getRelativePath(
filePath,
)} is too large (${formattedBefore} > ${formattedMax}), but can be compressed to ${formattedAfter}.`,
`npm run filecheck '${getRelativePath(filePath)}' -- --save-compression`,
);
}
if (reductionPercentage > MAX_COMPRESSION_DIFFERENCE_PERCENTAGE) {
if (options.saveCompression) {
console.log(
`Compressed ${filePath}. New file is ${reductionPercentage.toFixed(
0,
)}% smaller.`,
);
fse.copyFileSync(compressed.destinationPath, filePath);
} else {
throw new FixableError(
`${filePath} is ${formatSize(
sizeBefore,
)} and can be compressed to ${formatSize(
sizeAfter,
)} (${reductionPercentage.toFixed(0)}%)`,
`npm run filecheck '${getRelativePath(filePath)}' -- --save-compression`,
);
}
}
} finally {
fse.removeSync(tempdir);
}
}
/**
* Decide whether a file should be checked.
* @param {string} filePath
* @returns {boolean}
*/
function canCheckFile(filePath) {
const filePathParts = filePath.split(path.sep);
return (
filePathParts.includes("files") &&
!filePathParts.includes("node_modules") &&
!/\.(DS_Store|gitignore|html|json|jsonc|md|txt|yaml|yml)$/i.test(filePath)
);
}
/**
* Resolve a path to a list of files that should be checked.
* @param {string} file
* @returns {Promise<string[]>}
*/
async function resolveDirectory(file) {
const stats = await fs.lstat(file);
if (stats.isDirectory()) {
const api = new fdir()
.withErrors()
.withFullPaths()
.filter((filePath) => canCheckFile(filePath))
.crawl(file);
// withPromise resolves to an array of string paths
return /** @type {Promise<string[]>} */ (api.withPromise());
} else if (stats.isFile() && canCheckFile(file)) {
return [file];
} else {
return [];
}
}
/**
* Run the checker across a set of files or directories.
* @param {string[]} filesAndDirectories
* @param {CheckerOptions} options
* @returns {Promise<void>}
*/
export async function runChecker(filesAndDirectories, options) {
/** @type {Array<Error | FixableError>} */
const errors = [];
const files = (
await Promise.all(filesAndDirectories.map(resolveDirectory))
).flat();
const progressBar = new cliProgress.SingleBar({ etaBuffer: 100 });
progressBar.start(files.length, 0);
await eachLimit(files, os.cpus().length, async (file) => {
try {
await checkFile(file, options);
} catch (error) {
errors.push(/** @type {Error} */ (error));
} finally {
progressBar.increment();
}
});
progressBar.stop();
if (errors.length) {
let msg = errors.map((error) => `${error}`).join("\n");
const fixableErrors = errors.filter(
(error) => error instanceof FixableError,
);
if (fixableErrors.length) {
const cmds = fixableErrors
.map((error) => /** @type {FixableError} */ (error).fixCommand)
.sort()
.join("\n");
msg += `\n\n${fixableErrors.length} of ${errors.length} errors can be fixed:\n\n${cmds}`;
}
throw new Error(msg);
}
}
|