2015-12-16 03:08:34 +08:00
|
|
|
<?php
|
|
|
|
//
|
2020-03-04 23:46:32 +08:00
|
|
|
// ZoneMinder web user view file
|
|
|
|
// Copyright (C) 2020 ZoneMinder LLC
|
2015-12-16 03:08:34 +08:00
|
|
|
//
|
|
|
|
// 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
|
2018-11-16 09:53:45 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2015-12-16 03:08:34 +08:00
|
|
|
//
|
|
|
|
|
2019-05-31 23:00:30 +08:00
|
|
|
if ( !canEdit('System') ) {
|
2018-01-14 04:15:14 +08:00
|
|
|
$view = 'error';
|
|
|
|
return;
|
2015-12-16 03:08:34 +08:00
|
|
|
}
|
|
|
|
|
2020-03-31 20:53:32 +08:00
|
|
|
require_once('includes/Server.php');
|
|
|
|
require_once('includes/Storage.php');
|
|
|
|
|
2015-12-16 03:08:34 +08:00
|
|
|
if ( $_REQUEST['id'] ) {
|
2020-03-04 23:46:32 +08:00
|
|
|
if ( !($newStorage = ZM\Storage::find_one(array('Id'=>$_REQUEST['id'])) ) ) {
|
2018-01-14 04:15:14 +08:00
|
|
|
$view = 'error';
|
|
|
|
return;
|
|
|
|
}
|
2015-12-16 03:08:34 +08:00
|
|
|
} else {
|
2020-03-31 20:54:47 +08:00
|
|
|
$newStorage = new ZM\Storage();
|
2020-03-04 23:46:32 +08:00
|
|
|
$newStorage->Name(translate('NewStorage'));
|
2015-12-16 03:08:34 +08:00
|
|
|
}
|
|
|
|
|
2017-10-16 23:31:05 +08:00
|
|
|
$type_options = array( 'local' => translate('Local'), 's3fs' => translate('s3fs') );
|
2017-12-19 01:52:26 +08:00
|
|
|
$scheme_options = array(
|
|
|
|
'Deep' => translate('Deep'),
|
|
|
|
'Medium' => translate('Medium'),
|
|
|
|
'Shallow' => translate('Shallow'),
|
|
|
|
);
|
2017-10-16 23:31:05 +08:00
|
|
|
|
2019-02-22 22:19:07 +08:00
|
|
|
$servers = ZM\Server::find( null, array('order'=>'lower(Name)') );
|
2017-12-23 03:39:43 +08:00
|
|
|
$ServersById = array();
|
|
|
|
foreach ( $servers as $S ) {
|
|
|
|
$ServersById[$S->Id()] = $S;
|
|
|
|
}
|
2015-12-16 03:08:34 +08:00
|
|
|
$focusWindow = true;
|
|
|
|
|
2020-03-04 23:46:32 +08:00
|
|
|
xhtmlHeaders(__FILE__, translate('Storage').' - '.$newStorage->Name());
|
2015-12-16 03:08:34 +08:00
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header">
|
2020-03-04 23:46:32 +08:00
|
|
|
<h2><?php echo translate('Storage').' - '.$newStorage->Name() ?></h2>
|
2015-12-16 03:08:34 +08:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
2019-02-10 13:39:19 +08:00
|
|
|
<form name="contentForm" method="post" action="?" class="validateFormOnSubmit">
|
2015-12-16 03:08:34 +08:00
|
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
|
|
|
<input type="hidden" name="object" value="storage"/>
|
|
|
|
<input type="hidden" name="id" value="<?php echo validHtmlStr($_REQUEST['id']) ?>"/>
|
2017-10-16 23:31:05 +08:00
|
|
|
<table id="contentTable" class="major">
|
2015-12-16 03:08:34 +08:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
2017-01-31 10:16:21 +08:00
|
|
|
<th scope="row"><?php echo translate('Name') ?></th>
|
2020-03-04 23:46:32 +08:00
|
|
|
<td><input type="text" name="newStorage[Name]" value="<?php echo $newStorage->Name() ?>"/></td>
|
2015-12-16 03:08:34 +08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-01-31 10:16:21 +08:00
|
|
|
<th scope="row"><?php echo translate('Path') ?></th>
|
2020-03-04 23:46:32 +08:00
|
|
|
<td><input type="text" name="newStorage[Path]" value="<?php echo $newStorage->Path() ?>"/></td>
|
2015-12-16 03:08:34 +08:00
|
|
|
</tr>
|
2017-12-23 03:39:43 +08:00
|
|
|
<tr>
|
2018-03-28 23:23:36 +08:00
|
|
|
<th scope="row"><?php echo translate('Url') ?></th>
|
2020-03-04 23:46:32 +08:00
|
|
|
<td><input type="text" name="newStorage[Url]" value="<?php echo $newStorage->Url() ?>"/></td>
|
2018-03-28 23:23:36 +08:00
|
|
|
</tr>
|
2017-12-23 03:39:43 +08:00
|
|
|
<tr>
|
|
|
|
<th scope="row"><?php echo translate('Server') ?></th>
|
2020-03-04 23:46:32 +08:00
|
|
|
<td><?php echo htmlSelect('newStorage[ServerId]', array(''=>'Remote / No Specific Server') + $ServersById, $newStorage->ServerId()); ?></td>
|
2017-12-23 03:39:43 +08:00
|
|
|
</tr>
|
2017-10-16 23:31:05 +08:00
|
|
|
<tr>
|
|
|
|
<th scope="row"><?php echo translate('Type') ?></th>
|
2020-03-04 23:46:32 +08:00
|
|
|
<td><?php echo htmlSelect('newStorage[Type]', $type_options, $newStorage->Type()); ?></td>
|
2017-10-16 23:31:05 +08:00
|
|
|
</tr>
|
2017-12-19 01:52:26 +08:00
|
|
|
<tr>
|
|
|
|
<th scope="row"><?php echo translate('StorageScheme') ?></th>
|
2020-03-04 23:46:32 +08:00
|
|
|
<td><?php echo htmlSelect('newStorage[Scheme]', $scheme_options, $newStorage->Scheme()); ?></td>
|
2017-12-19 01:52:26 +08:00
|
|
|
</tr>
|
2018-04-03 01:43:07 +08:00
|
|
|
<tr>
|
|
|
|
<th scope="row"><?php echo translate('StorageDoDelete') ?></th>
|
|
|
|
<td>
|
2020-03-04 23:46:32 +08:00
|
|
|
<input type="radio" name="newStorage[DoDelete]" value="1"<?php echo $newStorage->DoDelete() ? 'checked="checked"' : '' ?>/>Yes
|
|
|
|
<input type="radio" name="newStorage[DoDelete]" value="0"<?php echo $newStorage->DoDelete() ? '' : 'checked="checked"' ?>/>No
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row"><?php echo translate('Enabled') ?></th>
|
|
|
|
<td>
|
|
|
|
<input type="radio" name="newStorage[Enabled]" value="1"<?php echo $newStorage->Enabled() ? 'checked="checked"' : '' ?>/>Yes
|
|
|
|
<input type="radio" name="newStorage[Enabled]" value="0"<?php echo $newStorage->Enabled() ? '' : 'checked="checked"' ?>/>No
|
2018-04-03 01:43:07 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
2015-12-16 03:08:34 +08:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div id="contentButtons">
|
2017-12-19 01:52:26 +08:00
|
|
|
<button name="action" type="submit" value="Save"><?php echo translate('Save') ?></button>
|
2019-01-16 22:59:58 +08:00
|
|
|
<button type="button" data-on-click="closeWindow"><?php echo translate('Cancel') ?></button>
|
2015-12-16 03:08:34 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|