X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fregenerate-thumbnails.ts;h=b95343c0b40f03719ec73df6c29700ea72d9983c;hb=06af072d2df62c81da7ecab41ccbd31711be3f80;hp=04c6e2b74367b27aab512cd0c9183e3f84840f20;hpb=6794d1005ff1c1766223e7d45af3feab3cdb0785;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/regenerate-thumbnails.ts b/scripts/regenerate-thumbnails.ts index 04c6e2b74..b95343c0b 100644 --- a/scripts/regenerate-thumbnails.ts +++ b/scripts/regenerate-thumbnails.ts @@ -3,8 +3,8 @@ registerTSPaths() import * as Bluebird from 'bluebird' import * as program from 'commander' -import { pathExists } from 'fs-extra' -import { processImage } from '@server/helpers/image-utils' +import { pathExists, remove } from 'fs-extra' +import { generateImageFilename, processImage } from '@server/helpers/image-utils' import { THUMBNAILS_SIZE } from '@server/initializers/constants' import { VideoModel } from '@server/models/video/video' import { MVideo } from '@server/types/models' @@ -37,13 +37,8 @@ async function processVideo (videoArg: MVideo) { const thumbnail = video.getMiniature() const preview = video.getPreview() - const thumbnailPath = thumbnail.getPath() const previewPath = preview.getPath() - if (!await pathExists(thumbnailPath)) { - throw new Error(`Thumbnail ${thumbnailPath} does not exist on disk`) - } - if (!await pathExists(previewPath)) { throw new Error(`Preview ${previewPath} does not exist on disk`) } @@ -52,5 +47,22 @@ async function processVideo (videoArg: MVideo) { width: THUMBNAILS_SIZE.width, height: THUMBNAILS_SIZE.height } + + const oldPath = thumbnail.getPath() + + // Update thumbnail + thumbnail.filename = generateImageFilename() + thumbnail.width = size.width + thumbnail.height = size.height + + const thumbnailPath = thumbnail.getPath() await processImage(previewPath, thumbnailPath, size, true) + + // Save new attributes + await thumbnail.save() + + // Remove old thumbnail + await remove(oldPath) + + // Don't federate, remote instances will refresh the thumbnails after a while }