2021-05-01 16:30:21 +00:00
|
|
|
import { parseConfigUUIDs } from './config'
|
|
|
|
|
|
|
|
interface SharedSettings {
|
2021-06-08 16:08:58 +00:00
|
|
|
'chat-per-live-video': boolean
|
2021-05-01 16:30:21 +00:00
|
|
|
'chat-all-lives': boolean
|
|
|
|
'chat-all-non-lives': boolean
|
|
|
|
'chat-videos-list': string
|
|
|
|
}
|
|
|
|
|
|
|
|
interface SharedVideoBase {
|
|
|
|
uuid: string
|
|
|
|
isLive: boolean
|
2021-06-08 16:08:58 +00:00
|
|
|
pluginData?: {
|
|
|
|
'livechat-active'?: boolean
|
|
|
|
}
|
2021-05-01 16:30:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface SharedVideoFrontend extends SharedVideoBase {
|
|
|
|
isLocal: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
interface SharedVideoBackend extends SharedVideoBase {
|
|
|
|
remote: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
type SharedVideo = SharedVideoBackend | SharedVideoFrontend
|
|
|
|
|
|
|
|
function videoHasWebchat (settings: SharedSettings, video: SharedVideo): boolean {
|
2021-08-05 16:45:06 +00:00
|
|
|
// Never use webchat on remote videos.
|
|
|
|
if ('isLocal' in video) {
|
|
|
|
if (!video.isLocal) return false
|
|
|
|
} else {
|
|
|
|
if (video.remote) return false
|
2021-05-01 16:30:21 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 16:08:58 +00:00
|
|
|
if (settings['chat-per-live-video'] && video.isLive && video.pluginData && video.pluginData['livechat-active']) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-05-01 16:30:21 +00:00
|
|
|
if (settings['chat-all-lives']) {
|
|
|
|
if (video.isLive) return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings['chat-all-non-lives']) {
|
|
|
|
if (!video.isLive) return true
|
|
|
|
}
|
|
|
|
|
|
|
|
const uuids = parseConfigUUIDs(settings['chat-videos-list'])
|
|
|
|
if (uuids.includes(video.uuid)) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
videoHasWebchat
|
|
|
|
}
|