2022-03-24 08:36:47 -04:00
|
|
|
import { Transaction } from 'sequelize'
|
|
|
|
import { LocalVideoViewerModel } from '@server/models/view/local-video-viewer'
|
|
|
|
import { LocalVideoViewerWatchSectionModel } from '@server/models/view/local-video-viewer-watch-section'
|
|
|
|
import { MVideo } from '@server/types/models'
|
|
|
|
import { WatchActionObject } from '@shared/models'
|
|
|
|
import { getDurationFromActivityStream } from './activity'
|
|
|
|
|
|
|
|
async function createOrUpdateLocalVideoViewer (watchAction: WatchActionObject, video: MVideo, t: Transaction) {
|
|
|
|
const stats = await LocalVideoViewerModel.loadByUrl(watchAction.id)
|
|
|
|
if (stats) await stats.destroy({ transaction: t })
|
|
|
|
|
|
|
|
const localVideoViewer = await LocalVideoViewerModel.create({
|
|
|
|
url: watchAction.id,
|
|
|
|
uuid: watchAction.uuid,
|
|
|
|
|
|
|
|
watchTime: getDurationFromActivityStream(watchAction.duration),
|
|
|
|
|
|
|
|
startDate: new Date(watchAction.startTime),
|
|
|
|
endDate: new Date(watchAction.endTime),
|
|
|
|
|
|
|
|
country: watchAction.location
|
|
|
|
? watchAction.location.addressCountry
|
|
|
|
: null,
|
|
|
|
|
|
|
|
videoId: video.id
|
2022-06-17 03:03:18 -04:00
|
|
|
}, { transaction: t })
|
2022-03-24 08:36:47 -04:00
|
|
|
|
|
|
|
await LocalVideoViewerWatchSectionModel.bulkCreateSections({
|
|
|
|
localVideoViewerId: localVideoViewer.id,
|
|
|
|
|
|
|
|
watchSections: watchAction.watchSections.map(s => ({
|
|
|
|
start: s.startTimestamp,
|
|
|
|
end: s.endTimestamp
|
2022-06-17 03:03:18 -04:00
|
|
|
})),
|
|
|
|
|
|
|
|
transaction: t
|
2022-03-24 08:36:47 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
createOrUpdateLocalVideoViewer
|
|
|
|
}
|