PeerTube/server/lib/local-actor.ts

118 lines
3.9 KiB
TypeScript
Raw Normal View History

import 'multer'
2021-04-06 11:35:56 +02:00
import { queue } from 'async'
2021-08-27 14:32:44 +02:00
import LRUCache from 'lru-cache'
import { join } from 'path'
2021-06-03 16:02:29 +02:00
import { ActorModel } from '@server/models/actor/actor'
import { getLowercaseExtension } from '@shared/core-utils'
import { buildUUID } from '@shared/extra-utils'
2021-06-03 16:02:29 +02:00
import { ActivityPubActorType, ActorImageType } from '@shared/models'
2021-04-06 11:35:56 +02:00
import { retryTransactionWrapper } from '../helpers/database-utils'
import { processImage } from '../helpers/image-utils'
import { downloadImage } from '../helpers/requests'
2019-04-11 11:33:44 +02:00
import { CONFIG } from '../initializers/config'
2021-06-03 16:02:29 +02:00
import { ACTOR_IMAGES_SIZE, LRU_CACHE, QUEUE_CONCURRENCY, WEBSERVER } from '../initializers/constants'
import { sequelizeTypescript } from '../initializers/database'
2021-06-03 16:02:29 +02:00
import { MAccountDefault, MActor, MChannelDefault } from '../types/models'
import { deleteActorImageInstance, updateActorImageInstance } from './activitypub/actors'
2021-04-06 11:35:56 +02:00
import { sendUpdateActor } from './activitypub/send'
2021-06-03 16:02:29 +02:00
function buildActorInstance (type: ActivityPubActorType, url: string, preferredUsername: string) {
return new ActorModel({
type,
url,
preferredUsername,
publicKey: null,
privateKey: null,
followersCount: 0,
followingCount: 0,
inboxUrl: url + '/inbox',
outboxUrl: url + '/outbox',
sharedInboxUrl: WEBSERVER.URL + '/inbox',
followersUrl: url + '/followers',
followingUrl: url + '/following'
}) as MActor
}
2021-04-06 17:01:35 +02:00
async function updateLocalActorImageFile (
accountOrChannel: MAccountDefault | MChannelDefault,
2021-04-06 17:01:35 +02:00
imagePhysicalFile: Express.Multer.File,
type: ActorImageType
2019-08-15 11:53:26 +02:00
) {
2021-04-06 17:01:35 +02:00
const imageSize = type === ActorImageType.AVATAR
? ACTOR_IMAGES_SIZE.AVATARS
: ACTOR_IMAGES_SIZE.BANNERS
2021-01-26 10:23:21 +01:00
const extension = getLowercaseExtension(imagePhysicalFile.filename)
2021-04-06 17:01:35 +02:00
const imageName = buildUUID() + extension
2021-04-06 17:01:35 +02:00
const destination = join(CONFIG.STORAGE.ACTOR_IMAGES, imageName)
await processImage(imagePhysicalFile.path, destination, imageSize)
2018-09-26 10:15:50 +02:00
return retryTransactionWrapper(() => {
return sequelizeTypescript.transaction(async t => {
2021-04-06 17:01:35 +02:00
const actorImageInfo = {
name: imageName,
2019-08-09 11:32:40 +02:00
fileUrl: null,
2021-04-08 11:23:45 +02:00
height: imageSize.height,
width: imageSize.width,
2019-08-09 11:32:40 +02:00
onDisk: true
}
2021-04-07 10:36:13 +02:00
const updatedActor = await updateActorImageInstance(accountOrChannel.Actor, type, actorImageInfo, t)
2018-09-26 10:15:50 +02:00
await updatedActor.save({ transaction: t })
2018-09-26 10:15:50 +02:00
await sendUpdateActor(accountOrChannel, t)
2021-04-06 17:01:35 +02:00
return type === ActorImageType.AVATAR
? updatedActor.Avatar
: updatedActor.Banner
2018-09-26 10:15:50 +02:00
})
})
}
2021-04-06 17:01:35 +02:00
async function deleteLocalActorImageFile (accountOrChannel: MAccountDefault | MChannelDefault, type: ActorImageType) {
return retryTransactionWrapper(() => {
return sequelizeTypescript.transaction(async t => {
2021-04-06 17:01:35 +02:00
const updatedActor = await deleteActorImageInstance(accountOrChannel.Actor, type, t)
await updatedActor.save({ transaction: t })
await sendUpdateActor(accountOrChannel, t)
return updatedActor.Avatar
})
})
}
2021-04-06 17:01:35 +02:00
type DownloadImageQueueTask = { fileUrl: string, filename: string, type: ActorImageType }
2019-08-09 11:32:40 +02:00
const downloadImageQueue = queue<DownloadImageQueueTask, Error>((task, cb) => {
2021-04-06 17:01:35 +02:00
const size = task.type === ActorImageType.AVATAR
? ACTOR_IMAGES_SIZE.AVATARS
: ACTOR_IMAGES_SIZE.BANNERS
downloadImage(task.fileUrl, CONFIG.STORAGE.ACTOR_IMAGES, task.filename, size)
2019-08-09 11:32:40 +02:00
.then(() => cb())
.catch(err => cb(err))
2021-04-06 11:35:56 +02:00
}, QUEUE_CONCURRENCY.ACTOR_PROCESS_IMAGE)
2019-08-09 11:32:40 +02:00
2021-04-06 11:35:56 +02:00
function pushActorImageProcessInQueue (task: DownloadImageQueueTask) {
2021-02-03 09:33:05 +01:00
return new Promise<void>((res, rej) => {
2019-08-09 11:32:40 +02:00
downloadImageQueue.push(task, err => {
if (err) return rej(err)
return res()
})
})
}
// Unsafe so could returns paths that does not exist anymore
2021-04-06 11:35:56 +02:00
const actorImagePathUnsafeCache = new LRUCache<string, string>({ max: LRU_CACHE.ACTOR_IMAGE_STATIC.MAX_SIZE })
2019-08-09 11:32:40 +02:00
export {
2021-04-06 11:35:56 +02:00
actorImagePathUnsafeCache,
2021-04-06 17:01:35 +02:00
updateLocalActorImageFile,
deleteLocalActorImageFile,
2021-06-03 16:02:29 +02:00
pushActorImageProcessInQueue,
buildActorInstance
}