2019-04-17 04:07:00 -04:00
|
|
|
import { join } from 'path'
|
|
|
|
import { AfterDestroy, AllowNull, BelongsTo, Column, CreatedAt, Default, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
2019-08-09 05:32:40 -04:00
|
|
|
import { LAZY_STATIC_PATHS, STATIC_PATHS, WEBSERVER } from '../../initializers/constants'
|
2019-04-17 04:07:00 -04:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { remove } from 'fs-extra'
|
|
|
|
import { CONFIG } from '../../initializers/config'
|
|
|
|
import { VideoModel } from './video'
|
|
|
|
import { VideoPlaylistModel } from './video-playlist'
|
|
|
|
import { ThumbnailType } from '../../../shared/models/videos/thumbnail.type'
|
|
|
|
|
|
|
|
@Table({
|
|
|
|
tableName: 'thumbnail',
|
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'videoId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'videoPlaylistId' ],
|
|
|
|
unique: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class ThumbnailModel extends Model<ThumbnailModel> {
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
filename: string
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
height: number
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
width: number
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
type: ThumbnailType
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Column
|
2019-04-24 04:28:57 -04:00
|
|
|
fileUrl: string
|
2019-04-17 04:07:00 -04:00
|
|
|
|
2019-08-01 10:54:24 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@Column
|
|
|
|
automaticallyGenerated: boolean
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
Video: VideoModel
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoPlaylistModel)
|
|
|
|
@Column
|
|
|
|
videoPlaylistId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoPlaylistModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
VideoPlaylist: VideoPlaylistModel
|
|
|
|
|
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
|
|
|
private static types: { [ id in ThumbnailType ]: { label: string, directory: string, staticPath: string } } = {
|
2019-04-23 03:50:57 -04:00
|
|
|
[ThumbnailType.MINIATURE]: {
|
|
|
|
label: 'miniature',
|
2019-04-17 04:07:00 -04:00
|
|
|
directory: CONFIG.STORAGE.THUMBNAILS_DIR,
|
|
|
|
staticPath: STATIC_PATHS.THUMBNAILS
|
|
|
|
},
|
|
|
|
[ThumbnailType.PREVIEW]: {
|
|
|
|
label: 'preview',
|
|
|
|
directory: CONFIG.STORAGE.PREVIEWS_DIR,
|
2019-08-09 05:32:40 -04:00
|
|
|
staticPath: LAZY_STATIC_PATHS.PREVIEWS
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@AfterDestroy
|
2019-08-01 10:54:24 -04:00
|
|
|
static removeFiles (instance: ThumbnailModel) {
|
2019-04-17 04:07:00 -04:00
|
|
|
logger.info('Removing %s file %s.', ThumbnailModel.types[instance.type].label, instance.filename)
|
|
|
|
|
|
|
|
// Don't block the transaction
|
|
|
|
instance.removeThumbnail()
|
|
|
|
.catch(err => logger.error('Cannot remove thumbnail file %s.', instance.filename, err))
|
|
|
|
}
|
|
|
|
|
2019-08-09 09:04:36 -04:00
|
|
|
static loadByName (filename: string) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
filename
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ThumbnailModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
static generateDefaultPreviewName (videoUUID: string) {
|
|
|
|
return videoUUID + '.jpg'
|
|
|
|
}
|
|
|
|
|
2019-04-24 04:28:57 -04:00
|
|
|
getFileUrl () {
|
|
|
|
if (this.fileUrl) return this.fileUrl
|
2019-04-17 04:07:00 -04:00
|
|
|
|
|
|
|
const staticPath = ThumbnailModel.types[this.type].staticPath
|
|
|
|
return WEBSERVER.URL + staticPath + this.filename
|
|
|
|
}
|
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
getPath () {
|
2019-04-17 04:07:00 -04:00
|
|
|
const directory = ThumbnailModel.types[this.type].directory
|
2019-05-16 10:55:34 -04:00
|
|
|
return join(directory, this.filename)
|
|
|
|
}
|
2019-04-17 04:07:00 -04:00
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
removeThumbnail () {
|
|
|
|
return remove(this.getPath())
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
}
|