42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { type VideoPrivacyType } from '@peertube/peertube-models'
|
|
import { isVideoPrivacyValid } from '@server/helpers/custom-validators/videos.js'
|
|
import { MLiveReplaySetting } from '@server/types/models/video/video-live-replay-setting.js'
|
|
import { Transaction } from 'sequelize'
|
|
import { AllowNull, Column, CreatedAt, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
|
import { throwIfNotValid } from '../shared/sequelize-helpers.js'
|
|
|
|
@Table({
|
|
tableName: 'videoLiveReplaySetting'
|
|
})
|
|
export class VideoLiveReplaySettingModel extends Model<VideoLiveReplaySettingModel> {
|
|
|
|
@CreatedAt
|
|
createdAt: Date
|
|
|
|
@UpdatedAt
|
|
updatedAt: Date
|
|
|
|
@AllowNull(false)
|
|
@Is('VideoPrivacy', value => throwIfNotValid(value, isVideoPrivacyValid, 'privacy'))
|
|
@Column
|
|
privacy: VideoPrivacyType
|
|
|
|
static load (id: number, transaction?: Transaction): Promise<MLiveReplaySetting> {
|
|
return VideoLiveReplaySettingModel.findOne({
|
|
where: { id },
|
|
transaction
|
|
})
|
|
}
|
|
|
|
static removeSettings (id: number) {
|
|
return VideoLiveReplaySettingModel.destroy({
|
|
where: { id }
|
|
})
|
|
}
|
|
|
|
toFormattedJSON () {
|
|
return {
|
|
privacy: this.privacy
|
|
}
|
|
}
|
|
}
|