2017-12-29 13:10:13 -05: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 11:02:40 -04:00
|
|
|
import { logger } from '../../helpers/logger'
|
2018-08-27 10:23:34 -04:00
|
|
|
import { remove } from 'fs-extra'
|
2017-12-04 04:34:40 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@Table({
|
|
|
|
tableName: 'avatar'
|
|
|
|
})
|
|
|
|
export class AvatarModel extends Model<AvatarModel> {
|
2017-12-04 04:34:40 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
filename: string
|
2017-12-04 04:34:40 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
2017-12-04 04:34:40 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
2017-12-29 13:10:13 -05:00
|
|
|
|
|
|
|
@AfterDestroy
|
|
|
|
static removeFilesAndSendDelete (instance: AvatarModel) {
|
2018-07-30 11:02:40 -04:00
|
|
|
logger.info('Removing avatar file %s.', instance.filename)
|
2018-10-08 04:37:08 -04:00
|
|
|
|
|
|
|
// Don't block the transaction
|
|
|
|
instance.removeAvatar()
|
|
|
|
.catch(err => logger.error('Cannot remove avatar file %s.', instance.filename, err))
|
2017-12-29 13:10:13 -05: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 10:23:34 -04:00
|
|
|
return remove(avatarPath)
|
2017-12-29 13:10:13 -05:00
|
|
|
}
|
2017-12-04 04:34:40 -05:00
|
|
|
}
|