176 lines
No EOL
4.6 KiB
PHP
176 lines
No EOL
4.6 KiB
PHP
<?php
|
|
/*
|
|
*Copyright (C) 2012-2013 Psychokiller
|
|
*
|
|
*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 3 of the License, or 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
if(!defined("SECURECHECK")) {die($lang['error_file_alone']);}
|
|
if($sid===false OR empty($sid)) { echo "<meta http-equiv=\"refresh\" content=\"0; URL=index.php?site=server\">";} else {
|
|
|
|
$serverinfo=$ts3->getElement('data', $ts3->serverInfo());
|
|
$get_build=explode(' ', $serverinfo['virtualserver_version']);
|
|
$get_build=str_replace(']', '', $get_build[2]);
|
|
|
|
if(isset($_POST['showmyperms']) AND $_POST['showmyperms']==1)
|
|
{
|
|
$showmyperms=1;
|
|
}
|
|
else
|
|
{
|
|
$showmyperms=0;
|
|
}
|
|
|
|
if($showmyperms==1 or !empty($_POST['searchperms']))
|
|
{
|
|
$display="block";
|
|
$disp_pic="minus";
|
|
}
|
|
else
|
|
{
|
|
$display="none";
|
|
$disp_pic="plus";
|
|
}
|
|
|
|
$channelgroups=$ts3->channelGroupList();
|
|
|
|
foreach($channelgroups['data'] AS $value)
|
|
{
|
|
if($cgid==$value['cgid'])
|
|
{
|
|
$cgroupname=$value['name'];
|
|
}
|
|
}
|
|
|
|
if (isset($_POST['editall']))
|
|
{
|
|
$delperms=array();
|
|
$editperms=array();
|
|
$allpermsedit=$_POST['perm'];
|
|
|
|
|
|
foreach($allpermsedit AS $key => $value)
|
|
{
|
|
if(isset($_POST['granttoall']) AND isset($value['grant']) AND $value['grant']==1 AND isset($value['available']))
|
|
{
|
|
if($_POST['granttoall']===0 OR $_POST['granttoall']>0)
|
|
{
|
|
$value['value']=$_POST['granttoall'];
|
|
}
|
|
}
|
|
if(isset($value['delperm']) AND $value['delperm']==1)
|
|
{
|
|
$delperms[]=$key;
|
|
}
|
|
elseif(isset($value['grant']) AND $value['grant']==1 AND !isset($value['available']) AND $value['value']==0)
|
|
{
|
|
|
|
}
|
|
elseif(isset($value['available']) OR !isset($value['available']) AND !empty($value['value']))
|
|
{
|
|
(!isset($value['value']) or empty($value['value'])) ? $editperms[$key]='0' : $editperms[$key]=$value['value'];
|
|
}
|
|
}
|
|
|
|
$cgrouplist=$ts3->getElement('data', $ts3->channelGroupPermList($cgid));
|
|
foreach($cgrouplist AS $value)
|
|
{
|
|
foreach($editperms AS $key2=>$value2)
|
|
{
|
|
if($value['permid']==$key2 AND $value['permvalue']==$value2[0])
|
|
{
|
|
unset($editperms[$key2]);
|
|
}
|
|
}
|
|
}
|
|
|
|
if(!empty($editperms))
|
|
{
|
|
$ts3->channelGroupAddPerm($cgid, $editperms);
|
|
$debug=$ts3->getDebugLog();
|
|
foreach($debug AS $key=>$value)
|
|
{
|
|
$error.=$value."<br />";
|
|
}
|
|
}
|
|
if(!empty($delperms))
|
|
{
|
|
$ts3->channelGroupDelPerm($cgid, $delperms);
|
|
$debug=$ts3->getDebugLog();
|
|
foreach($debug AS $key=>$value)
|
|
{
|
|
$error.=$value."<br />";
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
$cgrouplist=$ts3->getElement('data', $ts3->channelGroupPermList($cgid));
|
|
|
|
$allperms=$ts3->permissionList(true);
|
|
|
|
if(!empty($allperms))
|
|
{
|
|
if(!empty($cgrouplist))
|
|
{
|
|
foreach($cgrouplist AS $key => $value)
|
|
{
|
|
foreach($allperms AS $key2 => $value2)
|
|
{
|
|
if(isset($value2['permissions']))
|
|
{
|
|
foreach($value2['permissions'] AS $key3=>$value3)
|
|
{
|
|
if($value['permid']==$value3['permid'])
|
|
{
|
|
$allperms[$key2]['permissions'][$key3]['available']=1;
|
|
$allperms[$key2]['permissions'][$key3]['permvalue']=$value['permvalue'];
|
|
}
|
|
elseif(!isset($allperms[$key2]['permissions'][$key3]['permvalue']))
|
|
{
|
|
$allperms[$key2]['permissions'][$key3]['available']=0;
|
|
$allperms[$key2]['permissions'][$key3]['permvalue']=0;
|
|
}
|
|
if($value['permid']==$value3['grantpermid'])
|
|
{
|
|
$allperms[$key2]['permissions'][$key3]['grantav']=1;
|
|
$allperms[$key2]['permissions'][$key3]['grant']=$value['permvalue'];
|
|
}
|
|
elseif(!isset($allperms[$key2]['permissions'][$key3]['grant']))
|
|
{
|
|
$allperms[$key2]['permissions'][$key3]['grantav']=0;
|
|
$allperms[$key2]['permissions'][$key3]['grant']=0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$error.="The permissions can't show complete because you don't have the permission to see the list!<br />Needed Permission: b_serverinstance_permission_list<br />";
|
|
}
|
|
|
|
|
|
|
|
if(isset($_POST['searchperms']))
|
|
{
|
|
$smarty->assign("searchperms", trim($_POST['searchperms']));
|
|
}
|
|
$smarty->assign("error", $error);
|
|
$smarty->assign("showmyperms", $showmyperms);
|
|
$smarty->assign("display", $display);
|
|
$smarty->assign("disp_pic", $disp_pic);
|
|
$smarty->assign("cgroupname", secure($cgroupname));
|
|
$smarty->assign("allperms", $allperms);
|
|
$smarty->assign("build", $get_build);
|
|
}
|
|
?>
|