96 lines
2.1 KiB
TypeScript
96 lines
2.1 KiB
TypeScript
|
import { AllowNull, BelongsTo, Column, CreatedAt, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
||
|
import { MVideo, MVideoChapter } from '@server/types/models/index.js'
|
||
|
import { VideoChapter, VideoChapterObject } from '@peertube/peertube-models'
|
||
|
import { AttributesOnly } from '@peertube/peertube-typescript-utils'
|
||
|
import { VideoModel } from './video.js'
|
||
|
import { Transaction } from 'sequelize'
|
||
|
import { getSort } from '../shared/sort.js'
|
||
|
|
||
|
@Table({
|
||
|
tableName: 'videoChapter',
|
||
|
indexes: [
|
||
|
{
|
||
|
fields: [ 'videoId', 'timecode' ],
|
||
|
unique: true
|
||
|
}
|
||
|
]
|
||
|
})
|
||
|
export class VideoChapterModel extends Model<Partial<AttributesOnly<VideoChapterModel>>> {
|
||
|
|
||
|
@AllowNull(false)
|
||
|
@Column
|
||
|
timecode: number
|
||
|
|
||
|
@AllowNull(false)
|
||
|
@Column
|
||
|
title: string
|
||
|
|
||
|
@ForeignKey(() => VideoModel)
|
||
|
@Column
|
||
|
videoId: number
|
||
|
|
||
|
@BelongsTo(() => VideoModel, {
|
||
|
foreignKey: {
|
||
|
allowNull: false
|
||
|
},
|
||
|
onDelete: 'CASCADE'
|
||
|
})
|
||
|
Video: Awaited<VideoModel>
|
||
|
|
||
|
@CreatedAt
|
||
|
createdAt: Date
|
||
|
|
||
|
@UpdatedAt
|
||
|
updatedAt: Date
|
||
|
|
||
|
static deleteChapters (videoId: number, transaction: Transaction) {
|
||
|
const query = {
|
||
|
where: {
|
||
|
videoId
|
||
|
},
|
||
|
transaction
|
||
|
}
|
||
|
|
||
|
return VideoChapterModel.destroy(query)
|
||
|
}
|
||
|
|
||
|
static listChaptersOfVideo (videoId: number, transaction?: Transaction) {
|
||
|
const query = {
|
||
|
where: {
|
||
|
videoId
|
||
|
},
|
||
|
order: getSort('timecode'),
|
||
|
transaction
|
||
|
}
|
||
|
|
||
|
return VideoChapterModel.findAll<MVideoChapter>(query)
|
||
|
}
|
||
|
|
||
|
static hasVideoChapters (videoId: number, transaction: Transaction) {
|
||
|
return VideoChapterModel.findOne({
|
||
|
where: { videoId },
|
||
|
transaction
|
||
|
}).then(c => !!c)
|
||
|
}
|
||
|
|
||
|
toActivityPubJSON (this: MVideoChapter, options: {
|
||
|
video: MVideo
|
||
|
nextChapter: MVideoChapter
|
||
|
}): VideoChapterObject {
|
||
|
return {
|
||
|
name: this.title,
|
||
|
startOffset: this.timecode,
|
||
|
endOffset: options.nextChapter
|
||
|
? options.nextChapter.timecode
|
||
|
: options.video.duration
|
||
|
}
|
||
|
}
|
||
|
|
||
|
toFormattedJSON (this: MVideoChapter): VideoChapter {
|
||
|
return {
|
||
|
timecode: this.timecode,
|
||
|
title: this.title
|
||
|
}
|
||
|
}
|
||
|
}
|