system_groupmanager.php 21.9 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
	Copyright (C) 2008 Shrew Soft Inc.
	Copyright (C) 2005 Paul Taylor <paultaylor@winn-dixie.com>.
	Copyright (C) 2003-2005 Manuel Kasper <mk@neon1.net>.
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:

	1. Redistributions of source code must retain the above copyright notice,
	   this list of conditions and the following disclaimer.

	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.

	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
	POSSIBILITY OF SUCH DAMAGE.
*/

32
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
33

34
$pgtitle = array(gettext('System'), gettext('Groups'));
Ad Schellevis's avatar
Ad Schellevis committed
35

36
if (!isset($config['system']['group'])) {
37 38
    $config['system']['group'] = array();
}
Ad Schellevis's avatar
Ad Schellevis committed
39 40 41 42

$a_group = &$config['system']['group'];

unset($id);
43 44 45
if (isset($_POST['groupid']) && is_numericint($_POST['groupid'])) {
    $id = $_POST['groupid'];
}
Ad Schellevis's avatar
Ad Schellevis committed
46 47 48 49

$act = (isset($_POST['act']) ? $_POST['act'] : '');

if ($act == "delgroup") {
50 51 52 53 54 55 56 57 58 59 60
    if (!isset($id) || !isset($_POST['groupname']) || !isset($a_group[$id]) || ($_POST['groupname'] != $a_group[$id]['name'])) {
        redirectHeader("system_groupmanager.php");
        exit;
    }

    local_group_del($a_group[$id]);
    $groupdeleted = $a_group[$id]['name'];
    unset($a_group[$id]);
    write_config();
    $savemsg = gettext("Group")." {$groupdeleted} ".
        gettext("successfully deleted")."<br />";
Ad Schellevis's avatar
Ad Schellevis committed
61 62 63
}

if ($act == "delpriv") {
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
    if (!isset($id) || !isset($a_group[$id])) {
        redirectHeader("system_groupmanager.php");
        exit;
    }

    $privdeleted = $priv_list[$a_group[$id]['priv'][$_POST['privid']]]['name'];
    unset($a_group[$id]['priv'][$_POST['privid']]);

    if (is_array($a_group[$id]['member'])) {
        foreach ($a_group[$id]['member'] as $uid) {
            $user = getUserEntryByUID($uid);
            if ($user) {
                local_user_set($user);
            }
        }
    }

    write_config();
    $act = "edit";
    $savemsg = gettext("Privilege")." {$privdeleted} ".
                gettext("successfully deleted")."<br />";
Ad Schellevis's avatar
Ad Schellevis committed
85 86 87
}

if ($act == "edit") {
88 89 90 91 92 93 94 95
    if (isset($id) && isset($a_group[$id])) {
        $pconfig['name'] = $a_group[$id]['name'];
        $pconfig['gid'] = $a_group[$id]['gid'];
        $pconfig['gtype'] = $a_group[$id]['scope'];
        $pconfig['description'] = $a_group[$id]['description'];
        $pconfig['members'] = $a_group[$id]['member'];
        $pconfig['priv'] = $a_group[$id]['priv'];
    }
Ad Schellevis's avatar
Ad Schellevis committed
96 97 98
}

