X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Flazy-static.ts;h=a4076ee56b3e54d2a806880b3be455ca87a131bd;hb=655c957cc3004c4b4841538486f009511573cdf2;hp=27b1b7160054fecee2c3dc73cb81e24bf9a12855;hpb=136d7efde798d3dc0ec0dd18aac674365f7d162e;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/lazy-static.ts b/server/controllers/lazy-static.ts index 27b1b7160..a4076ee56 100644 --- a/server/controllers/lazy-static.ts +++ b/server/controllers/lazy-static.ts @@ -1,7 +1,7 @@ -import * as cors from 'cors' -import * as express from 'express' +import cors from 'cors' +import express from 'express' import { VideosTorrentCache } from '@server/lib/files-cache/videos-torrent-cache' -import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes' +import { HttpStatusCode } from '../../shared/models/http/http-error-codes' import { logger } from '../helpers/logger' import { LAZY_STATIC_PATHS, STATIC_MAX_AGE } from '../initializers/constants' import { VideosCaptionCache, VideosPreviewCache } from '../lib/files-cache' @@ -48,7 +48,7 @@ export { // --------------------------------------------------------------------------- -async function getActorImage (req: express.Request, res: express.Response) { +async function getActorImage (req: express.Request, res: express.Response, next: express.NextFunction) { const filename = req.params.filename if (actorImagePathUnsafeCache.has(filename)) { @@ -78,7 +78,23 @@ async function getActorImage (req: express.Request, res: express.Response) { const path = image.getPath() actorImagePathUnsafeCache.set(filename, path) - return res.sendFile(path, { maxAge: STATIC_MAX_AGE.LAZY_SERVER }) + + return res.sendFile(path, { maxAge: STATIC_MAX_AGE.LAZY_SERVER }, (err: any) => { + if (!err) return + + // It seems this actor image is not on the disk anymore + if (err.status === HttpStatusCode.NOT_FOUND_404 && !image.isOwned()) { + logger.error('Cannot lazy serve actor image %s.', filename, { err }) + + actorImagePathUnsafeCache.del(filename) + + image.onDisk = false + image.save() + .catch(err => logger.error('Cannot save new actor image disk state.', { err })) + } + + return next(err) + }) } async function getPreview (req: express.Request, res: express.Response) {