X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Flocal-actor.ts;h=01046d0179324853833a96e1188ed63792d9ff1b;hb=f7ac03ee94d9d32e26bd712e8dc05a6109f5e835;hp=821a92b9123c13467846bd28b9a0dd31a8ee6245;hpb=41fb13c330de629df2d23379209e79c7af0f2e9a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/local-actor.ts b/server/lib/local-actor.ts index 821a92b91..01046d017 100644 --- a/server/lib/local-actor.ts +++ b/server/lib/local-actor.ts @@ -1,10 +1,10 @@ -import 'multer' import { queue } from 'async' +import { remove } from 'fs-extra' import LRUCache from 'lru-cache' import { join } from 'path' -import { getLowercaseExtension } from '@server/helpers/core-utils' -import { buildUUID } from '@server/helpers/uuid' import { ActorModel } from '@server/models/actor/actor' +import { getLowercaseExtension } from '@shared/core-utils' +import { buildUUID } from '@shared/extra-utils' import { ActivityPubActorType, ActorImageType } from '@shared/models' import { retryTransactionWrapper } from '../helpers/database-utils' import { processImage } from '../helpers/image-utils' @@ -13,7 +13,7 @@ import { CONFIG } from '../initializers/config' import { ACTOR_IMAGES_SIZE, LRU_CACHE, QUEUE_CONCURRENCY, WEBSERVER } from '../initializers/constants' import { sequelizeTypescript } from '../initializers/database' import { MAccountDefault, MActor, MChannelDefault } from '../types/models' -import { deleteActorImageInstance, updateActorImageInstance } from './activitypub/actors' +import { deleteActorImages, updateActorImages } from './activitypub/actors' import { sendUpdateActor } from './activitypub/send' function buildActorInstance (type: ActivityPubActorType, url: string, preferredUsername: string) { @@ -33,64 +33,69 @@ function buildActorInstance (type: ActivityPubActorType, url: string, preferredU }) as MActor } -async function updateLocalActorImageFile ( +async function updateLocalActorImageFiles ( accountOrChannel: MAccountDefault | MChannelDefault, imagePhysicalFile: Express.Multer.File, type: ActorImageType ) { - const imageSize = type === ActorImageType.AVATAR - ? ACTOR_IMAGES_SIZE.AVATARS - : ACTOR_IMAGES_SIZE.BANNERS - - const extension = getLowercaseExtension(imagePhysicalFile.filename) - - const imageName = buildUUID() + extension - const destination = join(CONFIG.STORAGE.ACTOR_IMAGES, imageName) - await processImage(imagePhysicalFile.path, destination, imageSize) - - return retryTransactionWrapper(() => { - return sequelizeTypescript.transaction(async t => { - const actorImageInfo = { - name: imageName, - fileUrl: null, - height: imageSize.height, - width: imageSize.width, - onDisk: true - } - - const updatedActor = await updateActorImageInstance(accountOrChannel.Actor, type, actorImageInfo, t) - await updatedActor.save({ transaction: t }) - - await sendUpdateActor(accountOrChannel, t) - - return type === ActorImageType.AVATAR - ? updatedActor.Avatar - : updatedActor.Banner - }) - }) + const processImageSize = async (imageSize: { width: number, height: number }) => { + const extension = getLowercaseExtension(imagePhysicalFile.filename) + + const imageName = buildUUID() + extension + const destination = join(CONFIG.STORAGE.ACTOR_IMAGES, imageName) + await processImage(imagePhysicalFile.path, destination, imageSize, true) + + return { + imageName, + imageSize + } + } + + const processedImages = await Promise.all(ACTOR_IMAGES_SIZE[type].map(processImageSize)) + await remove(imagePhysicalFile.path) + + return retryTransactionWrapper(() => sequelizeTypescript.transaction(async t => { + const actorImagesInfo = processedImages.map(({ imageName, imageSize }) => ({ + name: imageName, + fileUrl: null, + height: imageSize.height, + width: imageSize.width, + onDisk: true + })) + + const updatedActor = await updateActorImages(accountOrChannel.Actor, type, actorImagesInfo, t) + await updatedActor.save({ transaction: t }) + + await sendUpdateActor(accountOrChannel, t) + + return type === ActorImageType.AVATAR + ? updatedActor.Avatars + : updatedActor.Banners + })) } async function deleteLocalActorImageFile (accountOrChannel: MAccountDefault | MChannelDefault, type: ActorImageType) { return retryTransactionWrapper(() => { return sequelizeTypescript.transaction(async t => { - const updatedActor = await deleteActorImageInstance(accountOrChannel.Actor, type, t) + const updatedActor = await deleteActorImages(accountOrChannel.Actor, type, t) await updatedActor.save({ transaction: t }) await sendUpdateActor(accountOrChannel, t) - return updatedActor.Avatar + return updatedActor.Avatars }) }) } -type DownloadImageQueueTask = { fileUrl: string, filename: string, type: ActorImageType } +type DownloadImageQueueTask = { + fileUrl: string + filename: string + type: ActorImageType + size: typeof ACTOR_IMAGES_SIZE[ActorImageType][0] +} const downloadImageQueue = queue((task, cb) => { - const size = task.type === ActorImageType.AVATAR - ? ACTOR_IMAGES_SIZE.AVATARS - : ACTOR_IMAGES_SIZE.BANNERS - - downloadImage(task.fileUrl, CONFIG.STORAGE.ACTOR_IMAGES, task.filename, size) + downloadImage(task.fileUrl, CONFIG.STORAGE.ACTOR_IMAGES, task.filename, task.size) .then(() => cb()) .catch(err => cb(err)) }, QUEUE_CONCURRENCY.ACTOR_PROCESS_IMAGE) @@ -110,7 +115,7 @@ const actorImagePathUnsafeCache = new LRUCache({ max: LRU_CACHE. export { actorImagePathUnsafeCache, - updateLocalActorImageFile, + updateLocalActorImageFiles, deleteLocalActorImageFile, pushActorImageProcessInQueue, buildActorInstance