mirror of https://github.com/Chocobozzz/PeerTube
Fix avatar transaction retry
parent
39ba2e8e3a
commit
4a534352ad
|
@ -56,7 +56,7 @@ videoChannelRouter.post('/:nameWithHost/avatar/pick',
|
||||||
// Check the rights
|
// Check the rights
|
||||||
asyncMiddleware(videoChannelsUpdateValidator),
|
asyncMiddleware(videoChannelsUpdateValidator),
|
||||||
updateAvatarValidator,
|
updateAvatarValidator,
|
||||||
asyncRetryTransactionMiddleware(updateVideoChannelAvatar)
|
asyncMiddleware(updateVideoChannelAvatar)
|
||||||
)
|
)
|
||||||
|
|
||||||
videoChannelRouter.put('/:nameWithHost',
|
videoChannelRouter.put('/:nameWithHost',
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { processImage } from '../helpers/image-utils'
|
||||||
import { AccountModel } from '../models/account/account'
|
import { AccountModel } from '../models/account/account'
|
||||||
import { VideoChannelModel } from '../models/video/video-channel'
|
import { VideoChannelModel } from '../models/video/video-channel'
|
||||||
import { extname, join } from 'path'
|
import { extname, join } from 'path'
|
||||||
|
import { retryTransactionWrapper } from '../helpers/database-utils'
|
||||||
|
|
||||||
async function updateActorAvatarFile (avatarPhysicalFile: Express.Multer.File, accountOrChannel: AccountModel | VideoChannelModel) {
|
async function updateActorAvatarFile (avatarPhysicalFile: Express.Multer.File, accountOrChannel: AccountModel | VideoChannelModel) {
|
||||||
const extension = extname(avatarPhysicalFile.filename)
|
const extension = extname(avatarPhysicalFile.filename)
|
||||||
|
@ -13,6 +14,7 @@ async function updateActorAvatarFile (avatarPhysicalFile: Express.Multer.File, a
|
||||||
const destination = join(CONFIG.STORAGE.AVATARS_DIR, avatarName)
|
const destination = join(CONFIG.STORAGE.AVATARS_DIR, avatarName)
|
||||||
await processImage(avatarPhysicalFile, destination, AVATARS_SIZE)
|
await processImage(avatarPhysicalFile, destination, AVATARS_SIZE)
|
||||||
|
|
||||||
|
return retryTransactionWrapper(() => {
|
||||||
return sequelizeTypescript.transaction(async t => {
|
return sequelizeTypescript.transaction(async t => {
|
||||||
const updatedActor = await updateActorAvatarInstance(accountOrChannel.Actor, avatarName, t)
|
const updatedActor = await updateActorAvatarInstance(accountOrChannel.Actor, avatarName, t)
|
||||||
await updatedActor.save({ transaction: t })
|
await updatedActor.save({ transaction: t })
|
||||||
|
@ -21,6 +23,7 @@ async function updateActorAvatarFile (avatarPhysicalFile: Express.Multer.File, a
|
||||||
|
|
||||||
return updatedActor.Avatar
|
return updatedActor.Avatar
|
||||||
})
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
|
Loading…
Reference in New Issue