X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Favatar.ts;h=ad4cdd3ab80849388a63accdba1797a4ba65482e;hb=e612209767ebe1deb0af7688c96b7f979bb52b44;hp=dca543d0b9de6c7ed8c645f088a8bad9dc54c7f9;hpb=74dc3bca2b14f5fd3fe80c394dfc34177a46db77;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/avatar.ts b/server/lib/avatar.ts index dca543d0b..ad4cdd3ab 100644 --- a/server/lib/avatar.ts +++ b/server/lib/avatar.ts @@ -1,25 +1,36 @@ import 'multer' import { sendUpdateActor } from './activitypub/send' -import { AVATARS_SIZE } from '../initializers/constants' +import { AVATARS_SIZE, LRU_CACHE, QUEUE_CONCURRENCY } from '../initializers/constants' import { updateActorAvatarInstance } from './activitypub' import { processImage } from '../helpers/image-utils' -import { AccountModel } from '../models/account/account' -import { VideoChannelModel } from '../models/video/video-channel' import { extname, join } from 'path' import { retryTransactionWrapper } from '../helpers/database-utils' import * as uuidv4 from 'uuid/v4' import { CONFIG } from '../initializers/config' import { sequelizeTypescript } from '../initializers/database' +import * as LRUCache from 'lru-cache' +import { queue } from 'async' +import { downloadImage } from '../helpers/requests' +import { MAccountDefault, MChannelDefault } from '../typings/models' -async function updateActorAvatarFile (avatarPhysicalFile: Express.Multer.File, accountOrChannel: AccountModel | VideoChannelModel) { +async function updateActorAvatarFile ( + avatarPhysicalFile: Express.Multer.File, + accountOrChannel: MAccountDefault | MChannelDefault +) { const extension = extname(avatarPhysicalFile.filename) const avatarName = uuidv4() + extension const destination = join(CONFIG.STORAGE.AVATARS_DIR, avatarName) - await processImage(avatarPhysicalFile, destination, AVATARS_SIZE) + await processImage(avatarPhysicalFile.path, destination, AVATARS_SIZE) return retryTransactionWrapper(() => { return sequelizeTypescript.transaction(async t => { - const updatedActor = await updateActorAvatarInstance(accountOrChannel.Actor, avatarName, t) + const avatarInfo = { + name: avatarName, + fileUrl: null, + onDisk: true + } + + const updatedActor = await updateActorAvatarInstance(accountOrChannel.Actor, avatarInfo, t) await updatedActor.save({ transaction: t }) await sendUpdateActor(accountOrChannel, t) @@ -29,6 +40,29 @@ async function updateActorAvatarFile (avatarPhysicalFile: Express.Multer.File, a }) } +type DownloadImageQueueTask = { fileUrl: string, filename: string } + +const downloadImageQueue = queue((task, cb) => { + downloadImage(task.fileUrl, CONFIG.STORAGE.AVATARS_DIR, task.filename, AVATARS_SIZE) + .then(() => cb()) + .catch(err => cb(err)) +}, QUEUE_CONCURRENCY.AVATAR_PROCESS_IMAGE) + +function pushAvatarProcessInQueue (task: DownloadImageQueueTask) { + return new Promise((res, rej) => { + downloadImageQueue.push(task, err => { + if (err) return rej(err) + + return res() + }) + }) +} + +// Unsafe so could returns paths that does not exist anymore +const avatarPathUnsafeCache = new LRUCache({ max: LRU_CACHE.AVATAR_STATIC.MAX_SIZE }) + export { - updateActorAvatarFile + avatarPathUnsafeCache, + updateActorAvatarFile, + pushAvatarProcessInQueue }