2018-06-29 11:29:23 +02:00
|
|
|
import 'multer'
|
|
|
|
import { sendUpdateActor } from './activitypub/send'
|
2019-08-09 11:32:40 +02:00
|
|
|
import { AVATARS_SIZE, LRU_CACHE, QUEUE_CONCURRENCY } from '../initializers/constants'
|
2021-01-13 09:12:55 +01:00
|
|
|
import { updateActorAvatarInstance, deleteActorAvatarInstance } from './activitypub/actor'
|
2018-06-29 11:29:23 +02:00
|
|
|
import { processImage } from '../helpers/image-utils'
|
|
|
|
import { extname, join } from 'path'
|
2018-09-26 10:15:50 +02:00
|
|
|
import { retryTransactionWrapper } from '../helpers/database-utils'
|
2020-02-28 16:03:39 +01:00
|
|
|
import { v4 as uuidv4 } from 'uuid'
|
2019-04-11 11:33:44 +02:00
|
|
|
import { CONFIG } from '../initializers/config'
|
2019-04-11 14:26:41 +02:00
|
|
|
import { sequelizeTypescript } from '../initializers/database'
|
2019-08-09 11:32:40 +02:00
|
|
|
import * as LRUCache from 'lru-cache'
|
|
|
|
import { queue } from 'async'
|
|
|
|
import { downloadImage } from '../helpers/requests'
|
2020-06-18 10:45:25 +02:00
|
|
|
import { MAccountDefault, MChannelDefault } from '../types/models'
|
2018-06-29 11:29:23 +02:00
|
|
|
|
2021-01-26 10:23:21 +01:00
|
|
|
async function updateLocalActorAvatarFile (
|
2021-01-13 09:12:55 +01:00
|
|
|
accountOrChannel: MAccountDefault | MChannelDefault,
|
|
|
|
avatarPhysicalFile: Express.Multer.File
|
2019-08-15 11:53:26 +02:00
|
|
|
) {
|
2018-06-29 11:29:23 +02:00
|
|
|
const extension = extname(avatarPhysicalFile.filename)
|
2021-01-26 10:23:21 +01:00
|
|
|
|
2018-10-08 10:37:08 +02:00
|
|
|
const avatarName = uuidv4() + extension
|
2018-06-29 11:29:23 +02:00
|
|
|
const destination = join(CONFIG.STORAGE.AVATARS_DIR, avatarName)
|
2019-04-24 09:56:25 +02:00
|
|
|
await processImage(avatarPhysicalFile.path, destination, AVATARS_SIZE)
|
2018-06-29 11:29:23 +02:00
|
|
|
|
2018-09-26 10:15:50 +02:00
|
|
|
return retryTransactionWrapper(() => {
|
|
|
|
return sequelizeTypescript.transaction(async t => {
|
2019-08-09 11:32:40 +02:00
|
|
|
const avatarInfo = {
|
|
|
|
name: avatarName,
|
|
|
|
fileUrl: null,
|
|
|
|
onDisk: true
|
|
|
|
}
|
|
|
|
|
|
|
|
const updatedActor = await updateActorAvatarInstance(accountOrChannel.Actor, avatarInfo, t)
|
2018-09-26 10:15:50 +02:00
|
|
|
await updatedActor.save({ transaction: t })
|
2018-06-29 11:29:23 +02:00
|
|
|
|
2018-09-26 10:15:50 +02:00
|
|
|
await sendUpdateActor(accountOrChannel, t)
|
2018-06-29 11:29:23 +02:00
|
|
|
|
2018-09-26 10:15:50 +02:00
|
|
|
return updatedActor.Avatar
|
|
|
|
})
|
2018-06-29 11:29:23 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-01-26 10:23:21 +01:00
|
|
|
async function deleteLocalActorAvatarFile (
|
2021-01-13 09:12:55 +01:00
|
|
|
accountOrChannel: MAccountDefault | MChannelDefault
|
|
|
|
) {
|
|
|
|
return retryTransactionWrapper(() => {
|
|
|
|
return sequelizeTypescript.transaction(async t => {
|
|
|
|
const updatedActor = await deleteActorAvatarInstance(accountOrChannel.Actor, t)
|
|
|
|
await updatedActor.save({ transaction: t })
|
|
|
|
|
|
|
|
await sendUpdateActor(accountOrChannel, t)
|
|
|
|
|
|
|
|
return updatedActor.Avatar
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-09 11:32:40 +02: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 })
|
|
|
|
|
2018-06-29 11:29:23 +02:00
|
|
|
export {
|
2019-08-09 11:32:40 +02:00
|
|
|
avatarPathUnsafeCache,
|
2021-01-26 10:23:21 +01:00
|
|
|
updateLocalActorAvatarFile,
|
|
|
|
deleteLocalActorAvatarFile,
|
2019-08-09 11:32:40 +02:00
|
|
|
pushAvatarProcessInQueue
|
2018-06-29 11:29:23 +02:00
|
|
|
}
|