2022-05-03 05:38:07 -04:00
|
|
|
import { FindOptions } from 'sequelize'
|
2023-03-31 03:12:21 -04:00
|
|
|
import {
|
|
|
|
AllowNull,
|
|
|
|
BeforeDestroy,
|
|
|
|
BelongsTo,
|
|
|
|
Column,
|
|
|
|
CreatedAt,
|
|
|
|
DataType,
|
|
|
|
ForeignKey,
|
|
|
|
Model,
|
|
|
|
Scopes,
|
|
|
|
Table,
|
|
|
|
UpdatedAt
|
|
|
|
} from 'sequelize-typescript'
|
2022-05-03 05:38:07 -04:00
|
|
|
import { MVideoLiveSession, MVideoLiveSessionReplay } from '@server/types/models'
|
|
|
|
import { uuidToShort } from '@shared/extra-utils'
|
|
|
|
import { LiveVideoError, LiveVideoSession } from '@shared/models'
|
|
|
|
import { AttributesOnly } from '@shared/typescript-utils'
|
|
|
|
import { VideoModel } from './video'
|
2023-03-31 03:12:21 -04:00
|
|
|
import { VideoLiveReplaySettingModel } from './video-live-replay-setting'
|
2022-05-03 05:38:07 -04:00
|
|
|
|
|
|
|
export enum ScopeNames {
|
|
|
|
WITH_REPLAY = 'WITH_REPLAY'
|
|
|
|
}
|
|
|
|
|
|
|
|
@Scopes(() => ({
|
|
|
|
[ScopeNames.WITH_REPLAY]: {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoModel.unscoped(),
|
|
|
|
as: 'ReplayVideo',
|
|
|
|
required: false
|
2023-03-31 03:12:21 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
model: VideoLiveReplaySettingModel,
|
|
|
|
required: false
|
2022-05-03 05:38:07 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}))
|
|
|
|
@Table({
|
|
|
|
tableName: 'videoLiveSession',
|
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'replayVideoId' ],
|
|
|
|
unique: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'liveVideoId' ]
|
2023-03-31 03:12:21 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'replaySettingId' ],
|
|
|
|
unique: true
|
2022-05-03 05:38:07 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class VideoLiveSessionModel extends Model<Partial<AttributesOnly<VideoLiveSessionModel>>> {
|
|
|
|
|
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Column(DataType.DATE)
|
|
|
|
startDate: Date
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Column(DataType.DATE)
|
|
|
|
endDate: Date
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Column
|
|
|
|
error: LiveVideoError
|
|
|
|
|
2022-07-22 09:22:21 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
saveReplay: boolean
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
endingProcessed: boolean
|
|
|
|
|
2022-05-03 05:38:07 -04:00
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
replayVideoId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true,
|
|
|
|
name: 'replayVideoId'
|
|
|
|
},
|
|
|
|
as: 'ReplayVideo',
|
|
|
|
onDelete: 'set null'
|
|
|
|
})
|
|
|
|
ReplayVideo: VideoModel
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
liveVideoId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true,
|
|
|
|
name: 'liveVideoId'
|
|
|
|
},
|
|
|
|
as: 'LiveVideo',
|
|
|
|
onDelete: 'set null'
|
|
|
|
})
|
|
|
|
LiveVideo: VideoModel
|
|
|
|
|
2023-03-31 03:12:21 -04:00
|
|
|
@ForeignKey(() => VideoLiveReplaySettingModel)
|
|
|
|
@Column
|
|
|
|
replaySettingId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoLiveReplaySettingModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'set null'
|
|
|
|
})
|
|
|
|
ReplaySetting: VideoLiveReplaySettingModel
|
|
|
|
|
|
|
|
@BeforeDestroy
|
|
|
|
static deleteReplaySetting (instance: VideoLiveSessionModel) {
|
|
|
|
return VideoLiveReplaySettingModel.destroy({
|
|
|
|
where: {
|
|
|
|
id: instance.replaySettingId
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-05-03 05:38:07 -04:00
|
|
|
static load (id: number): Promise<MVideoLiveSession> {
|
|
|
|
return VideoLiveSessionModel.findOne({
|
|
|
|
where: { id }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
static findSessionOfReplay (replayVideoId: number) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
replayVideoId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoLiveSessionModel.scope(ScopeNames.WITH_REPLAY).findOne(query)
|
|
|
|
}
|
|
|
|
|
|
|
|
static findCurrentSessionOf (videoId: number) {
|
|
|
|
return VideoLiveSessionModel.findOne({
|
|
|
|
where: {
|
|
|
|
liveVideoId: videoId,
|
|
|
|
endDate: null
|
|
|
|
},
|
|
|
|
order: [ [ 'startDate', 'DESC' ] ]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-07-12 10:30:59 -04:00
|
|
|
static findLatestSessionOf (videoId: number) {
|
|
|
|
return VideoLiveSessionModel.findOne({
|
|
|
|
where: {
|
|
|
|
liveVideoId: videoId
|
|
|
|
},
|
|
|
|
order: [ [ 'startDate', 'DESC' ] ]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-05-03 05:38:07 -04:00
|
|
|
static listSessionsOfLiveForAPI (options: { videoId: number }) {
|
|
|
|
const { videoId } = options
|
|
|
|
|
2022-06-21 05:16:38 -04:00
|
|
|
const query: FindOptions<AttributesOnly<VideoLiveSessionModel>> = {
|
2022-05-03 05:38:07 -04:00
|
|
|
where: {
|
|
|
|
liveVideoId: videoId
|
|
|
|
},
|
|
|
|
order: [ [ 'startDate', 'ASC' ] ]
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoLiveSessionModel.scope(ScopeNames.WITH_REPLAY).findAll(query)
|
|
|
|
}
|
|
|
|
|
|
|
|
toFormattedJSON (this: MVideoLiveSessionReplay): LiveVideoSession {
|
|
|
|
const replayVideo = this.ReplayVideo
|
|
|
|
? {
|
|
|
|
id: this.ReplayVideo.id,
|
|
|
|
uuid: this.ReplayVideo.uuid,
|
|
|
|
shortUUID: uuidToShort(this.ReplayVideo.uuid)
|
|
|
|
}
|
|
|
|
: undefined
|
|
|
|
|
2023-03-31 03:12:21 -04:00
|
|
|
const replaySettings = this.replaySettingId
|
|
|
|
? this.ReplaySetting.toFormattedJSON()
|
|
|
|
: undefined
|
|
|
|
|
2022-05-03 05:38:07 -04:00
|
|
|
return {
|
|
|
|
id: this.id,
|
|
|
|
startDate: this.startDate.toISOString(),
|
|
|
|
endDate: this.endDate
|
|
|
|
? this.endDate.toISOString()
|
|
|
|
: null,
|
2022-07-22 09:22:21 -04:00
|
|
|
endingProcessed: this.endingProcessed,
|
|
|
|
saveReplay: this.saveReplay,
|
2023-03-31 03:12:21 -04:00
|
|
|
replaySettings,
|
2022-05-03 05:38:07 -04:00
|
|
|
replayVideo,
|
|
|
|
error: this.error
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|