if (isset($_POST['save'])) {
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
    unset($input_errors);
    $pconfig = $_POST;

    /* input validation */
    $reqdfields = explode(" ", "groupname");
    $reqdfieldsn = array(gettext("Group Name"));

    do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);

    if (preg_match("/[^a-zA-Z0-9\.\-_ ]/", $_POST['groupname'])) {
        $input_errors[] = gettext("The group name contains invalid characters.");
    }

    if (strlen($_POST['groupname']) > 16) {
        $input_errors[] = gettext("The group name is longer than 16 characters.");
    }

    if (!$input_errors && !(isset($id) && $a_group[$id])) {
        /* make sure there are no dupes */
        foreach ($a_group as $group) {
            if ($group['name'] == $_POST['groupname']) {
                $input_errors[] = gettext("Another entry with the same group name already exists.");
                break;
            }
        }
124

125
        $sys_groups = file_get_contents('/etc/group');
126 127
        foreach (explode("\n", $sys_groups) as $line) {
            if (explode(":", $line)[0] ==  $_POST['groupname']) {
128 129 130
                $input_errors[] = gettext("That groupname is reserved by the system.");
            }
        }
131 132 133 134 135 136 137 138 139 140 141 142 143
    }

    if (!$input_errors) {
        $group = array();
        if (isset($id) && $a_group[$id]) {
            $group = $a_group[$id];
        }

        $group['name'] = $_POST['groupname'];
        $group['description'] = $_POST['description'];

        if (empty($_POST['members'])) {
            unset($group['member']);
144
        } else {
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
            $group['member'] = $_POST['members'];
        }

        if (isset($id) && $a_group[$id]) {
            $a_group[$id] = $group;
        } else {
            $group['gid'] = $config['system']['nextgid']++;
            $a_group[] = $group;
        }

        local_group_set($group);

        /* Refresh users in this group since their privileges may have changed. */
        if (is_array($group['member'])) {
            $a_user = &$config['system']['user'];
            foreach ($a_user as & $user) {
                if (in_array($user['uid'], $group['member'])) {
                    local_user_set($user);
                }
            }
        }

        write_config();

        header("Location: system_groupmanager.php");
        exit;
    }
Ad Schellevis's avatar
Ad Schellevis committed
172 173 174 175 176 177
}

include("head.inc");

?>

178
<body>
Ad Schellevis's avatar
Ad Schellevis committed
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
<?php include("fbegin.inc"); ?>
<script type="text/javascript">
//<![CDATA[

function setall_selected(id) {
	selbox = document.getElementById(id);
	count = selbox.options.length;
	for (index = 0; index<count; index++)
		selbox.options[index].selected = true;
}

function clear_selected(id) {
	selbox = document.getElementById(id);
	count = selbox.options.length;
	for (index = 0; index<count; index++)
		selbox.options[index].selected = false;
}

function remove_selected(id) {
	selbox = document.getElementById(id);
	index = selbox.options.length - 1;
	for (; index >= 0; index--)
		if (selbox.options[index].selected)
			selbox.remove(index);
}

function copy_selected(srcid, dstid) {
	src_selbox = document.getElementById(srcid);
	dst_selbox = document.getElementById(dstid);
	count = dst_selbox.options.length;
	for (index = count - 1; index >= 0; index--) {
		if (dst_selbox.options[index].value == '') {
			dst_selbox.remove(index);
		}
	}
	count = src_selbox.options.length;
	for (index = 0; index < count; index++) {
		if (src_selbox.options[index].selected) {
			option = document.createElement('option');
			option.text = src_selbox.options[index].text;
			option.value = src_selbox.options[index].value;
			dst_selbox.add(option, null);
		}
	}
}

function move_selected(srcid, dstid) {
	copy_selected(srcid, dstid);
	remove_selected(srcid);
}

function presubmit() {
	clear_selected('notmembers');
	setall_selected('members');
}

//]]>
</script>

Ad Schellevis's avatar
Ad Schellevis committed
238 239 240


	<section class="page-content-main">
241
		<div class="container-fluid">
Ad Schellevis's avatar
Ad Schellevis committed
242
			<div class="row">
243

Ad Schellevis's avatar
Ad Schellevis committed
244
				<?php
245
                if (isset($input_errors) && count($input_errors) > 0) {
246 247
                    print_input_errors($input_errors);
                }
248
                if (isset($savemsg)) {
249 250 251
                    print_info_box($savemsg);
                }
                ?>
252

Ad Schellevis's avatar
Ad Schellevis committed
253
			    <section class="col-xs-12">
254
						<div class="tab-content content-box col-xs-12">
