b211106695
* Add "currentTime" and "event" body params to view endpoint * Merge watching and view endpoints * Introduce WatchAction AP activity * Add tables to store viewer information of local videos * Add endpoints to fetch video views/viewers stats of local videos * Refactor views/viewers handlers * Support "views" and "viewers" counters for both VOD and live videos
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import { WatchActionObject } from '@shared/models'
|
|
import { exists, isDateValid, isUUIDValid } from '../misc'
|
|
import { isVideoTimeValid } from '../video-view'
|
|
import { isActivityPubVideoDurationValid, isObjectValid } from './misc'
|
|
|
|
function isWatchActionObjectValid (action: WatchActionObject) {
|
|
return exists(action) &&
|
|
action.type === 'WatchAction' &&
|
|
isObjectValid(action.id) &&
|
|
isActivityPubVideoDurationValid(action.duration) &&
|
|
isDateValid(action.startTime) &&
|
|
isDateValid(action.endTime) &&
|
|
isLocationValid(action.location) &&
|
|
isUUIDValid(action.uuid) &&
|
|
isObjectValid(action.object) &&
|
|
isWatchSectionsValid(action.watchSections)
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
isWatchActionObjectValid
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
function isLocationValid (location: any) {
|
|
if (!location) return true
|
|
|
|
return typeof location === 'object' && typeof location.addressCountry === 'string'
|
|
}
|
|
|
|
function isWatchSectionsValid (sections: WatchActionObject['watchSections']) {
|
|
return Array.isArray(sections) && sections.every(s => {
|
|
return isVideoTimeValid(s.startTimestamp) && isVideoTimeValid(s.endTimestamp)
|
|
})
|
|
}
|