2020-06-02 23:56:59 +03:00
|
|
|
function setupApp() {
|
2020-06-03 03:35:49 +03:00
|
|
|
Vue.filter('plural', function (string, count) {
|
|
|
|
if (count === 1) {
|
2020-06-14 06:15:31 +03:00
|
|
|
return string;
|
2020-06-03 03:35:49 +03:00
|
|
|
} else {
|
2020-06-14 06:15:31 +03:00
|
|
|
return string + "s";
|
2020-06-03 03:35:49 +03:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-06-02 23:56:59 +03:00
|
|
|
window.app = new Vue({
|
2020-06-17 04:36:11 +03:00
|
|
|
el: "#app-container",
|
2020-06-02 23:56:59 +03:00
|
|
|
data: {
|
|
|
|
streamStatus: "",
|
2020-06-03 03:35:49 +03:00
|
|
|
viewerCount: 0,
|
2020-06-14 11:10:26 +03:00
|
|
|
sessionMaxViewerCount: 0,
|
|
|
|
overallMaxViewerCount: 0,
|
2020-06-17 04:36:11 +03:00
|
|
|
messages: [],
|
2020-06-02 23:56:59 +03:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2020-06-15 07:14:42 +03:00
|
|
|
// style hackings
|
2020-06-14 09:38:09 +03:00
|
|
|
window.VIDEOJS_NO_DYNAMIC_STYLE = true;
|
2020-06-15 07:14:42 +03:00
|
|
|
|
|
|
|
// init messaging interactions
|
2020-06-14 06:15:31 +03:00
|
|
|
var appMessagingMisc = new Messaging();
|
|
|
|
appMessagingMisc.init();
|
2020-06-15 01:18:43 +03:00
|
|
|
|
|
|
|
const config = new Config();
|
2020-06-02 23:56:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async function getStatus() {
|
2020-06-16 03:23:44 +03:00
|
|
|
let url = "/status";
|
2020-06-03 03:59:40 +03:00
|
|
|
|
2020-06-02 23:56:59 +03:00
|
|
|
try {
|
2020-06-09 20:51:12 +03:00
|
|
|
const response = await fetch(url);
|
|
|
|
const status = await response.json(); // read response body and parse as JSON
|
2020-06-16 03:23:44 +03:00
|
|
|
|
|
|
|
if (!app.isOnline && status.online) {
|
|
|
|
// The stream was offline, but now it's online. Force start of playback after an arbitrary
|
|
|
|
// delay to make sure the stream has actual data ready to go.
|
|
|
|
setTimeout(function () {
|
|
|
|
var player = videojs('video');
|
|
|
|
player.pause()
|
|
|
|
player.src(player.src()); // Reload the same video
|
|
|
|
player.load();
|
|
|
|
player.play();
|
|
|
|
}, 3000)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-02 23:56:59 +03:00
|
|
|
app.streamStatus = status.online
|
|
|
|
? "Stream is online."
|
|
|
|
: "Stream is offline."
|
2020-06-03 03:35:49 +03:00
|
|
|
|
2020-06-14 11:10:26 +03:00
|
|
|
app.viewerCount = status.viewerCount;
|
|
|
|
app.sessionMaxViewerCount = status.sessionMaxViewerCount;
|
|
|
|
app.overallMaxViewerCount = status.overallMaxViewerCount;
|
2020-06-16 03:23:44 +03:00
|
|
|
app.isOnline = status.online;
|
2020-06-14 08:45:22 +03:00
|
|
|
|
2020-06-02 23:56:59 +03:00
|
|
|
} catch (e) {
|
|
|
|
app.streamStatus = "Stream server is offline."
|
2020-06-03 03:35:49 +03:00
|
|
|
app.viewerCount = 0
|
2020-06-02 23:56:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-14 06:15:31 +03:00
|
|
|
var websocketReconnectTimer;
|
2020-06-02 23:56:59 +03:00
|
|
|
function setupWebsocket() {
|
2020-06-09 20:51:12 +03:00
|
|
|
clearTimeout(websocketReconnectTimer)
|
|
|
|
|
2020-06-15 02:44:38 +03:00
|
|
|
// Uncomment to point to somewhere other than goth.land
|
2020-06-17 04:36:11 +03:00
|
|
|
const protocol = location.protocol == "https:" ? "wss" : "ws"
|
|
|
|
var ws = new WebSocket(protocol + "://" + location.host + "/entry")
|
2020-06-15 02:44:38 +03:00
|
|
|
|
2020-06-17 04:36:11 +03:00
|
|
|
// var ws = new WebSocket("wss://goth.land/entry")
|
2020-06-15 02:44:38 +03:00
|
|
|
|
2020-06-02 23:56:59 +03:00
|
|
|
ws.onmessage = (e) => {
|
2020-06-09 20:51:12 +03:00
|
|
|
const model = JSON.parse(e.data)
|
2020-06-15 02:44:38 +03:00
|
|
|
|
|
|
|
// Ignore non-chat messages (such as keepalive PINGs)
|
|
|
|
if (model.type !== SocketMessageTypes.CHAT) { return; }
|
|
|
|
|
2020-06-09 20:51:12 +03:00
|
|
|
const message = new Message(model)
|
2020-06-17 04:36:11 +03:00
|
|
|
|
|
|
|
const existing = this.app.messages.filter(function (item) {
|
2020-06-03 03:59:40 +03:00
|
|
|
return item.id === message.id
|
|
|
|
})
|
|
|
|
|
|
|
|
if (existing.length === 0 || !existing) {
|
2020-06-17 04:36:11 +03:00
|
|
|
this.app.messages.push(message);
|
2020-06-14 11:10:26 +03:00
|
|
|
setTimeout(() => { jumpToBottom("#messages-container"); } , 50); // could be better. is there a sort of Vue "componentDidUpdate" we can do this on?
|
2020-06-03 03:59:40 +03:00
|
|
|
}
|
2020-06-02 23:56:59 +03:00
|
|
|
}
|
2020-06-03 03:35:49 +03:00
|
|
|
|
|
|
|
ws.onclose = (e) => {
|
|
|
|
// connection closed, discard old websocket and create a new one in 5s
|
|
|
|
ws = null
|
2020-06-09 20:51:12 +03:00
|
|
|
console.log("Websocket closed.")
|
|
|
|
websocketReconnectTimer = setTimeout(setupWebsocket, 5000)
|
2020-06-03 03:35:49 +03:00
|
|
|
}
|
|
|
|
|
2020-06-09 20:51:12 +03:00
|
|
|
// On ws error just close the socket and let it re-connect again for now.
|
2020-06-03 03:35:49 +03:00
|
|
|
ws.onerror = (e) => {
|
2020-06-09 20:51:12 +03:00
|
|
|
console.log("Websocket error: ", e)
|
|
|
|
ws.close()
|
2020-06-03 03:35:49 +03:00
|
|
|
}
|
|
|
|
|
2020-06-16 03:40:12 +03:00
|
|
|
window.ws = ws;
|
2020-06-02 23:56:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
setupApp()
|
2020-06-03 03:35:49 +03:00
|
|
|
getStatus()
|
2020-06-10 00:15:00 +03:00
|
|
|
setupWebsocket()
|
2020-06-15 03:15:19 +03:00
|
|
|
setInterval(getStatus, 5000)
|
2020-06-02 23:56:59 +03:00
|
|
|
|