Ad Schellevis's avatar
Ad Schellevis committed
255 256

							<?php
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
                            if ($act == "new" || $act == "edit") :
                            ?>
                    <form action="system_groupmanager.php" method="post" name="iform" id="iform" onsubmit="presubmit()">
                        <input type="hidden" id="act" name="act" value="" />
                        <input type="hidden" id="groupid" name="groupid" value="<?=(isset($id) ? $id : '');?>" />
                        <input type="hidden" id="privid" name="privid" value="" />

                        <table class="table table-striped table-sort">
                            <?php
                                $ro = "";
                            if ($pconfig['gtype'] == "system") {
                                $ro = "readonly=\"readonly\"";
                            }
                            ?>
                                <tr>
                                    <td width="22%" valign="top" class="vncell"><?=gettext("Defined by");?></td>
                                    <td width="78%" class="vtable">
                                        <strong><?=strtoupper($pconfig['gtype']);?></strong>
                                        <input name="gtype" type="hidden" value="<?=htmlspecialchars($pconfig['gtype'])?>"/>
                                    </td>
                                </tr>
                                <tr>
                                    <td width="22%" valign="top" class="vncellreq"><?=gettext("Group name");?></td>
                                    <td width="78%" class="vtable">
                                        <input name="groupname" type="text" class="formfld group" id="groupname" size="20" maxlength="16" value="<?=htmlspecialchars($pconfig['name']);
?>" <?=$ro;?> />
                                    </td>
                                </tr>
                                <tr>
                                    <td width="22%" valign="top" class="vncell"><?=gettext("Description");?></td>
                                    <td width="78%" class="vtable">
                                        <input name="description" type="text" class="formfld unknown" id="description" size="20" value="<?=htmlspecialchars($pconfig['description']);?>" />
                                        <br />
                                        <?=gettext("Group description, for your own information only");?>
                                    </td>
                                </tr>
                        <tr>
                            <td width="22%" valign="top" class="vncell"><?=gettext("Group Memberships");?></td>
                            <td width="78%" class="vtable" align="center">
                                <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0" summary="membership">
                                    <tr>
                                        <td align="center" width="50%">
                                            <strong><?=gettext("Not Members");?></strong><br />
                                            <br />
                                                <select size="10" style="width: 75%" name="notmembers[]" class="formselect" id="notmembers" onchange="clear_selected('members')" multiple="multiple">
Ad Schellevis's avatar
Ad Schellevis committed
302
					<?php
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
                                            $rowIndex = 0;
                    foreach ($config['system']['user'] as $user) :
                        if (is_array($pconfig['members']) && in_array($user['uid'], $pconfig['members'])) {
                            continue;
                        }
                        $rowIndex++;
                    ?>
                        <option value="<?=$user['uid'];
?>" <?=$selected;?>>
                            <?=htmlspecialchars($user['name']);?>
                        </option>
<?php
                    endforeach;
                    if ($rowIndex == 0) {
                        echo "<option></option>";
                    }
                    ?>
                                            </select>
                                            <br />
                                        </td>
                                        <td>
                                            <br />
                                            <a href="javascript:move_selected('notmembers','members')" class="btn btn-default btn-xs">
                                                <span class="glyphicon glyphicon-arrow-right"></span>
                                            </a>
                                            <br /><br />
                                            <a href="javascript:move_selected('members','notmembers')" class="btn btn-default btn-xs">
                                                <span class="glyphicon glyphicon-arrow-left"></span>
                                            </a>
                                        </td>
                                        <td align="center" width="50%">
                                            <strong><?=gettext("Members");?></strong><br />
                                            <br />
                                            <select size="10" style="width: 75%" name="members[]" class="formselect" id="members" onchange="clear_selected('notmembers')" multiple="multiple">
Ad Schellevis's avatar
Ad Schellevis committed
337
					<?php
338 339 340 341 342 343 344 345 346 347
                                            $rowIndex = 0;
                    foreach ($config['system']['user'] as $user) :
                        if (!(is_array($pconfig['members']) && in_array($user['uid'], $pconfig['members']))) {
                            continue;
                        }
                        $rowIndex++;
                    ?>
                        <option value="<?=$user['uid'];?>">
                            <?=htmlspecialchars($user['name']);?>
                        </option>
Ad Schellevis's avatar
Ad Schellevis committed
348
					<?php
349 350 351 352 353 354 355 356 357 358 359 360 361
                    endforeach;
                    if ($rowIndex == 0) {
                        echo "<option></option>";
                    }
                    ?>
                                            </select>
                                            <br />
                                        </td>
                                    </tr>
                                </table>
                                <?=gettext("Hold down CTRL (pc)/COMMAND (mac) key to select multiple items");?>
                            </td>
                        </tr>
Ad Schellevis's avatar
Ad Schellevis committed
362
					<?php
