mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 09:23:08 +02:00
4735ae6451
* wip? * clean up * Implement? HttpFetchService * ✌️ * remove node-fetch * fix * refactor * fix * gateway timeout * UndiciFetcherクラスを追加 (仮コミット, ビルドもstartもさせていない) * fix * add logger and fix url preview * fix ip check * enhance logger and error handling * fix * fix * clean up * Use custom fetcher for ApRequest / ApResolver * bypassProxyはproxyBypassHostsに判断を委譲するように * set maxRedirections (default 3, ApRequest/ApResolver: 0) * fix * wip???? * wip * ✌️ * set .node-version * clean up * refactor * clean up * refactor * refactor detectRequestType * rename detectResponseType * ✌️ * fix * wip * clean up * no got * remove got * wip * ✌️ * fix * clean up * remove unnnecessary const * good cleanup * no stream * Revert "no stream" This reverts commit 636f9192fcd2b17e71bbf6b5b106b490e0f66244. * fix * cache-control: max-age=300 to error * refactor cleanup
144 lines
3.2 KiB
TypeScript
144 lines
3.2 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import sharp from 'sharp';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { Config } from '@/config.js';
|
|
|
|
export type IImage = {
|
|
data: Buffer;
|
|
ext: string | null;
|
|
type: string;
|
|
};
|
|
|
|
export type IImageStream = {
|
|
data: Readable;
|
|
ext: string | null;
|
|
type: string;
|
|
};
|
|
|
|
export type IImageStreamable = IImage | IImageStream;
|
|
|
|
export const webpDefault: sharp.WebpOptions = {
|
|
quality: 85,
|
|
alphaQuality: 95,
|
|
lossless: false,
|
|
nearLossless: false,
|
|
smartSubsample: true,
|
|
mixed: true,
|
|
};
|
|
|
|
import { bindThis } from '@/decorators.js';
|
|
import { Readable } from 'node:stream';
|
|
|
|
@Injectable()
|
|
export class ImageProcessingService {
|
|
constructor(
|
|
@Inject(DI.config)
|
|
private config: Config,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Convert to JPEG
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
*/
|
|
@bindThis
|
|
public async convertToJpeg(path: string, width: number, height: number): Promise<IImage> {
|
|
return this.convertSharpToJpeg(await sharp(path), width, height);
|
|
}
|
|
|
|
@bindThis
|
|
public async convertSharpToJpeg(sharp: sharp.Sharp, width: number, height: number): Promise<IImage> {
|
|
const data = await sharp
|
|
.resize(width, height, {
|
|
fit: 'inside',
|
|
withoutEnlargement: true,
|
|
})
|
|
.rotate()
|
|
.jpeg({
|
|
quality: 85,
|
|
progressive: true,
|
|
})
|
|
.toBuffer();
|
|
|
|
return {
|
|
data,
|
|
ext: 'jpg',
|
|
type: 'image/jpeg',
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Convert to WebP
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
*/
|
|
@bindThis
|
|
public async convertToWebp(path: string, width: number, height: number, options: sharp.WebpOptions = webpDefault): Promise<IImage> {
|
|
return this.convertSharpToWebp(sharp(path), width, height, options);
|
|
}
|
|
|
|
@bindThis
|
|
public async convertSharpToWebp(sharp: sharp.Sharp, width: number, height: number, options: sharp.WebpOptions = webpDefault): Promise<IImage> {
|
|
const data = await sharp
|
|
.resize(width, height, {
|
|
fit: 'inside',
|
|
withoutEnlargement: true,
|
|
})
|
|
.rotate()
|
|
.webp(options)
|
|
.toBuffer();
|
|
|
|
return {
|
|
data,
|
|
ext: 'webp',
|
|
type: 'image/webp',
|
|
};
|
|
}
|
|
|
|
@bindThis
|
|
public convertToWebpStream(path: string, width: number, height: number, options: sharp.WebpOptions = webpDefault): IImageStream {
|
|
return this.convertSharpToWebpStream(sharp(path), width, height, options);
|
|
}
|
|
|
|
@bindThis
|
|
public convertSharpToWebpStream(sharp: sharp.Sharp, width: number, height: number, options: sharp.WebpOptions = webpDefault): IImageStream {
|
|
const data = sharp
|
|
.resize(width, height, {
|
|
fit: 'inside',
|
|
withoutEnlargement: true,
|
|
})
|
|
.rotate()
|
|
.webp(options)
|
|
|
|
return {
|
|
data,
|
|
ext: 'webp',
|
|
type: 'image/webp',
|
|
};
|
|
}
|
|
/**
|
|
* Convert to PNG
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
*/
|
|
@bindThis
|
|
public async convertToPng(path: string, width: number, height: number): Promise<IImage> {
|
|
return this.convertSharpToPng(await sharp(path), width, height);
|
|
}
|
|
|
|
@bindThis
|
|
public async convertSharpToPng(sharp: sharp.Sharp, width: number, height: number): Promise<IImage> {
|
|
const data = await sharp
|
|
.resize(width, height, {
|
|
fit: 'inside',
|
|
withoutEnlargement: true,
|
|
})
|
|
.rotate()
|
|
.png()
|
|
.toBuffer();
|
|
|
|
return {
|
|
data,
|
|
ext: 'png',
|
|
type: 'image/png',
|
|
};
|
|
}
|
|
}
|