mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 23:20:35 -06:00
319 lines
13 KiB
Plaintext
319 lines
13 KiB
Plaintext
Menu="Disk Share Flash"
|
|
Title="SMB Security Settings"
|
|
Tag="windows"
|
|
Cond="(($var['shareSMBEnabled']!='no') && (isset($name)?array_key_exists($name,$sec):0))"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2023, Lime Technology
|
|
* Copyright 2012-2023, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<?
|
|
require_once "$docroot/webGui/include/InputSecurity.php";
|
|
|
|
$width = [123,300];
|
|
?>
|
|
:smb_security_help:
|
|
|
|
<div class="clone1">
|
|
<span class="clone">_(Read settings from)_</span><i class="fa fa-arrow-left fa-fw"></i>
|
|
<span class="wrap"><select name="readsmb" class="clone" onchange="toggleButton('readsmb',false)">
|
|
<option disabled selected>_(select)_...</option>
|
|
<?
|
|
if (isset($disks[$name])) {
|
|
foreach (array_filter($disks,'clone_list') as $list) if ($list['name']!=$name) echo mk_option("", $list['name'], _(my_disk($list['name']),3));
|
|
} else {
|
|
foreach ($shares as $list) if ($list['name']!=$name) echo mk_option("", $list['name'], compress($list['name']));
|
|
}
|
|
?>
|
|
</select></span><input type="button" id="readsmb" value="_(Read)_" class="clone" onclick="readSMB()" disabled>
|
|
</div>
|
|
<div class="clone2">
|
|
<span class="clone">_(Write settings to)_</span><i class="fa fa-arrow-right fa-fw"></i>
|
|
<span class="wrap"><select id="smb1" name="writesmb" multiple="multiple" style="display:none" onchange="toggleButton('writesmb',this.id)">
|
|
<?
|
|
$rows = [];
|
|
if (isset($disks[$name])) {
|
|
foreach (array_filter($disks,'clone_list') as $list) if ($list['name']!=$name) $rows[] = mk_option("", $list['name'], _(my_disk($list['name']),3));
|
|
} else {
|
|
foreach ($shares as $list) if ($list['name']!=$name) $rows[] = mk_option("", $list['name'], compress($list['name']));
|
|
}
|
|
if ($rows) echo "<option>("._('All').")</option>";
|
|
foreach ($rows as $row) echo $row;
|
|
?>
|
|
</select></span><input type="button" id="writesmb" value="_(Write)_" class="clone" onclick="writeSMB()" disabled>
|
|
</div>
|
|
|
|
<form markdown="1" name="smb_edit" method="POST" action="/update.htm" target="progressFrame" onchange="toggleButton('writesmb',true);$('#smb1').dropdownchecklist('disable')">
|
|
<input type="hidden" name="shareName" value="<?=htmlspecialchars($name)?>">
|
|
|
|
_(Share name)_:
|
|
: <?=htmlspecialchars($name)?>
|
|
|
|
<?if (($name=='flash')||($var['enableFruit']!='yes')):?>
|
|
_(Export)_:
|
|
: <select name="shareExport">
|
|
<?=mk_option($sec[$name]['export'], "-", _('No'))?>
|
|
<?=mk_option($sec[$name]['export'], "e", _('Yes'))?>
|
|
<?=mk_option($sec[$name]['export'], "eh", _('Yes (hidden)'))?>
|
|
</select>
|
|
|
|
:smb_export_help:
|
|
|
|
<input type="hidden" name="shareVolsizelimit" value="">
|
|
<?else:?>
|
|
_(Export)_:
|
|
: <select name="shareExport" onchange="checkShareSettingsSMB(this.form)">
|
|
<?=mk_option($sec[$name]['export'], "-", _('No'))?>
|
|
<?=mk_option($sec[$name]['export'], "e", _('Yes'))?>
|
|
<?=mk_option($sec[$name]['export'], "eh", _('Yes (hidden)'))?>
|
|
<?=mk_option($sec[$name]['export'], "et", _('Yes/Time Machine'))?>
|
|
<?=mk_option($sec[$name]['export'], "eth", _('Yes/Time Machine (hidden)'))?>
|
|
</select>
|
|
|
|
:smb_export_help:
|
|
|
|
_(Time Machine volume size limit)_:
|
|
: <input type="text" name="shareVolsizelimit" maxlen="20" value="<?=$sec[$name]['volsizelimit']?>"> MB
|
|
|
|
:smb_time_machine_volume_help:
|
|
|
|
<?endif;?>
|
|
<?if ($name!='flash'):?>
|
|
_(Case-sensitive names)_:
|
|
: <select name="shareCaseSensitive">
|
|
<?=mk_option($sec[$name]['caseSensitive'], "auto", _("Auto"))?>
|
|
<?=mk_option($sec[$name]['caseSensitive'], "yes", _("Yes"))?>
|
|
<?=mk_option($sec[$name]['caseSensitive'], "forced", _("Force lower"))?>
|
|
</select>
|
|
|
|
:smb_case_sensitive_names_help:
|
|
|
|
<?endif;?>
|
|
_(Security)_:
|
|
: <select name="shareSecurity">
|
|
<?=mk_option($sec[$name]['security'], "public", _('Public'))?>
|
|
<?=mk_option($sec[$name]['security'], "secure", _('Secure'))?>
|
|
<?=mk_option($sec[$name]['security'], "private", _('Private'))?>
|
|
</select>
|
|
|
|
:smb_security_modes_help:
|
|
|
|
|
|
: <input type="submit" name="changeShareSecurity" value="_(Apply)_" disabled><input type="button" value="_(Done)_" onclick="done()">
|
|
</form>
|
|
|
|
<?if ($sec[$name]['security']=='secure'):?>
|
|
<div class="title nocontrol"><dt>_(SMB)_ _(User Access)_</dt><i>_(Guests have **read-only** access)_.</i></div>
|
|
|
|
:smb_secure_access_help:
|
|
|
|
<div class="clone1">
|
|
<span class="clone">_(Read settings from)_</span><i class="fa fa-arrow-left fa-fw"></i>
|
|
<span class="wrap"><select name="readusersmb" class="clone" onchange="toggleButton('readusersmb',false)">
|
|
<option disabled selected>_(select)_...</option>
|
|
<?
|
|
if (isset($disks[$name])) {
|
|
foreach (array_filter($disks,'clone_list') as $list) if ($list['name']!=$name && $sec[$list['name']]['security']=='secure') echo mk_option("", $list['name'], _(my_disk($list['name']),3));
|
|
} else {
|
|
foreach ($shares as $list) if ($list['name']!=$name && $sec[$list['name']]['security']=='secure') echo mk_option("", $list['name'], compress($list['name']));
|
|
}
|
|
?>
|
|
</select></span><input type="button" id="readusersmb" value="_(Read)_" class="clone" onclick="readUserSMB()" disabled>
|
|
</div>
|
|
<div class="clone2">
|
|
<span class="clone">_(Write settings to)_</span><i class="fa fa-arrow-right fa-fw"></i>
|
|
<span class="wrap"><select id="smb2" name="writeusersmb" multiple="multiple" style="display:none" onchange="toggleButton('writeusersmb',this.id)">
|
|
<?
|
|
$rows = [];
|
|
if (isset($disks[$name])) {
|
|
foreach (array_filter($disks,'clone_list') as $list) if ($list['name']!=$name && $sec[$list['name']]['security']=='secure') $rows[] = mk_option("", $list['name'], _(my_disk($list['name']),3));
|
|
} else {
|
|
foreach ($shares as $list) if ($list['name']!=$name && $sec[$list['name']]['security']=='secure') $rows[] = mk_option("", $list['name'], compress($list['name']));
|
|
}
|
|
if ($rows) echo "<option>("._('All').")</option>";
|
|
foreach ($rows as $row) echo $row;
|
|
?>
|
|
</select></span><input type="button" id="writeusersmb" value="_(Write)_" class="clone" onclick="writeUserSMB()" disabled>
|
|
</div>
|
|
|
|
<form markdown="1" name="smb_user_edit" method="POST" action="/update.htm" target="progressFrame" onchange="toggleButton('writeusersmb',true);$('#smb2').dropdownchecklist('disable')">
|
|
<input type="hidden" name="shareName" value="<?=htmlspecialchars($name)?>">
|
|
<?input_secure_users($sec)?>
|
|
|
|
|
|
: <input type="submit" name="changeShareAccess" value="_(Apply)_" disabled><input type="button" value="_(Done)_" onclick="done()">
|
|
</form>
|
|
|
|
<?elseif ($sec[$name]['security']=='private'):?>
|
|
<div class="title nocontrol"><dt>_(SMB)_ _(User Access)_</dt><i>_(Guests have **no** access)_.</i></div>
|
|
|
|
:smb_private_access_help:
|
|
|
|
<div class="clone1">
|
|
<span class="clone">_(Read settings from)_</span><i class="fa fa-arrow-left fa-fw"></i>
|
|
<span class="wrap"><select name="readusersmb" class="clone" onchange="toggleButton('readusersmb',false)">
|
|
<option disabled selected>_(select)_...</option>
|
|
<?
|
|
if (isset($disks[$name])) {
|
|
foreach (array_filter($disks,'clone_list') as $list) if ($list['name']!=$name && $sec[$list['name']]['security']=='private') echo mk_option("", $list['name'], _(my_disk($list['name']),3));
|
|
} else {
|
|
foreach ($shares as $list) if ($list['name']!=$name && $sec[$list['name']]['security']=='private') echo mk_option("", $list['name'], compress($list['name']));
|
|
}
|
|
?>
|
|
</select></span><input type="button" id="readusersmb" value="_(Read)_" class="clone" onclick="readUserSMB()" disabled>
|
|
</div>
|
|
<div class="clone2">
|
|
<span class="clone">_(Write settings to)_</span><i class="fa fa-arrow-right fa-fw"></i>
|
|
<span class="wrap"><select id="smb2" name="writeusersmb" multiple="multiple" style="display:none" onchange="toggleButton('writeusersmb',this.id)">
|
|
<?
|
|
$rows = [];
|
|
if (isset($disks[$name])) {
|
|
foreach (array_filter($disks,'clone_list') as $list) if ($list['name']!=$name && $sec[$list['name']]['security']=='private') $rows[] = mk_option("", $list['name'], _(my_disk($list['name']),3));
|
|
} else {
|
|
foreach ($shares as $list) if ($list['name']!=$name && $sec[$list['name']]['security']=='private') $rows[] = mk_option("", $list['name'], compress($list['name']));
|
|
}
|
|
if ($rows) echo "<option>("._('All').")</option>";
|
|
foreach ($rows as $row) echo $row;
|
|
?>
|
|
</select></span><input type="button" id="writeusersmb" value="_(Write)_" class="clone" onclick="writeUserSMB()" disabled>
|
|
</div>
|
|
|
|
<form markdown="1" name="smb_user_edit" method="POST" action="/update.htm" target="progressFrame" onchange="toggleButton('writeusersmb',true);$('#smb2').dropdownchecklist('disable')">
|
|
<input type="hidden" name="shareName" value="<?=htmlspecialchars($name)?>">
|
|
<?input_private_users($sec)?>
|
|
|
|
|
|
: <input type="submit" name="changeShareAccess" value="_(Apply)_" disabled><input type="button" value="_(Done)_" onclick="done()">
|
|
</form>
|
|
<?endif;?>
|
|
|
|
<script>
|
|
$(function() {
|
|
checkShareSettingsSMB(document.smb_edit);
|
|
initDropdownSMB(false);
|
|
<?if ($tabbed):?>
|
|
$('#tab'+$('input[name$="tabs"]').length).bind({click:function(){initDropdownSMB(true);}});
|
|
<?endif;?>
|
|
<?if (count($users)==1):?>
|
|
toggleButton('readusersmb',true);
|
|
toggleButton('writeusersmb',true);
|
|
$('#smb2').dropdownchecklist('disable');
|
|
<?endif;?>
|
|
});
|
|
function checkShareSettingsSMB(form) {
|
|
form.shareVolsizelimit.disabled = (form.shareExport.value.indexOf("et") == -1);
|
|
}
|
|
function initDropdownSMB(reset) {
|
|
if (reset) {
|
|
$('#smb1').dropdownchecklist('destroy');
|
|
$('#smb2').dropdownchecklist('destroy');
|
|
}
|
|
$("#smb1").dropdownchecklist({firstItemChecksAll:true, emptyText:"_(select)_...", width:<?=$width[0]?>, explicitClose:"..._(close)_"});
|
|
$("#smb2").dropdownchecklist({firstItemChecksAll:true, emptyText:"_(select)_...", width:<?=$width[0]?>, explicitClose:"..._(close)_"});
|
|
}
|
|
function readSMB() {
|
|
var form = document.smb_edit;
|
|
var name = $('select[name="readsmb"]').val();
|
|
$.get('/webGui/include/ProtocolData.php',{protocol:'smb',name:name},function(json) {
|
|
var data = $.parseJSON(json);
|
|
form.shareExport.value = data.export;
|
|
form.shareFruit.value = data.fruit;
|
|
form.shareSecurity.value = data.security;
|
|
});
|
|
$(form).find('select').trigger('change');
|
|
}
|
|
function writeSMB(data,n,i) {
|
|
if (data) {
|
|
if (n<i) {
|
|
$.post('/update.htm',data[n], function(){setTimeout(function(){writeSMB(data,++n,i);},3000);});
|
|
} else {
|
|
toggleButton('writesmb',false);
|
|
$('div.spinner.fixed').hide();
|
|
}
|
|
} else {
|
|
var data = [], i = 0;
|
|
$('select#smb1 option').map(function() {
|
|
if ($(this).prop('selected')==true && $(this).val()!='(_(All)_)') {
|
|
data[i] = {};
|
|
data[i]['shareName'] = $(this).val();
|
|
data[i]['shareExport'] = '<?=addslashes(htmlspecialchars($sec[$name]['export']))?>';
|
|
data[i]['shareFruit'] = '<?=addslashes(htmlspecialchars($sec[$name]['fruit']))?>';
|
|
data[i]['shareSecurity'] = '<?=addslashes(htmlspecialchars($sec[$name]['security']))?>';
|
|
data[i]['changeShareSecurity'] = 'Apply';
|
|
i++;
|
|
}
|
|
});
|
|
toggleButton('writesmb',true);
|
|
$('div.spinner.fixed').show('slow');
|
|
writeSMB(data,0,i);
|
|
}
|
|
}
|
|
function readUserSMB() {
|
|
var form = document.smb_user_edit;
|
|
var name = $('select[name="readusersmb"]').val();
|
|
var users = {};
|
|
<?
|
|
foreach ($users as $user) {
|
|
if ($user['name'] == "root") continue;
|
|
echo "users['{$user['name']}'] = {$user['idx']};\n";
|
|
}
|
|
?>
|
|
$.get('/webGui/include/ProtocolData.php',{protocol:'smb',name:name},function(json) {
|
|
var data = $.parseJSON(json);
|
|
var readList = data.readList.split(',');
|
|
var writeList = data.writeList.split(',');
|
|
$(form).find('select[name^="userAccess."]').each(function(){$(this).val('no-access');});
|
|
for (var i=0; i < readList.length; i++) $(form).find('select[name="userAccess.'+users[readList[i]]+'"]').val('read-only');
|
|
for (var i=0; i < writeList.length; i++) $(form).find('select[name="userAccess.'+users[writeList[i]]+'"]').val('read-write');
|
|
});
|
|
$(form).find('select').trigger('change');
|
|
}
|
|
function writeUserSMB(data,n,i) {
|
|
if (data) {
|
|
if (n<i) {
|
|
$.post('/update.htm',data[n], function(){setTimeout(function(){writeUserSMB(data,++n,i);},3000);});
|
|
} else {
|
|
toggleButton('writeusersmb',false);
|
|
$('div.spinner.fixed').hide();
|
|
}
|
|
} else {
|
|
var data = [], i = 0;
|
|
$('select#smb2 option').map(function() {
|
|
if ($(this).prop('selected')==true && $(this).val()!='(_(All)_)') {
|
|
data[i] = {};
|
|
data[i]['shareName'] = $(this).val();
|
|
data[i]['userAccess.0'] = 'no-access';
|
|
<?
|
|
$read_list = explode(",", $sec[$name]['readList']);
|
|
$write_list = explode(",", $sec[$name]['writeList']);
|
|
foreach ($users as $user) {
|
|
if ($user['name'] == "root") continue;
|
|
$idx = $user['idx'];
|
|
$userAccess = null;
|
|
if ($sec[$name]['security']=='secure') {
|
|
$userAccess = in_array($user['name'], $write_list) ? "read-write" : "read-only";
|
|
} elseif ($sec[$name]['security'] == 'private') {
|
|
$userAccess = in_array($user['name'], $write_list) ? "read-write" : (in_array($user['name'], $read_list) ? "read-only" : "no-access");
|
|
}
|
|
if ($userAccess) echo "data[i]['userAccess.$idx'] = '$userAccess';\n";
|
|
}
|
|
?>
|
|
data[i]['changeShareAccess'] = 'Apply';
|
|
i++;
|
|
}
|
|
});
|
|
toggleButton('writeusersmb',true);
|
|
$('div.spinner.fixed').show('slow');
|
|
writeUserSMB(data,0,i);
|
|
}
|
|
}
|
|
</script>
|