363 364 365 366 367 368 369 370 371 372 373
                        if ($act != "new") :
                    ?>
                            <th colspan="2" valign="top" class="vncell"><?=gettext("Assigned Privileges");?></th>
                            <tr>
                                <td colspan="2" class="vtable">
                                    <table class="tabcont table table-striped" width="100%" border="0" cellpadding="0" cellspacing="0" summary="privileges">
                                        <tr>
                                            <td width="40%" class="listhdrr"><b><?=gettext("Name");?></b></td>
                                            <td width="60%" class="listhdrr"><b><?=gettext("Description");?></b></td>
                                            <td class="list"></td>
                                        </tr>
Ad Schellevis's avatar
Ad Schellevis committed
374
					<?php
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
                    if (is_array($pconfig['priv'])) :
                        $i = 0;
                        foreach ($pconfig['priv'] as $priv) :
                    ?>
                            <tr>
                                <td class="listr">
                                    <?=htmlspecialchars($priv_list[$priv]['name']);?>
                                </td>
                                <td class="listbg">
                                    <?=htmlspecialchars($priv_list[$priv]['descr']);?>
                                </td>
                                <td valign="middle" class="list nowrap">
                                    <button type="submit" name="delpriv[]"
                                        class="btn btn-default btn-xs"
                                        onclick="document.getElementById('privid').value='<?=$i;?>';
                                            document.getElementById('groupid').value='<?=$id;?>';
                                            document.getElementById('act').value='<?php echo "delpriv";?>';
                                            return confirm('<?=gettext("Do you really want to delete this privilege?");?>');"
                                        title="<?=gettext("delete privilege");?>" data-toggle="tooltip" data-placement="left" ><span class="glyphicon glyphicon-remove"></span></button>
                                </td>
                            </tr>
Ad Schellevis's avatar
Ad Schellevis committed
396
					<?php
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
                            $i++;
                        endforeach;
                    endif;
                    ?>
                                        <tr>
                                            <td class="list" colspan="2"></td>
                                            <td class="list">
                                                <a href="system_groupmanager_addprivs.php?groupid=<?=htmlspecialchars($id)?>" class="btn btn-default btn-xs">
                                                    <span class="glyphicon glyphicon-plus"></span>
                                                </a>

                                            </td>
                                        </tr>

                                    </table>
                                </td>
                            </tr>
Ad Schellevis's avatar
Ad Schellevis committed
414
					<?php
415 416 417 418 419 420 421 422 423
                        endif;
                    ?>
                                <tr>
                                    <td width="22%" valign="top">&nbsp;</td>
                                    <td width="78%">
                                        <input name="save" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" />
                                        <input type="button" class="btn btn-default" value="<?=gettext("Cancel");?>" onclick="window.location.href='/system_groupmanager.php'" />
                                        <?php if (isset($id) && $a_group[$id]) :
?>
Ad Schellevis's avatar
Ad Schellevis committed
424 425
													<input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
													<input name="gid" type="hidden" value="<?=htmlspecialchars($pconfig['gid']);?>" />
426 427 428 429 430 431 432 433 434
													<?php
endif; ?>
                                    </td>
                                </tr>
                            </table>
                    </form>
                    <?php
                            else :
                                ?>
Ad Schellevis's avatar
Ad Schellevis committed
435 436 437 438 439

								<form action="system_groupmanager.php" method="post" name="iform2" id="iform2">
									<input type="hidden" id="act" name="act" value="" />
									<input type="hidden" id="groupid" name="groupid" value="<?=(isset($id) ? $id : '');?>" />
									<input type="hidden" id="groupname" name="groupname" value="" />
440 441

									<table class="table table-striped table-sort">
Ad Schellevis's avatar
Ad Schellevis committed
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
											<thead>
												<tr>
													<th width="25%" class="listhdrr"><?=gettext("Group name");?></th>
													<th width="25%" class="listhdrr"><?=gettext("Description");?></th>
													<th width="30%" class="listhdrr"><?=gettext("Member Count");?></th>
													<th width="10%" class="list"></th>
												</tr>
											</thead>
											<tfoot>
												<tr>
													<td class="list" colspan="3"></td>
													<td class="list">
														<button type="submit" name="addcert"
															class="btn btn-default btn-xs"
															onclick="document.getElementById('act').value='<?php echo "new";?>';"
															title="<?=gettext("add group");?>"><span class="glyphicon glyphicon-plus"></span></button>
													</td>
												</tr>
												<tr>
