zoneminder/web/skins/classic/views/download.php

153 lines
5.2 KiB
PHP
Raw Normal View History

<?php
//
// ZoneMinder web export view file, $Date$, $Revision$
// Copyright (C) 2001-2008 Philip Coombes
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
2017-12-05 00:05:50 +08:00
if ( !canView('Events') ) {
$view = 'error';
return;
}
2017-12-12 06:33:17 +08:00
$total_size = 0;
2019-03-21 02:25:12 +08:00
if ( isset($_SESSION['montageReviewFilter']) and !isset($_REQUEST['eids']) ) {
# Handles montageReview filter
$eventsSql = 'SELECT E.Id, E.DiskSpace FROM Events AS E WHERE 1';
$eventsSql .= $_SESSION['montageReviewFilter']['sql'];
$results = dbQuery($eventsSql);
$eids = [];
while ( $event_row = dbFetchNext( $results ) ) {
2019-03-21 02:51:59 +08:00
array_push($eids, $event_row['Id']);
2017-12-12 06:33:17 +08:00
$total_size += $event_row['DiskSpace'];
}
$_REQUEST['eids'] = $eids;
2017-12-12 06:33:17 +08:00
if ( ! count($eids) ) {
2019-03-21 02:25:12 +08:00
ZM\Error("No events found for download using $eventsSql");
2017-12-12 06:33:17 +08:00
}
#session_start();
#unset($_SESSION['montageReviewFilter']);
#session_write_close();
#} else {
#Logger::Debug("NO montageReviewFilter");
}
$exportFormat = '';
2019-03-21 02:25:12 +08:00
if ( isset($_REQUEST['exportFormat']) ) {
if ( !in_array($_REQUEST['exportFormat'], array('zip', 'tar')) ) {
ZM\Error('Invalid exportFormat: '.$_REQUEST['exportFormat']);
} else {
$exportFormat = $_REQUEST['exportFormat'];
}
}
2019-03-21 02:25:12 +08:00
if ( !empty($_REQUEST['eid']) ) {
2019-03-21 02:51:59 +08:00
$Event = new ZM\Event($_REQUEST['eid']);
2019-03-21 02:25:12 +08:00
if ( !$Event->Id ) {
Error('Invalid event id');
}
}
$focusWindow = true;
$connkey = isset($_REQUEST['connkey']) ? $_REQUEST['connkey'] : generateConnKey();
2019-03-21 02:25:12 +08:00
xhtmlHeaders(__FILE__, translate('Download'));
?>
<body>
<div id="page">
<div id="header">
<div id="headerButtons">
<a href="#" data-on-click="closeWindow"><?php echo translate('Close') ?></a>
</div>
<h2><?php echo translate('Download') ?></h2>
</div>
<div id="content">
<form name="contentForm" id="contentForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<input type="hidden" name="connkey" value="<?php echo $connkey; ?>"/>
<?php
2017-12-05 00:05:50 +08:00
if ( !empty($_REQUEST['eid']) ) {
?>
<input type="hidden" name="id" value="<?php echo validInt($_REQUEST['eid']) ?>"/>
2017-12-12 06:33:17 +08:00
<?php
2019-03-21 02:25:12 +08:00
$Event = new ZM\Event($_REQUEST['eid']);
echo 'Downloading event ' . $Event->Id . '. Resulting file should be approximately ' . human_filesize( $Event->DiskSpace() );
2017-12-05 00:05:50 +08:00
} else if ( !empty($_REQUEST['eids']) ) {
$total_size = 0;
2017-12-05 00:05:50 +08:00
foreach ( $_REQUEST['eids'] as $eid ) {
if ( ! validInt($eid) ) {
2019-03-21 02:25:12 +08:00
ZM\Warning("Invalid event id in eids[] $eid");
continue;
}
2019-03-21 02:51:59 +08:00
$Event = new ZM\Event($eid);
$total_size += $Event->DiskSpace();
?>
<input type="hidden" name="eids[]" value="<?php echo validInt($eid) ?>"/>
<?php
}
unset($eid);
2017-12-12 06:33:17 +08:00
echo "Downloading " . count($_REQUEST['eids']) . ' events. Resulting file should be approximately ' . human_filesize($total_size);
} else {
echo '<div class="warning">There are no events found. Resulting download will be empty.</div>';
}
?>
2019-03-21 02:51:59 +08:00
<table id="contentTable" class="minor">
<tbody>
<tr>
<td><input type="hidden" name="exportVideo" value="1"/></td>
</tr>
<tr>
<th scope="row"><?php echo translate('ExportFormat') ?></th>
<td>
<input type="radio" id="exportFormatTar" name="exportFormat" value="tar"/>
2017-12-05 00:05:50 +08:00
<label for="exportFormatTar"><?php echo translate('ExportFormatTar') ?></label>
<input type="radio" id="exportFormatZip" name="exportFormat" value="zip" checked="checked"/>
2017-12-05 00:05:50 +08:00
<label for="exportFormatZip"><?php echo translate('ExportFormatZip') ?></label>
</td>
</tr>
</tbody>
</table>
<button type="button" id="exportButton" name="exportButton" value="GenerateDownload">
<!--data-on-click-this="exportEvent">-->
<?php echo translate('GenerateDownload') ?>
</button>
</form>
</div>
<?php
2017-12-05 00:05:50 +08:00
if ( isset($_REQUEST['generated']) ) {
?>
2017-12-05 00:05:50 +08:00
<h2 id="exportProgress" class="<?php echo $_REQUEST['generated']?'infoText':'errorText' ?>">
<span id="exportProgressText"><?php echo $_REQUEST['generated']?translate('ExportSucceeded'):translate('ExportFailed') ?></span>
<span id="exportProgressTicker"></span>
</h2>
<?php
2017-12-05 00:05:50 +08:00
} else {
?>
2017-12-05 00:05:50 +08:00
<h2 id="exportProgress" class="hidden warnText">
<span id="exportProgressText"><?php echo translate('Exporting') ?></span>
<span id="exportProgressTicker"></span>
</h2>
<?php
}
2017-12-05 00:05:50 +08:00
if ( !empty($_REQUEST['generated']) ) {
?>
<h3 id="downloadLink"><a href="?view=archive&amp;type=<?php echo $exportFormat; ?>"><?php echo translate('Download') ?></a></h3>
<?php
}
?>
</div>
</body>
</html>