import cors from 'cors'
import express from 'express'
import { VideosTorrentCache } from '@server/lib/files-cache/videos-torrent-cache'
+import { MActorImage } from '@server/types/models'
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 { ACTOR_IMAGES_SIZE, LAZY_STATIC_PATHS, STATIC_MAX_AGE } from '../initializers/constants'
import { VideosCaptionCache, VideosPreviewCache } from '../lib/files-cache'
import { actorImagePathUnsafeCache, pushActorImageProcessInQueue } from '../lib/local-actor'
import { asyncMiddleware } from '../middlewares'
await pushActorImageProcessInQueue({
filename: image.filename,
fileUrl: image.fileUrl,
- size: {
- height: image.height,
- width: image.width
- },
+ size: getActorImageSize(image),
type: image.type
})
} catch (err) {
if (err.status === HttpStatusCode.NOT_FOUND_404 && !image.isOwned()) {
logger.error('Cannot lazy serve actor image %s.', filename, { err })
- actorImagePathUnsafeCache.del(filename)
+ actorImagePathUnsafeCache.delete(filename)
image.onDisk = false
image.save()
})
}
+function getActorImageSize (image: MActorImage): { width: number, height: number } {
+ if (image.width && image.height) {
+ return {
+ height: image.height,
+ width: image.width
+ }
+ }
+
+ return ACTOR_IMAGES_SIZE[image.type][0]
+}
+
async function getPreview (req: express.Request, res: express.Response) {
const result = await VideosPreviewCache.Instance.getFilePath(req.params.filename)
if (!result) return res.status(HttpStatusCode.NOT_FOUND_404).end()