Ad Schellevis's avatar
Ad Schellevis committed
461 462
													<td colspan="4">
														<p class="col-xs-12 col-sm-10">
Ad Schellevis's avatar
Ad Schellevis committed
463 464 465 466 467 468 469 470 471
															<?=gettext("Additional webConfigurator groups can be added here.
															Group permissions can be assigned which are inherited by users who are members of the group.
															An icon that appears grey indicates that it is a system defined object.
															Some system object properties can be modified but they cannot be deleted.");?>
														</p>
													</td>
												</tr>
											</tfoot>
											<tbody>
Ad Schellevis's avatar
Ad Schellevis committed
472
<?php
473 474 475 476 477 478 479 480 481 482 483
                        $i = 0;
foreach ($a_group as $group) :
    if ($group['scope'] == "system") {
        $grpimg = "glyphicon glyphicon-user text-mute";
    } else {
        $grpimg = "glyphicon glyphicon-user";
    }
    $groupcount = count($group['member']);
    if ($group["name"] == "all") {
        $groupcount = count($config['system']['user']);
    }
Ad Schellevis's avatar
Ad Schellevis committed
484
?>
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
    <tr ondblclick="document.getElementById('act').value='<?php echo "edit";?>';
        document.getElementById('groupid').value='<?=$i;?>';
        document.iform2.submit();">
        <td class="listlr">
            <table border="0" cellpadding="0" cellspacing="0" summary="">
                <tr>
                    <td align="left" width="30px">
                        <span class="<?=$grpimg;?>"></span>
                    </td>
                    <td align="left">
                        <?=htmlspecialchars($group['name']); ?>&nbsp;
                    </td>
                </tr>
            </table>
        </td>
        <td class="listr">
            <?=htmlspecialchars($group['description']);?>&nbsp;
        </td>
        <td class="listbg">
            <?=$groupcount;?>
        </td>
        <td valign="middle" class="list nowrap">
            <button type="submit" name="editgroup[]"
                class="btn btn-default btn-xs"
                onclick="document.getElementById('groupid').value='<?=$i;?>';
                    document.getElementById('act').value='<?php echo "edit";?>';"
                title="<?=gettext("edit group");?>"><span class="glyphicon glyphicon-pencil"></span></button>
            &nbsp;
Ad Schellevis's avatar
Ad Schellevis committed
513
<?php
514
if ($group['scope'] != "system") :
Ad Schellevis's avatar
Ad Schellevis committed
515
?>
516 517 518 519 520 521 522
    <button type="submit" name="delgroup[]"
        class="btn btn-default btn-xs"
        onclick="document.getElementById('groupid').value='<?=$i;?>';
            document.getElementById('groupname').value='<?=$group['name'];?>';
            document.getElementById('act').value='<?php echo "delgroup";?>';
            return confirm('<?=gettext("Do you really want to delete this group?");?>');"
        title="<?=gettext("delete group");?>"><span class="glyphicon glyphicon-remove"></span></button>
Ad Schellevis's avatar
Ad Schellevis committed
523
<?php
524
endif;
Ad Schellevis's avatar
Ad Schellevis committed
525
?>
526 527
        </td>
    </tr>
Ad Schellevis's avatar
Ad Schellevis committed
528
<?php
529 530
    $i++;
endforeach;
Ad Schellevis's avatar
Ad Schellevis committed
531 532 533
?>
						</tbody>
					</table>
Ad Schellevis's avatar
Ad Schellevis committed
534
								</form>
535

Ad Schellevis's avatar
Ad Schellevis committed
536
<?php
537
                            endif;
Ad Schellevis's avatar
Ad Schellevis committed
538
?>
539

Ad Schellevis's avatar
Ad Schellevis committed
540 541
						</div>
			    </section>
Ad Schellevis's avatar
Ad Schellevis committed
542
			</div>
Ad Schellevis's avatar
Ad Schellevis committed
543 544
		</div>
	</section>
545

546
<?php include("foot.inc");