| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- import { MiddlewareConsumer, NestModule, OnApplicationBootstrap } from '@nestjs/common';
- import { Type } from '@vendure/common/lib/shared-types';
- import {
- AssetStorageStrategy,
- Logger,
- PluginCommonModule,
- ProcessContext,
- registerPluginStartupMessage,
- RuntimeVendureConfig,
- VendurePlugin,
- } from '@vendure/core';
- import { createHash } from 'crypto';
- import express, { NextFunction, Request, Response } from 'express';
- import { fromBuffer } from 'file-type';
- import fs from 'fs-extra';
- import path from 'path';
- import { loggerCtx } from './constants';
- import { defaultAssetStorageStrategyFactory } from './default-asset-storage-strategy-factory';
- import { HashedAssetNamingStrategy } from './hashed-asset-naming-strategy';
- import { SharpAssetPreviewStrategy } from './sharp-asset-preview-strategy';
- import { transformImage } from './transform-image';
- import { AssetServerOptions, ImageTransformPreset } from './types';
- /**
- * @description
- * The `AssetServerPlugin` serves assets (images and other files) from the local file system, and can also be configured to use
- * other storage strategies (e.g. {@link S3AssetStorageStrategy}. It can also perform on-the-fly image transformations
- * and caches the results for subsequent calls.
- *
- * ## Installation
- *
- * `yarn add \@vendure/asset-server-plugin`
- *
- * or
- *
- * `npm install \@vendure/asset-server-plugin`
- *
- * @example
- * ```ts
- * import { AssetServerPlugin } from '\@vendure/asset-server-plugin';
- *
- * const config: VendureConfig = {
- * // Add an instance of the plugin to the plugins array
- * plugins: [
- * AssetServerPlugin.init({
- * route: 'assets',
- * assetUploadDir: path.join(__dirname, 'assets'),
- * }),
- * ],
- * };
- * ```
- *
- * The full configuration is documented at [AssetServerOptions]({{< relref "asset-server-options" >}})
- *
- * ## Image transformation
- *
- * Asset preview images can be transformed (resized & cropped) on the fly by appending query parameters to the url:
- *
- * `http://localhost:3000/assets/some-asset.jpg?w=500&h=300&mode=resize`
- *
- * The above URL will return `some-asset.jpg`, resized to fit in the bounds of a 500px x 300px rectangle.
- *
- * ### Preview mode
- *
- * The `mode` parameter can be either `crop` or `resize`. See the [ImageTransformMode]({{< relref "image-transform-mode" >}}) docs for details.
- *
- * ### Focal point
- *
- * When cropping an image (`mode=crop`), Vendure will attempt to keep the most "interesting" area of the image in the cropped frame. It does this
- * by finding the area of the image with highest entropy (the busiest area of the image). However, sometimes this does not yield a satisfactory
- * result - part or all of the main subject may still be cropped out.
- *
- * This is where specifying the focal point can help. The focal point of the image may be specified by passing the `fpx` and `fpy` query parameters.
- * These are normalized coordinates (i.e. a number between 0 and 1), so the `fpx=0&fpy=0` corresponds to the top left of the image.
- *
- * For example, let's say there is a very wide landscape image which we want to crop to be square. The main subject is a house to the far left of the
- * image. The following query would crop it to a square with the house centered:
- *
- * `http://localhost:3000/assets/landscape.jpg?w=150&h=150&mode=crop&fpx=0.2&fpy=0.7`
- *
- * ### Transform presets
- *
- * Presets can be defined which allow a single preset name to be used instead of specifying the width, height and mode. Presets are
- * configured via the AssetServerOptions [presets property]({{< relref "asset-server-options" >}}#presets).
- *
- * For example, defining the following preset:
- *
- * ```ts
- * AssetServerPlugin.init({
- * // ...
- * presets: [
- * { name: 'my-preset', width: 85, height: 85, mode: 'crop' },
- * ],
- * }),
- * ```
- *
- * means that a request to:
- *
- * `http://localhost:3000/assets/some-asset.jpg?preset=my-preset`
- *
- * is equivalent to:
- *
- * `http://localhost:3000/assets/some-asset.jpg?w=85&h=85&mode=crop`
- *
- * The AssetServerPlugin comes pre-configured with the following presets:
- *
- * name | width | height | mode
- * -----|-------|--------|-----
- * tiny | 50px | 50px | crop
- * thumb | 150px | 150px | crop
- * small | 300px | 300px | resize
- * medium | 500px | 500px | resize
- * large | 800px | 800px | resize
- *
- * ### Caching
- * By default, the AssetServerPlugin will cache every transformed image, so that the transformation only needs to be performed a single time for
- * a given configuration. Caching can be disabled per-request by setting the `?cache=false` query parameter.
- *
- * @docsCategory AssetServerPlugin
- */
- @VendurePlugin({
- imports: [PluginCommonModule],
- configuration: config => AssetServerPlugin.configure(config),
- })
- export class AssetServerPlugin implements NestModule, OnApplicationBootstrap {
- private static assetStorage: AssetStorageStrategy;
- private readonly cacheDir = 'cache';
- private presets: ImageTransformPreset[] = [
- { name: 'tiny', width: 50, height: 50, mode: 'crop' },
- { name: 'thumb', width: 150, height: 150, mode: 'crop' },
- { name: 'small', width: 300, height: 300, mode: 'resize' },
- { name: 'medium', width: 500, height: 500, mode: 'resize' },
- { name: 'large', width: 800, height: 800, mode: 'resize' },
- ];
- private static options: AssetServerOptions;
- /**
- * @description
- * Set the plugin options.
- */
- static init(options: AssetServerOptions): Type<AssetServerPlugin> {
- AssetServerPlugin.options = options;
- return this;
- }
- /** @internal */
- static async configure(config: RuntimeVendureConfig) {
- const storageStrategyFactory =
- this.options.storageStrategyFactory || defaultAssetStorageStrategyFactory;
- this.assetStorage = await storageStrategyFactory(this.options);
- config.assetOptions.assetPreviewStrategy = new SharpAssetPreviewStrategy({
- maxWidth: this.options.previewMaxWidth || 1600,
- maxHeight: this.options.previewMaxHeight || 1600,
- });
- config.assetOptions.assetStorageStrategy = this.assetStorage;
- config.assetOptions.assetNamingStrategy =
- this.options.namingStrategy || new HashedAssetNamingStrategy();
- return config;
- }
- constructor(private processContext: ProcessContext) {}
- /** @internal */
- onApplicationBootstrap(): void | Promise<void> {
- if (this.processContext.isWorker) {
- return;
- }
- if (AssetServerPlugin.options.presets) {
- for (const preset of AssetServerPlugin.options.presets) {
- const existingIndex = this.presets.findIndex(p => p.name === preset.name);
- if (-1 < existingIndex) {
- this.presets.splice(existingIndex, 1, preset);
- } else {
- this.presets.push(preset);
- }
- }
- }
- const cachePath = path.join(AssetServerPlugin.options.assetUploadDir, this.cacheDir);
- fs.ensureDirSync(cachePath);
- }
- configure(consumer: MiddlewareConsumer) {
- if (this.processContext.isWorker) {
- return;
- }
- Logger.info('Creating asset server middleware', loggerCtx);
- consumer.apply(this.createAssetServer()).forRoutes(AssetServerPlugin.options.route);
- registerPluginStartupMessage('Asset server', AssetServerPlugin.options.route);
- }
- /**
- * Creates the image server instance
- */
- private createAssetServer() {
- const assetServer = express.Router();
- assetServer.use(this.sendAsset(), this.generateTransformedImage());
- return assetServer;
- }
- /**
- * Reads the file requested and send the response to the browser.
- */
- private sendAsset() {
- return async (req: Request, res: Response, next: NextFunction) => {
- const key = this.getFileNameFromRequest(req);
- try {
- const file = await AssetServerPlugin.assetStorage.readFileToBuffer(key);
- let mimeType = this.getMimeType(key);
- if (!mimeType) {
- mimeType = (await fromBuffer(file))?.mime || 'application/octet-stream';
- }
- res.contentType(mimeType);
- res.send(file);
- } catch (e) {
- const err = new Error('File not found');
- (err as any).status = 404;
- return next(err);
- }
- };
- }
- /**
- * If an exception was thrown by the first handler, then it may be because a transformed image
- * is being requested which does not yet exist. In this case, this handler will generate the
- * transformed image, save it to cache, and serve the result as a response.
- */
- private generateTransformedImage() {
- return async (err: any, req: Request, res: Response, next: NextFunction) => {
- if (err && (err.status === 404 || err.statusCode === 404)) {
- if (req.query) {
- const decodedReqPath = decodeURIComponent(req.path);
- Logger.debug(`Pre-cached Asset not found: ${decodedReqPath}`, loggerCtx);
- let file: Buffer;
- try {
- file = await AssetServerPlugin.assetStorage.readFileToBuffer(decodedReqPath);
- } catch (err) {
- res.status(404).send('Resource not found');
- return;
- }
- const image = await transformImage(file, req.query as any, this.presets || []);
- try {
- const imageBuffer = await image.toBuffer();
- if (!req.query.cache || req.query.cache === 'true') {
- const cachedFileName = this.getFileNameFromRequest(req);
- await AssetServerPlugin.assetStorage.writeFileFromBuffer(
- cachedFileName,
- imageBuffer,
- );
- Logger.debug(`Saved cached asset: ${cachedFileName}`, loggerCtx);
- }
- res.set('Content-Type', `image/${(await image.metadata()).format}`);
- res.send(imageBuffer);
- return;
- } catch (e) {
- Logger.error(e, 'AssetServerPlugin', e.stack);
- res.status(500).send(e.message);
- return;
- }
- }
- }
- next();
- };
- }
- private getFileNameFromRequest(req: Request): string {
- const { w, h, mode, preset, fpx, fpy } = req.query;
- const focalPoint = fpx && fpy ? `_fpx${fpx}_fpy${fpy}` : '';
- let imageParamHash: string | null = null;
- if (w || h) {
- const width = w || '';
- const height = h || '';
- imageParamHash = this.md5(`_transform_w${width}_h${height}_m${mode}${focalPoint}`);
- } else if (preset) {
- if (this.presets && !!this.presets.find(p => p.name === preset)) {
- imageParamHash = this.md5(`_transform_pre_${preset}${focalPoint}`);
- }
- }
- const decodedReqPath = decodeURIComponent(req.path);
- if (imageParamHash) {
- return path.join(this.cacheDir, this.addSuffix(decodedReqPath, imageParamHash));
- } else {
- return decodedReqPath;
- }
- }
- private md5(input: string): string {
- return createHash('md5').update(input).digest('hex');
- }
- private addSuffix(fileName: string, suffix: string): string {
- const ext = path.extname(fileName);
- const baseName = path.basename(fileName, ext);
- const dirName = path.dirname(fileName);
- return path.join(dirName, `${baseName}${suffix}${ext}`);
- }
- /**
- * Attempt to get the mime type from the file name.
- */
- private getMimeType(fileName: string): string | undefined {
- const ext = path.extname(fileName);
- switch (ext) {
- case '.jpg':
- case '.jpeg':
- return 'image/jpeg';
- case '.png':
- return 'image/png';
- case '.gif':
- return 'image/gif';
- case '.svg':
- return 'image/svg+xml';
- case '.tiff':
- return 'image/tiff';
- case '.webp':
- return 'image/webp';
- }
- }
- }
|