1
0
Fork 0
peertube/server/lib/avatar.ts

69 lines
2.3 KiB
TypeScript
Raw Normal View History

import 'multer'
import { sendUpdateActor } from './activitypub/send'
2019-08-09 09:32:40 +00:00
import { AVATARS_SIZE, LRU_CACHE, QUEUE_CONCURRENCY } from '../initializers/constants'
2020-04-23 07:32:53 +00:00
import { updateActorAvatarInstance } from './activitypub/actor'
import { processImage } from '../helpers/image-utils'
import { extname, join } from 'path'
2018-09-26 08:15:50 +00:00
import { retryTransactionWrapper } from '../helpers/database-utils'
2020-02-28 15:03:39 +00:00
import { v4 as uuidv4 } from 'uuid'
2019-04-11 09:33:44 +00:00
import { CONFIG } from '../initializers/config'
import { sequelizeTypescript } from '../initializers/database'
2019-08-09 09:32:40 +00:00
import * as LRUCache from 'lru-cache'
import { queue } from 'async'
import { downloadImage } from '../helpers/requests'
2019-08-20 11:52:49 +00:00
import { MAccountDefault, MChannelDefault } from '../typings/models'
2019-08-15 09:53:26 +00:00
async function updateActorAvatarFile (
avatarPhysicalFile: Express.Multer.File,
2019-08-20 11:52:49 +00:00
accountOrChannel: MAccountDefault | MChannelDefault
2019-08-15 09:53:26 +00:00
) {
const extension = extname(avatarPhysicalFile.filename)
2018-10-08 08:37:08 +00:00
const avatarName = uuidv4() + extension
const destination = join(CONFIG.STORAGE.AVATARS_DIR, avatarName)
2019-04-24 07:56:25 +00:00
await processImage(avatarPhysicalFile.path, destination, AVATARS_SIZE)
2018-09-26 08:15:50 +00:00
return retryTransactionWrapper(() => {
return sequelizeTypescript.transaction(async t => {
2019-08-09 09:32:40 +00:00
const avatarInfo = {
name: avatarName,
fileUrl: null,
onDisk: true
}
const updatedActor = await updateActorAvatarInstance(accountOrChannel.Actor, avatarInfo, t)
2018-09-26 08:15:50 +00:00
await updatedActor.save({ transaction: t })
2018-09-26 08:15:50 +00:00
await sendUpdateActor(accountOrChannel, t)
2018-09-26 08:15:50 +00:00
return updatedActor.Avatar
})
})
}
2019-08-09 09:32:40 +00:00
type DownloadImageQueueTask = { fileUrl: string, filename: string }
const downloadImageQueue = queue<DownloadImageQueueTask, Error>((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<string, string>({ max: LRU_CACHE.AVATAR_STATIC.MAX_SIZE })
export {
2019-08-09 09:32:40 +00:00
avatarPathUnsafeCache,
updateActorAvatarFile,
pushAvatarProcessInQueue
}