PeerTube/server/models/avatar/avatar.ts

49 lines
1.2 KiB
TypeScript
Raw Normal View History

2017-12-29 19:10:13 +01:00
import { join } from 'path'
import { AfterDestroy, AllowNull, Column, CreatedAt, Model, Table, UpdatedAt } from 'sequelize-typescript'
import { Avatar } from '../../../shared/models/avatars/avatar.model'
import { CONFIG, STATIC_PATHS } from '../../initializers'
2018-07-30 17:02:40 +02:00
import { logger } from '../../helpers/logger'
2018-08-27 16:23:34 +02:00
import { remove } from 'fs-extra'
2017-12-04 10:34:40 +01:00
2017-12-12 17:53:50 +01:00
@Table({
tableName: 'avatar'
})
export class AvatarModel extends Model<AvatarModel> {
2017-12-04 10:34:40 +01:00
2017-12-12 17:53:50 +01:00
@AllowNull(false)
@Column
filename: string
2017-12-04 10:34:40 +01:00
2017-12-12 17:53:50 +01:00
@CreatedAt
createdAt: Date
2017-12-04 10:34:40 +01:00
2017-12-12 17:53:50 +01:00
@UpdatedAt
updatedAt: Date
2017-12-29 19:10:13 +01:00
@AfterDestroy
static removeFilesAndSendDelete (instance: AvatarModel) {
2018-07-30 17:02:40 +02:00
logger.info('Removing avatar file %s.', instance.filename)
2018-10-08 10:37:08 +02:00
// Don't block the transaction
instance.removeAvatar()
.catch(err => logger.error('Cannot remove avatar file %s.', instance.filename, err))
2017-12-29 19:10:13 +01:00
}
toFormattedJSON (): Avatar {
return {
path: this.getWebserverPath(),
createdAt: this.createdAt,
updatedAt: this.updatedAt
}
}
getWebserverPath () {
return join(STATIC_PATHS.AVATARS, this.filename)
}
removeAvatar () {
const avatarPath = join(CONFIG.STORAGE.AVATARS_DIR, this.filename)
2018-08-27 16:23:34 +02:00
return remove(avatarPath)
2017-12-29 19:10:13 +01:00
}
2017-12-04 10:34:40 +01:00
}