2020-11-27 07:00:05 +08:00
|
|
|
var streamStatus;
|
|
|
|
var auth_hash;
|
|
|
|
var alarmState = STATE_IDLE;
|
|
|
|
var lastAlarmState = STATE_IDLE;
|
2020-10-16 21:08:23 +08:00
|
|
|
var backBtn = $j('#backBtn');
|
|
|
|
var settingsBtn = $j('#settingsBtn');
|
2020-10-17 04:47:42 +08:00
|
|
|
var enableAlmBtn = $j('#enableAlmBtn');
|
|
|
|
var forceAlmBtn = $j('#forceAlmBtn');
|
2020-11-27 07:00:05 +08:00
|
|
|
var table = $j('#eventList');
|
2020-12-03 21:53:09 +08:00
|
|
|
var filterQuery = '&filter[Query][terms][0][attr]=MonitorId&filter[Query][terms][0][op]=%3d&filter[Query][terms][0][val]='+monitorId;
|
2020-11-27 07:00:05 +08:00
|
|
|
|
|
|
|
if ( monitorType != 'WebSite' ) {
|
|
|
|
var streamCmdParms = 'view=request&request=stream&connkey='+connKey;
|
|
|
|
if ( auth_hash ) {
|
|
|
|
streamCmdParms += '&auth='+auth_hash;
|
|
|
|
}
|
|
|
|
var streamCmdReq = new Request.JSON( {
|
|
|
|
url: monitorUrl,
|
|
|
|
method: 'get',
|
|
|
|
timeout: AJAX_TIMEOUT,
|
|
|
|
link: 'chain',
|
|
|
|
onError: getStreamCmdError,
|
|
|
|
onSuccess: getStreamCmdResponse,
|
|
|
|
onFailure: getStreamCmdFailure
|
|
|
|
} );
|
|
|
|
var streamCmdTimer = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
This is the format of the json object sent by bootstrap-table
|
|
|
|
|
|
|
|
var params =
|
|
|
|
{
|
|
|
|
"type":"get",
|
|
|
|
"data":
|
|
|
|
{
|
|
|
|
"search":"some search text",
|
|
|
|
"sort":"StartDateTime",
|
|
|
|
"order":"asc",
|
|
|
|
"offset":0,
|
|
|
|
"limit":25
|
|
|
|
"filter":
|
|
|
|
{
|
|
|
|
"Name":"some advanced search text"
|
|
|
|
"StartDateTime":"some more advanced search text"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"cache":true,
|
|
|
|
"contentType":"application/json",
|
|
|
|
"dataType":"json"
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Called by bootstrap-table to retrieve zm event data
|
|
|
|
function ajaxRequest(params) {
|
2020-12-03 09:44:12 +08:00
|
|
|
// Maintain legacy behavior by statically setting these parameters
|
|
|
|
params.data.order = 'desc';
|
|
|
|
params.data.limit = maxDisplayEvents;
|
|
|
|
params.data.sort = 'Id';
|
|
|
|
|
2020-12-03 21:53:09 +08:00
|
|
|
$j.getJSON(thisUrl + '?view=request&request=events&task=query'+filterQuery, params.data)
|
2020-11-27 07:00:05 +08:00
|
|
|
.done(function(data) {
|
2020-12-03 09:44:12 +08:00
|
|
|
var rows = processRows(data.rows);
|
2020-11-27 07:00:05 +08:00
|
|
|
// rearrange the result into what bootstrap-table expects
|
|
|
|
params.success({total: data.total, totalNotFiltered: data.totalNotFiltered, rows: rows});
|
|
|
|
})
|
|
|
|
.fail(logAjaxFail);
|
|
|
|
}
|
|
|
|
|
|
|
|
function processRows(rows) {
|
|
|
|
$j.each(rows, function(ndx, row) {
|
|
|
|
var eid = row.Id;
|
|
|
|
|
2020-12-03 09:44:12 +08:00
|
|
|
row.Delete = '<i class="fa fa-trash text-danger"></i>';
|
2020-11-27 07:00:05 +08:00
|
|
|
row.Id = '<a href="?view=event&eid=' + eid + filterQuery + '">' + eid + '</a>';
|
|
|
|
row.Name = '<a href="?view=event&eid=' + eid + filterQuery + '">' + row.Name + '</a>';
|
|
|
|
row.Frames = '<a href="?view=frames&eid=' + eid + '">' + row.Frames + '</a>';
|
|
|
|
row.AlarmFrames = '<a href="?view=frames&eid=' + eid + '">' + row.AlarmFrames + '</a>';
|
|
|
|
row.MaxScore = '<a href="?view=frame&eid=' + eid + '&fid=0">' + row.MaxScore + '</a>';
|
2020-12-03 09:44:12 +08:00
|
|
|
if ( LIST_THUMBS ) row.Thumbnail = '<a href="?view=event&eid=' + eid + filterQuery + '&page=1">' + row.imgHtml + '</a>';
|
2020-11-27 07:00:05 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
return rows;
|
|
|
|
}
|
2009-05-08 18:04:12 +08:00
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function showEvents() {
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#ptzControls').addClass('hidden');
|
|
|
|
$j('#events').removeClass('hidden');
|
|
|
|
if ( $j('#eventsControl') ) {
|
|
|
|
$j('#eventsControl').addClass('hidden');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-12-04 03:12:01 +08:00
|
|
|
if ( $j('#controlControl') ) {
|
|
|
|
$j('#controlControl').removeClass('hidden');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-05 00:17:48 +08:00
|
|
|
showMode = 'events';
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function showPtzControls() {
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#events').addClass('hidden');
|
|
|
|
$j('#ptzControls').removeClass('hidden');
|
|
|
|
if ( $j('#eventsControl') ) {
|
|
|
|
$j('#eventsControl').removeClass('hidden');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-12-04 03:12:01 +08:00
|
|
|
if ( $j('#controlControl') ) {
|
|
|
|
$j('#controlControl').addClass('hidden');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-05 00:17:48 +08:00
|
|
|
showMode = 'control';
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function changeScale() {
|
2020-12-04 03:12:01 +08:00
|
|
|
var scale = $j('#scale').val();
|
2017-11-21 03:25:13 +08:00
|
|
|
var newWidth;
|
|
|
|
var newHeight;
|
2020-03-05 00:17:48 +08:00
|
|
|
if ( scale == '0' || scale == 'auto' ) {
|
2019-01-18 23:00:55 +08:00
|
|
|
var newSize = scaleToFit(monitorWidth, monitorHeight, $j('#liveStream'+monitorId), $j('#replayStatus'));
|
2017-11-21 03:25:13 +08:00
|
|
|
newWidth = newSize.width;
|
|
|
|
newHeight = newSize.height;
|
|
|
|
autoScale = newSize.autoScale;
|
|
|
|
} else {
|
|
|
|
$j(window).off('resize', endOfResize); //remove resize handler when Scale to Fit is not active
|
|
|
|
newWidth = monitorWidth * scale / SCALE_BASE;
|
|
|
|
newHeight = monitorHeight * scale / SCALE_BASE;
|
|
|
|
}
|
|
|
|
|
2020-10-07 23:26:18 +08:00
|
|
|
Cookie.write('zmWatchScale'+monitorId, scale, {duration: 10*365, samesite: 'strict'});
|
2016-09-27 23:51:55 +08:00
|
|
|
|
2020-12-08 00:22:54 +08:00
|
|
|
var streamImg = $j('#liveStream'+monitorId);
|
2016-09-27 23:51:55 +08:00
|
|
|
if ( streamImg ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var oldSrc = streamImg.attr('src');
|
|
|
|
var newSrc = oldSrc.replace(/scale=\d+/i, 'scale='+(scale== 'auto' ? autoScale : scale));
|
2016-09-27 23:51:55 +08:00
|
|
|
|
2020-12-08 00:22:54 +08:00
|
|
|
streamImg.width( newWidth );
|
|
|
|
streamImg.height( newHeight );
|
2020-12-08 04:44:45 +08:00
|
|
|
streamImg.src = newSrc;
|
2016-09-27 23:51:55 +08:00
|
|
|
} else {
|
2020-03-20 23:06:01 +08:00
|
|
|
console.error('No element found for liveStream'+monitorId);
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function setAlarmState( currentAlarmState ) {
|
|
|
|
alarmState = currentAlarmState;
|
|
|
|
|
2020-01-06 06:33:53 +08:00
|
|
|
var stateClass = '';
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( alarmState == STATE_ALARM ) {
|
2020-01-06 06:33:53 +08:00
|
|
|
stateClass = 'alarm';
|
2019-01-19 23:32:40 +08:00
|
|
|
} else if ( alarmState == STATE_ALERT ) {
|
2020-01-06 06:33:53 +08:00
|
|
|
stateClass = 'alert';
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#stateValue').text(stateStrings[alarmState]);
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( stateClass ) {
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#stateValue').addClass(stateClass);
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#stateValue').removeClass();
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
|
|
|
|
var isAlarmed = ( alarmState == STATE_ALARM || alarmState == STATE_ALERT );
|
|
|
|
var wasAlarmed = ( lastAlarmState == STATE_ALARM || lastAlarmState == STATE_ALERT );
|
|
|
|
|
|
|
|
var newAlarm = ( isAlarmed && !wasAlarmed );
|
|
|
|
var oldAlarm = ( !isAlarmed && wasAlarmed );
|
|
|
|
|
|
|
|
if ( newAlarm ) {
|
2020-12-03 22:31:52 +08:00
|
|
|
table.bootstrapTable('refresh');
|
2016-09-27 23:51:55 +08:00
|
|
|
if ( SOUND_ON_ALARM ) {
|
|
|
|
// Enable the alarm sound
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( !canPlayPauseAudio ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
$j('#alarmSound').removeClass('hidden');
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2020-12-08 00:22:54 +08:00
|
|
|
$j('#MediaPlayer').trigger('play');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2008-07-16 23:47:33 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
if ( POPUP_ON_ALARM ) {
|
|
|
|
window.focus();
|
2008-07-16 23:47:33 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
2020-03-05 00:17:48 +08:00
|
|
|
if ( oldAlarm ) { // done with an event do a refresh
|
2020-12-03 22:31:52 +08:00
|
|
|
table.bootstrapTable('refresh');
|
2020-03-05 00:17:48 +08:00
|
|
|
if ( SOUND_ON_ALARM ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
// Disable alarm sound
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( !canPlayPauseAudio ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
$j('#alarmSound').addClass('hidden');
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2020-12-08 00:22:54 +08:00
|
|
|
$j('#MediaPlayer').trigger('pause');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2009-05-26 02:03:46 +08:00
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
lastAlarmState = alarmState;
|
2020-03-05 00:17:48 +08:00
|
|
|
} // end function setAlarmState( currentAlarmState )
|
2008-07-16 23:47:33 +08:00
|
|
|
|
2019-01-18 23:00:55 +08:00
|
|
|
function getStreamCmdError(text, error) {
|
2018-08-31 22:34:54 +08:00
|
|
|
console.log(error);
|
|
|
|
// Error are normally due to failed auth. reload the page.
|
|
|
|
window.location.reload();
|
|
|
|
}
|
2020-11-27 07:00:05 +08:00
|
|
|
|
2018-01-29 23:32:02 +08:00
|
|
|
function getStreamCmdFailure(xhr) {
|
2018-08-31 22:34:54 +08:00
|
|
|
console.log(xhr);
|
2018-01-29 23:32:02 +08:00
|
|
|
}
|
2020-11-27 07:00:05 +08:00
|
|
|
|
2018-08-31 22:34:54 +08:00
|
|
|
function getStreamCmdResponse(respObj, respText) {
|
2020-01-06 06:33:53 +08:00
|
|
|
watchdogOk('stream');
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( streamCmdTimer ) {
|
2018-08-31 22:34:54 +08:00
|
|
|
streamCmdTimer = clearTimeout(streamCmdTimer);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
if ( respObj.result == 'Ok' ) {
|
2018-01-30 00:25:46 +08:00
|
|
|
// The get status command can get backed up, in which case we won't be able to get the semaphore and will exit.
|
|
|
|
if ( respObj.status ) {
|
|
|
|
streamStatus = respObj.status;
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#fpsValue').text(streamStatus.fps);
|
2018-01-30 00:25:46 +08:00
|
|
|
|
2018-08-31 22:34:54 +08:00
|
|
|
setAlarmState(streamStatus.state);
|
2018-01-30 00:25:46 +08:00
|
|
|
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#levelValue').text(streamStatus.level);
|
2020-12-08 00:22:54 +08:00
|
|
|
var newClass = 'ok';
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( streamStatus.level > 95 ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
newClass = 'alarm';
|
2019-01-19 23:32:40 +08:00
|
|
|
} else if ( streamStatus.level > 80 ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
newClass = 'alert';
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-12-08 00:22:54 +08:00
|
|
|
$j('#levelValue').removeClass();
|
|
|
|
$j('#levelValue').addClass(newClass);
|
2018-01-30 00:25:46 +08:00
|
|
|
|
2018-08-31 22:34:54 +08:00
|
|
|
var delayString = secsToTime(streamStatus.delay);
|
2018-01-30 00:25:46 +08:00
|
|
|
|
|
|
|
if ( streamStatus.paused == true ) {
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#modeValue').text('Paused');
|
|
|
|
$j('#rate').addClass('hidden');
|
|
|
|
$j('#delayValue').text(delayString);
|
|
|
|
$j('#delay').removeClass('hidden');
|
|
|
|
$j('#level').removeClass('hidden');
|
2018-08-31 22:34:54 +08:00
|
|
|
streamCmdPause(false);
|
2018-01-30 00:25:46 +08:00
|
|
|
} else if ( streamStatus.delayed == true ) {
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#modeValue').text('Replay');
|
|
|
|
$j('#rateValue').text(streamStatus.rate);
|
|
|
|
$j('#rate').removeClass('hidden');
|
|
|
|
$j('#delayValue').text(delayString);
|
|
|
|
$j('#delay').removeClass('hidden');
|
|
|
|
$j('#level').removeClass('hidden');
|
2018-01-30 00:25:46 +08:00
|
|
|
if ( streamStatus.rate == 1 ) {
|
2018-08-31 22:34:54 +08:00
|
|
|
streamCmdPlay(false);
|
2018-01-30 00:25:46 +08:00
|
|
|
} else if ( streamStatus.rate > 0 ) {
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( streamStatus.rate < 1 ) {
|
2018-08-31 22:34:54 +08:00
|
|
|
streamCmdSlowFwd(false);
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2018-08-31 22:34:54 +08:00
|
|
|
streamCmdFastFwd(false);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2018-01-30 00:25:46 +08:00
|
|
|
} else {
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( streamStatus.rate > -1 ) {
|
2018-08-31 22:34:54 +08:00
|
|
|
streamCmdSlowRev(false);
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2018-08-31 22:34:54 +08:00
|
|
|
streamCmdFastRev(false);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2018-01-30 00:25:46 +08:00
|
|
|
} // rate
|
2016-09-27 23:51:55 +08:00
|
|
|
} else {
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#modeValue').text( 'Live' );
|
|
|
|
$j('#rate').addClass( 'hidden' );
|
|
|
|
$j('#delay').addClass( 'hidden' );
|
|
|
|
$j('#level').addClass( 'hidden' );
|
2019-09-27 04:13:49 +08:00
|
|
|
streamCmdPlay(false);
|
2018-01-30 00:25:46 +08:00
|
|
|
} // end if paused or delayed
|
|
|
|
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('zoomValue').text(streamStatus.zoom);
|
2019-09-27 04:13:49 +08:00
|
|
|
if ( streamStatus.zoom == '1.0' ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('zoomOutBtn', 'unavail');
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('zoomOutBtn', 'inactive');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2018-01-30 00:25:46 +08:00
|
|
|
|
|
|
|
if ( canEditMonitors ) {
|
|
|
|
if ( streamStatus.enabled ) {
|
2020-10-17 04:47:42 +08:00
|
|
|
enableAlmBtn.addClass('disabled');
|
|
|
|
enableAlmBtn.prop('title', disableAlarmsStr);
|
2018-01-30 00:25:46 +08:00
|
|
|
if ( streamStatus.forced ) {
|
2020-10-17 04:47:42 +08:00
|
|
|
forceAlmBtn.addClass('disabled');
|
|
|
|
forceAlmBtn.prop('title', cancelForcedAlarmStr);
|
2018-01-30 00:25:46 +08:00
|
|
|
} else {
|
2020-10-17 04:47:42 +08:00
|
|
|
forceAlmBtn.removeClass('disabled');
|
|
|
|
forceAlmBtn.prop('title', forceAlarmStr);
|
2018-01-30 00:25:46 +08:00
|
|
|
}
|
2020-10-17 04:47:42 +08:00
|
|
|
forceAlmBtn.prop('disabled', false);
|
2016-09-01 00:53:34 +08:00
|
|
|
} else {
|
2020-10-17 04:47:42 +08:00
|
|
|
enableAlmBtn.removeClass('disabled');
|
|
|
|
enableAlmBtn.prop('title', enableAlarmsStr);
|
|
|
|
forceAlmBtn.prop('disabled', true);
|
2016-09-01 00:53:34 +08:00
|
|
|
}
|
2020-10-17 04:47:42 +08:00
|
|
|
enableAlmBtn.prop('disabled', false);
|
2018-01-30 00:25:46 +08:00
|
|
|
} // end if canEditMonitors
|
|
|
|
|
|
|
|
if ( streamStatus.auth ) {
|
2020-01-08 06:08:57 +08:00
|
|
|
auth_hash = streamStatus.auth;
|
2018-01-30 00:25:46 +08:00
|
|
|
// Try to reload the image stream.
|
2020-12-08 00:22:54 +08:00
|
|
|
var streamImg = $j('#liveStream'+monitorId);
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( streamImg ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var oldSrc = streamImg.attr('src');
|
|
|
|
var newSrc = oldSrc.replace(/auth=\w+/i, 'auth='+streamStatus.auth);
|
2020-12-08 04:44:45 +08:00
|
|
|
streamImg.src = newSrc;
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-01-08 06:08:57 +08:00
|
|
|
streamCmdParms = streamCmdParms.replace(/auth=\w+/i, 'auth='+streamStatus.auth);
|
|
|
|
statusCmdParms = statusCmdParms.replace(/auth=\w+/i, 'auth='+streamStatus.auth);
|
2020-11-27 07:00:05 +08:00
|
|
|
table.bootstrapTable('refresh');
|
2020-01-08 06:08:57 +08:00
|
|
|
controlParms = controlParms.replace(/auth=\w+/i, 'auth='+streamStatus.auth);
|
2018-08-31 22:34:54 +08:00
|
|
|
} // end if have a new auth hash
|
2018-01-30 00:25:46 +08:00
|
|
|
} // end if respObj.status
|
2016-09-27 23:51:55 +08:00
|
|
|
} else {
|
2020-03-05 00:17:48 +08:00
|
|
|
checkStreamForErrors('getStreamCmdResponse', respObj);//log them
|
2016-09-27 23:51:55 +08:00
|
|
|
// Try to reload the image stream.
|
2018-08-31 22:34:54 +08:00
|
|
|
// If it's an auth error, we should reload the whole page.
|
|
|
|
window.location.reload();
|
|
|
|
if ( 0 ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var streamImg = $j('#liveStream'+monitorId);
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( streamImg ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var oldSrc = streamImg.attr('src');
|
|
|
|
var newSrc = oldSrc.replace(/rand=\d+/i, 'rand='+Math.floor((Math.random() * 1000000) ));
|
|
|
|
|
|
|
|
streamImg.src = newSrc;
|
2020-03-05 00:17:48 +08:00
|
|
|
console.log('Changing livestream src to ' + streamImg.src);
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2020-03-05 00:17:48 +08:00
|
|
|
console.log('Unable to find streamImg liveStream');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2018-08-31 22:34:54 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
var streamCmdTimeout = statusRefreshTimeout;
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( alarmState == STATE_ALARM || alarmState == STATE_ALERT ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
streamCmdTimeout = streamCmdTimeout/5;
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-05 00:17:48 +08:00
|
|
|
streamCmdTimer = streamCmdQuery.delay(streamCmdTimeout);
|
2017-05-19 01:50:56 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function streamCmdPause( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'active');
|
|
|
|
setButtonState('playBtn', 'inactive');
|
|
|
|
setButtonState('stopBtn', 'inactive');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('fastFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowRevBtn', 'inactive');
|
|
|
|
setButtonState('fastRevBtn', 'inactive');
|
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( action ) {
|
2020-03-05 00:17:48 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_PAUSE);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdPlay( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'inactive');
|
|
|
|
setButtonState('playBtn', 'active');
|
2016-09-27 23:51:55 +08:00
|
|
|
if ( streamStatus.delayed == true ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('stopBtn', 'inactive');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('fastFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowRevBtn', 'inactive');
|
|
|
|
setButtonState('fastRevBtn', 'inactive');
|
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
} else {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('stopBtn', 'unavail');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('fastFwdBtn', 'unavail');
|
|
|
|
setButtonState('slowFwdBtn', 'unavail');
|
|
|
|
setButtonState('slowRevBtn', 'unavail');
|
|
|
|
setButtonState('fastRevBtn', 'unavail');
|
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_PLAY);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdStop( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'inactive');
|
|
|
|
setButtonState('playBtn', 'unavail');
|
|
|
|
setButtonState('stopBtn', 'active');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('fastFwdBtn', 'unavail');
|
|
|
|
setButtonState('slowFwdBtn', 'unavail');
|
|
|
|
setButtonState('slowRevBtn', 'unavail');
|
|
|
|
setButtonState('fastRevBtn', 'unavail');
|
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_STOP);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('stopBtn', 'unavail');
|
|
|
|
setButtonState('playBtn', 'active');
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdFastFwd( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'inactive');
|
|
|
|
setButtonState('playBtn', 'inactive');
|
|
|
|
setButtonState('stopBtn', 'inactive');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('fastFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowRevBtn', 'inactive');
|
|
|
|
setButtonState('fastRevBtn', 'inactive');
|
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_FASTFWD);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdSlowFwd( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'inactive');
|
|
|
|
setButtonState('playBtn', 'inactive');
|
|
|
|
setButtonState('stopBtn', 'inactive');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('fastFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowFwdBtn', 'active');
|
|
|
|
setButtonState('slowRevBtn', 'inactive');
|
|
|
|
setButtonState('fastRevBtn', 'inactive');
|
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_SLOWFWD);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'active');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('slowFwdBtn', 'inactive');
|
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdSlowRev( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'inactive');
|
|
|
|
setButtonState('playBtn', 'inactive');
|
|
|
|
setButtonState('stopBtn', 'inactive');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('fastFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowRevBtn', 'active');
|
|
|
|
setButtonState('fastRevBtn', 'inactive');
|
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_SLOWREV);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'active');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('slowRevBtn', 'inactive');
|
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdFastRev( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
setButtonState('pauseBtn', 'inactive');
|
|
|
|
setButtonState('playBtn', 'inactive');
|
|
|
|
setButtonState('stopBtn', 'inactive');
|
2020-03-03 01:43:07 +08:00
|
|
|
if ( monitorStreamReplayBuffer ) {
|
|
|
|
setButtonState('fastFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowFwdBtn', 'inactive');
|
|
|
|
setButtonState('slowRevBtn', 'inactive');
|
|
|
|
setButtonState('fastRevBtn', 'inactive');
|
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( action ) {
|
2020-03-03 00:52:32 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_FASTREV);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdZoomIn( x, y ) {
|
2020-03-05 00:17:48 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_ZOOMIN+"&x="+x+"&y="+y);
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdZoomOut() {
|
2020-03-05 00:17:48 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_ZOOMOUT);
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdScale( scale ) {
|
2020-03-05 00:17:48 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_SCALE+"&scale="+scale);
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdPan( x, y ) {
|
2020-03-05 00:17:48 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_PAN+"&x="+x+"&y="+y);
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function streamCmdQuery() {
|
2020-03-05 00:17:48 +08:00
|
|
|
streamCmdReq.send(streamCmdParms+"&command="+CMD_QUERY);
|
2017-03-18 15:00:51 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2018-04-27 05:18:36 +08:00
|
|
|
if ( monitorType != 'WebSite' ) {
|
|
|
|
var statusCmdParms = "view=request&request=status&entity=monitor&id="+monitorId+"&element[]=Status&element[]=FrameRate";
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( auth_hash ) {
|
2018-04-27 05:18:36 +08:00
|
|
|
statusCmdParms += '&auth='+auth_hash;
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-03 03:38:36 +08:00
|
|
|
var statusCmdReq = new Request.JSON( {
|
|
|
|
url: monitorUrl,
|
|
|
|
method: 'get',
|
|
|
|
timeout: AJAX_TIMEOUT,
|
|
|
|
link: 'cancel',
|
|
|
|
onSuccess: getStatusCmdResponse
|
|
|
|
} );
|
2018-04-27 05:18:36 +08:00
|
|
|
var statusCmdTimer = null;
|
|
|
|
}
|
2008-07-16 23:47:33 +08:00
|
|
|
|
2018-08-31 22:34:54 +08:00
|
|
|
function getStatusCmdResponse(respObj, respText) {
|
2020-03-05 00:17:48 +08:00
|
|
|
watchdogOk('status');
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( statusCmdTimer ) {
|
2018-08-31 22:34:54 +08:00
|
|
|
statusCmdTimer = clearTimeout(statusCmdTimer);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
|
|
|
|
if ( respObj.result == 'Ok' ) {
|
2020-12-04 03:12:01 +08:00
|
|
|
$j('#fpsValue').text(respObj.monitor.FrameRate);
|
2018-08-31 22:34:54 +08:00
|
|
|
setAlarmState(respObj.monitor.Status);
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2020-03-05 00:17:48 +08:00
|
|
|
checkStreamForErrors('getStatusCmdResponse', respObj);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
|
|
|
|
var statusCmdTimeout = statusRefreshTimeout;
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( alarmState == STATE_ALARM || alarmState == STATE_ALERT ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
statusCmdTimeout = statusCmdTimeout/5;
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-05 00:17:48 +08:00
|
|
|
statusCmdTimer = statusCmdQuery.delay(statusCmdTimeout);
|
2017-03-18 15:00:51 +08:00
|
|
|
}
|
2008-07-16 23:47:33 +08:00
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function statusCmdQuery() {
|
2020-03-05 00:17:48 +08:00
|
|
|
statusCmdReq.send(statusCmdParms);
|
2017-03-18 15:00:51 +08:00
|
|
|
}
|
2008-07-16 23:47:33 +08:00
|
|
|
|
2018-04-27 05:18:36 +08:00
|
|
|
if ( monitorType != 'WebSite' ) {
|
2020-03-05 00:17:48 +08:00
|
|
|
var alarmCmdParms = 'view=request&request=alarm&id='+monitorId;
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( auth_hash ) {
|
2018-04-27 05:18:36 +08:00
|
|
|
alarmCmdParms += '&auth='+auth_hash;
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2018-04-27 05:18:36 +08:00
|
|
|
var alarmCmdReq = new Request.JSON( {
|
2018-10-19 08:33:50 +08:00
|
|
|
url: monitorUrl,
|
|
|
|
method: 'get',
|
2018-04-27 05:18:36 +08:00
|
|
|
timeout: AJAX_TIMEOUT,
|
|
|
|
link: 'cancel',
|
|
|
|
onSuccess: getAlarmCmdResponse,
|
|
|
|
onTimeout: streamCmdQuery
|
|
|
|
} );
|
|
|
|
var alarmCmdFirst = true;
|
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2020-03-05 00:17:48 +08:00
|
|
|
function getAlarmCmdResponse(respObj, respText) {
|
|
|
|
checkStreamForErrors('getAlarmCmdResponse', respObj);
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function cmdDisableAlarms() {
|
2018-08-31 22:34:54 +08:00
|
|
|
alarmCmdReq.send(alarmCmdParms+"&command=disableAlarms");
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function cmdEnableAlarms() {
|
2018-08-31 22:34:54 +08:00
|
|
|
alarmCmdReq.send(alarmCmdParms+"&command=enableAlarms");
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2020-10-17 04:47:42 +08:00
|
|
|
function cmdAlarm() {
|
|
|
|
if ( enableAlmBtn.hasClass('disabled') ) {
|
|
|
|
cmdEnableAlarms();
|
|
|
|
} else {
|
|
|
|
cmdDisableAlarms();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function cmdForceAlarm() {
|
2018-08-31 22:34:54 +08:00
|
|
|
alarmCmdReq.send(alarmCmdParms+"&command=forceAlarm");
|
2020-03-05 00:17:48 +08:00
|
|
|
if ( window.event ) {
|
2019-03-11 11:52:28 +08:00
|
|
|
window.event.preventDefault();
|
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function cmdCancelForcedAlarm() {
|
2018-08-31 22:34:54 +08:00
|
|
|
alarmCmdReq.send(alarmCmdParms+"&command=cancelForcedAlarm");
|
2020-03-05 00:17:48 +08:00
|
|
|
if ( window.event ) {
|
2019-03-11 11:52:28 +08:00
|
|
|
window.event.preventDefault();
|
|
|
|
}
|
2017-08-04 00:41:43 +08:00
|
|
|
return false;
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2020-10-17 04:47:42 +08:00
|
|
|
function cmdForce() {
|
|
|
|
if ( forceAlmBtn.hasClass('disabled') ) {
|
|
|
|
cmdCancelForcedAlarm();
|
|
|
|
} else {
|
|
|
|
cmdForceAlarm();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-27 05:18:36 +08:00
|
|
|
if ( monitorType != 'WebSite' ) {
|
2020-03-05 00:17:48 +08:00
|
|
|
var controlParms = 'view=request&request=control&id='+monitorId;
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( auth_hash ) {
|
2018-04-27 05:18:36 +08:00
|
|
|
controlParms += '&auth='+auth_hash;
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-03 03:38:36 +08:00
|
|
|
var controlReq = new Request.JSON( {
|
|
|
|
url: monitorUrl,
|
|
|
|
method: 'post',
|
|
|
|
timeout: AJAX_TIMEOUT,
|
|
|
|
link: 'cancel',
|
|
|
|
onSuccess: getControlResponse
|
|
|
|
} );
|
2018-04-27 05:18:36 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2020-03-05 00:17:48 +08:00
|
|
|
function getControlResponse(respObj, respText) {
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( !respObj ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
return;
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
//console.log( respText );
|
|
|
|
if ( respObj.result != 'Ok' ) {
|
2020-03-05 00:17:48 +08:00
|
|
|
alert("Control response was status = "+respObj.status+"\nmessage = "+respObj.message);
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 04:35:04 +08:00
|
|
|
function controlCmd(event) {
|
|
|
|
button = event.target;
|
2020-04-10 23:30:30 +08:00
|
|
|
control = button.getAttribute('value');
|
2020-05-13 20:01:04 +08:00
|
|
|
xtell = button.getAttribute('data-xtell');
|
|
|
|
ytell = button.getAttribute('data-ytell');
|
2020-04-10 23:30:30 +08:00
|
|
|
|
|
|
|
var locParms = '';
|
2016-09-27 23:51:55 +08:00
|
|
|
if ( event && (xtell || ytell) ) {
|
2018-01-12 02:14:11 +08:00
|
|
|
var target = event.target;
|
2020-12-08 00:22:54 +08:00
|
|
|
var offset = $j(target).offset();
|
|
|
|
var width = $j(target).width();
|
|
|
|
var height = $j(target).height();
|
2016-09-27 23:51:55 +08:00
|
|
|
|
2020-12-08 00:22:54 +08:00
|
|
|
var x = event.pageX - offset.left;
|
|
|
|
var y = event.pageY - offset.top;
|
2016-09-27 23:51:55 +08:00
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
if ( xtell ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var xge = parseInt((x*100)/width);
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( xtell == -1 ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
xge = 100 - xge;
|
2019-01-19 23:32:40 +08:00
|
|
|
} else if ( xtell == 2 ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
xge = 2*(50 - xge);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-04-10 23:30:30 +08:00
|
|
|
locParms += '&xge='+xge;
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
if ( ytell ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var yge = parseInt((y*100)/height);
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( ytell == -1 ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
yge = 100 - yge;
|
2019-01-19 23:32:40 +08:00
|
|
|
} else if ( ytell == 2 ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
yge = 2*(50 - yge);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-04-10 23:30:30 +08:00
|
|
|
locParms += '&yge='+yge;
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
2020-03-05 00:17:48 +08:00
|
|
|
controlReq.send(controlParms+"&control="+control+locParms);
|
|
|
|
if ( streamMode == 'single' ) {
|
|
|
|
fetchImage.pass($('imageFeed').getElement('img')).delay(1000);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function controlCmdImage( x, y ) {
|
|
|
|
var imageControlParms = controlParms;
|
2020-03-05 00:17:48 +08:00
|
|
|
imageControlParms += '&scale='+scale;
|
|
|
|
imageControlParms += '&control='+imageControlMode;
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
controlReq.send( imageControlParms+"&x="+x+"&y="+y );
|
2020-03-05 00:17:48 +08:00
|
|
|
if ( streamMode == 'single' ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
fetchImage.pass( $('imageFeed').getElement('img') ).delay( 1000 );
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2018-10-19 08:33:50 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function fetchImage( streamImage ) {
|
2019-01-18 23:00:55 +08:00
|
|
|
streamImage.src = streamImage.src.replace(/rand=\d+/i, 'rand='+Math.floor((Math.random() * 1000000) ));
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function handleClick( event ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var target = event.target;
|
|
|
|
var width = $j(target).width();
|
|
|
|
var height = $j(target).height();
|
2020-12-08 04:44:45 +08:00
|
|
|
|
2020-12-08 00:22:54 +08:00
|
|
|
var scaleX = parseInt(monitorWidth / width);
|
|
|
|
var scaleY = parseInt(monitorHeight / height);
|
2020-12-08 00:36:14 +08:00
|
|
|
var x = (event.page.x - target.getLeft()) * scaleX;
|
|
|
|
var y = (event.page.y - target.getTop()) * scaleY;
|
2016-09-27 23:51:55 +08:00
|
|
|
|
2020-03-05 00:17:48 +08:00
|
|
|
if ( showMode == 'events' || !imageControlMode ) {
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( event.shift ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
streamCmdPan( x, y );
|
2019-06-11 22:58:54 +08:00
|
|
|
} else if ( event.event.ctrlKey ) {
|
|
|
|
streamCmdZoomOut();
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2019-09-27 04:13:49 +08:00
|
|
|
streamCmdZoomIn(x, y);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
} else {
|
2019-09-27 04:13:49 +08:00
|
|
|
controlCmdImage(x, y);
|
2016-09-27 23:51:55 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function appletRefresh() {
|
|
|
|
if ( streamStatus && (!streamStatus.paused && !streamStatus.delayed) ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var streamImg = $j('#liveStream'+monitorId);
|
2020-03-20 23:06:01 +08:00
|
|
|
if ( streamImg ) {
|
2020-12-08 00:22:54 +08:00
|
|
|
var parent = streamImg.parent();
|
|
|
|
streamImg.remove();
|
|
|
|
streamImg.append( parent );
|
2020-03-20 23:06:01 +08:00
|
|
|
} else {
|
|
|
|
console.error("Nothing found for liveStream"+monitorId);
|
|
|
|
}
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( appletRefreshTime ) {
|
2016-09-27 23:51:55 +08:00
|
|
|
appletRefresh.delay( appletRefreshTime*1000 );
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
} else {
|
|
|
|
appletRefresh.delay( 15*1000 ); //if we are paused or delayed check every 15 seconds if we are live yet...
|
|
|
|
}
|
2009-05-26 02:03:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var watchdogInactive = {
|
2016-09-27 23:51:55 +08:00
|
|
|
'stream': false,
|
2020-11-27 07:00:05 +08:00
|
|
|
'status': false
|
2009-05-26 02:03:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
var watchdogFunctions = {
|
2016-09-27 23:51:55 +08:00
|
|
|
'stream': streamCmdQuery,
|
|
|
|
'status': statusCmdQuery,
|
2009-05-26 02:03:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
//Make sure the various refreshes are still taking effect
|
2016-09-27 23:51:55 +08:00
|
|
|
function watchdogCheck( type ) {
|
|
|
|
if ( watchdogInactive[type] ) {
|
2018-08-31 22:34:54 +08:00
|
|
|
console.log("Detected streamWatch of type: " + type + " stopped, restarting");
|
2016-09-27 23:51:55 +08:00
|
|
|
watchdogFunctions[type]();
|
2009-05-26 02:03:46 +08:00
|
|
|
watchdogInactive[type] = false;
|
2016-09-27 23:51:55 +08:00
|
|
|
} else {
|
|
|
|
watchdogInactive[type] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function watchdogOk( type ) {
|
|
|
|
watchdogInactive[type] = false;
|
|
|
|
}
|
|
|
|
|
2018-07-05 21:43:21 +08:00
|
|
|
function reloadWebSite() {
|
2018-08-31 22:34:54 +08:00
|
|
|
document.getElementById('imageFeed').innerHTML = document.getElementById('imageFeed').innerHTML;
|
2018-07-05 21:43:21 +08:00
|
|
|
}
|
|
|
|
|
2020-10-03 04:46:28 +08:00
|
|
|
function updatePresetLabels() {
|
2020-12-08 02:32:07 +08:00
|
|
|
var lblNdx = $j( '#ctrlPresetForm option:selected' ).val();
|
2020-10-03 04:46:28 +08:00
|
|
|
|
2020-12-08 02:32:07 +08:00
|
|
|
$j('#newLabel').val(labels[lblNdx]);
|
2020-10-03 04:46:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function getCtrlPresetModal() {
|
|
|
|
$j.getJSON(thisUrl + '?request=modal&modal=controlpreset&mid=' + monitorId)
|
|
|
|
.done(function(data) {
|
2020-10-15 04:58:39 +08:00
|
|
|
insertModalHtml('ctrlPresetModal', data.html);
|
2020-10-03 04:46:28 +08:00
|
|
|
updatePresetLabels();
|
2020-10-04 10:14:24 +08:00
|
|
|
// Manage the Preset Select box
|
|
|
|
$j('#preset').change(updatePresetLabels);
|
2020-10-03 05:10:32 +08:00
|
|
|
// Manage the Save button
|
|
|
|
$j('#cPresetSubmitModal').click(function(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
$j('#ctrlPresetForm').submit();
|
2020-10-03 10:11:54 +08:00
|
|
|
});
|
2020-10-03 04:46:28 +08:00
|
|
|
})
|
|
|
|
.fail(logAjaxFail);
|
|
|
|
}
|
|
|
|
|
2020-10-04 05:51:25 +08:00
|
|
|
function getSettingsModal() {
|
|
|
|
$j.getJSON(thisUrl + '?request=modal&modal=settings&mid=' + monitorId)
|
|
|
|
.done(function(data) {
|
2020-10-15 04:58:39 +08:00
|
|
|
insertModalHtml('settingsModal', data.html);
|
2020-10-04 05:51:25 +08:00
|
|
|
// Manage the Save button
|
|
|
|
$j('#settingsSubmitModal').click(function(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
$j('#settingsForm').submit();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.fail(logAjaxFail);
|
|
|
|
}
|
|
|
|
|
2020-11-27 07:00:05 +08:00
|
|
|
function processClicks(event, field, value, row, $element) {
|
|
|
|
if ( field == 'Delete' ) {
|
|
|
|
$j.getJSON(thisUrl + '?request=modal&modal=delconfirm')
|
2020-11-27 09:28:25 +08:00
|
|
|
.done(function(data) {
|
|
|
|
insertModalHtml('deleteConfirm', data.html);
|
|
|
|
manageDelConfirmModalBtns();
|
|
|
|
$j('#deleteConfirm').data('eid', row.Id.replace(/(<([^>]+)>)/gi, ''));
|
|
|
|
$j('#deleteConfirm').modal('show');
|
|
|
|
})
|
|
|
|
.fail(logAjaxFail);
|
2020-11-27 07:00:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Manage the DELETE CONFIRMATION modal button
|
|
|
|
function manageDelConfirmModalBtns() {
|
|
|
|
document.getElementById("delConfirmBtn").addEventListener("click", function onDelConfirmClick(evt) {
|
|
|
|
if ( ! canEditEvents ) {
|
|
|
|
enoperm();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var eid = $j('#deleteConfirm').data('eid');
|
|
|
|
|
|
|
|
evt.preventDefault();
|
|
|
|
$j.getJSON(thisUrl + '?request=events&task=delete&eids[]='+eid)
|
|
|
|
.done( function(data) {
|
|
|
|
table.bootstrapTable('refresh');
|
|
|
|
$j('#deleteConfirm').modal('hide');
|
|
|
|
})
|
|
|
|
.fail(logAjaxFail);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Manage the CANCEL modal button
|
|
|
|
document.getElementById("delCancelBtn").addEventListener("click", function onDelCancelClick(evt) {
|
|
|
|
$j('#deleteConfirm').modal('hide');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-09-27 23:51:55 +08:00
|
|
|
function initPage() {
|
2020-10-04 05:51:25 +08:00
|
|
|
if ( canViewControl ) {
|
|
|
|
// Load the PTZ Preset modal into the DOM
|
2020-10-04 06:00:20 +08:00
|
|
|
if ( monitorControllable ) getCtrlPresetModal();
|
2020-10-04 05:51:25 +08:00
|
|
|
// Load the settings modal into the DOM
|
2020-10-04 06:00:20 +08:00
|
|
|
if ( monitorType == "Local" ) getSettingsModal();
|
2020-10-04 05:51:25 +08:00
|
|
|
}
|
2020-10-03 04:46:28 +08:00
|
|
|
|
2018-04-27 05:18:36 +08:00
|
|
|
if ( monitorType != 'WebSite' ) {
|
2020-03-05 00:17:48 +08:00
|
|
|
if ( streamMode == 'single' ) {
|
2018-04-27 05:18:36 +08:00
|
|
|
statusCmdTimer = statusCmdQuery.delay( (Math.random()+0.1)*statusRefreshTimeout );
|
|
|
|
watchdogCheck.pass('status').periodical(statusRefreshTimeout*2);
|
|
|
|
} else {
|
|
|
|
streamCmdTimer = streamCmdQuery.delay( (Math.random()+0.1)*statusRefreshTimeout );
|
|
|
|
watchdogCheck.pass('stream').periodical(statusRefreshTimeout*2);
|
|
|
|
}
|
2016-09-27 23:51:55 +08:00
|
|
|
|
2020-03-20 23:06:01 +08:00
|
|
|
if ( canStreamNative || (streamMode == 'single') ) {
|
2018-04-27 05:18:36 +08:00
|
|
|
var streamImg = $('imageFeed').getElement('img');
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( !streamImg ) {
|
2018-04-27 05:18:36 +08:00
|
|
|
streamImg = $('imageFeed').getElement('object');
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-03-20 23:06:01 +08:00
|
|
|
if ( !streamImg ) {
|
|
|
|
console.error('No streamImg found for imageFeed');
|
2019-01-19 23:32:40 +08:00
|
|
|
} else {
|
2020-03-20 23:06:01 +08:00
|
|
|
if ( streamMode == 'single' ) {
|
|
|
|
streamImg.addEvent('click', fetchImage.pass(streamImg));
|
|
|
|
fetchImage.pass(streamImg).periodical(imageRefreshTimeout);
|
|
|
|
} else {
|
|
|
|
streamImg.addEvent('click', function(event) {
|
|
|
|
handleClick(event);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} // end if have streamImg
|
|
|
|
} // streamMode native or single
|
2018-04-27 05:18:36 +08:00
|
|
|
|
2019-01-19 23:32:40 +08:00
|
|
|
if ( refreshApplet && appletRefreshTime ) {
|
2018-08-31 22:34:54 +08:00
|
|
|
appletRefresh.delay(appletRefreshTime*1000);
|
2019-01-19 23:32:40 +08:00
|
|
|
}
|
2020-06-02 23:25:07 +08:00
|
|
|
if ( scale == '0' || scale == 'auto' ) changeScale();
|
2018-08-31 22:34:54 +08:00
|
|
|
if ( window.history.length == 1 ) {
|
2018-04-27 05:18:36 +08:00
|
|
|
$j('#closeControl').html('');
|
|
|
|
}
|
2019-09-20 22:44:38 +08:00
|
|
|
document.querySelectorAll('select[name="scale"]').forEach(function(el) {
|
2019-09-20 02:57:17 +08:00
|
|
|
el.onchange = window['changeScale'];
|
|
|
|
});
|
2018-04-27 05:18:36 +08:00
|
|
|
} else if ( monitorRefresh > 0 ) {
|
2019-01-19 23:32:40 +08:00
|
|
|
setInterval(reloadWebSite, monitorRefresh*1000);
|
2017-12-13 23:20:02 +08:00
|
|
|
}
|
2020-11-27 07:00:05 +08:00
|
|
|
|
2020-10-16 21:08:23 +08:00
|
|
|
// Manage the BACK button
|
|
|
|
document.getElementById("backBtn").addEventListener("click", function onBackClick(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
window.history.back();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Don't enable the back button if there is no previous zm page to go back to
|
|
|
|
backBtn.prop('disabled', !document.referrer.length);
|
|
|
|
|
|
|
|
// Manage the REFRESH Button
|
|
|
|
document.getElementById("refreshBtn").addEventListener("click", function onRefreshClick(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
window.location.reload(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Manage the SETTINGS button
|
|
|
|
document.getElementById("settingsBtn").addEventListener("click", function onSettingsClick(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
$j('#settingsModal').modal('show');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Only enable the settings button for local cameras
|
2020-11-01 22:05:53 +08:00
|
|
|
settingsBtn.prop('disabled', !canViewControl);
|
|
|
|
if ( monitorType != 'Local' ) settingsBtn.hide();
|
2020-11-27 07:00:05 +08:00
|
|
|
|
|
|
|
// Init the bootstrap-table
|
|
|
|
if ( monitorType != 'WebSite' ) table.bootstrapTable({icons: icons});
|
|
|
|
|
|
|
|
// Update table rows each time after new data is loaded
|
|
|
|
table.on('post-body.bs.table', function(data) {
|
|
|
|
$j('#eventList tr:contains("New Event")').addClass('recent');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Take appropriate action when the user clicks on a cell
|
|
|
|
table.on('click-cell.bs.table', processClicks);
|
2020-12-03 09:44:12 +08:00
|
|
|
|
|
|
|
// Some toolbar events break the thumbnail animation, so re-init eventlistener
|
|
|
|
table.on('all.bs.table', initThumbAnimation);
|
|
|
|
|
|
|
|
// Update table links each time after new data is loaded
|
|
|
|
table.on('post-body.bs.table', function(data) {
|
|
|
|
var thumb_ndx = $j('#eventList tr th').filter(function() {
|
|
|
|
return $j(this).text().trim() == 'Thumbnail';
|
|
|
|
}).index();
|
2020-12-05 04:35:39 +08:00
|
|
|
table.find("tr td:nth-child(" + (thumb_ndx+1) + ")").addClass('colThumbnail');
|
2020-12-03 09:44:12 +08:00
|
|
|
});
|
2020-10-23 21:34:35 +08:00
|
|
|
} // initPage
|
2008-07-14 21:54:50 +08:00
|
|
|
|
|
|
|
// Kick everything off
|
2020-10-03 04:46:28 +08:00
|
|
|
$j(document).ready(initPage);
|