summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_groupmanager.php
blob: d66b9fa313947e3de62b47c622c3d773d09003d1 (plain)
1
2
3
4
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
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
172
173
174
175
176
177
178
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
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
302
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
<?php
/*
    $Id$
        part of pfSense (http://www.pfSense.com)
    originally part of part of m0n0wall (http://m0n0.ch/wall)

    Copyright (C) 2007 Bill Marquette <bill.marquette@gmail.com>.
    All rights reserved.

    Copyright (C) 2006 Scott Ullrich <sullrich@gmail.com>.
    All rights reserved.

    Copyright (C) 2005 Paul Taylor <paultaylor@winn-dixie.com>.
    All rights reserved.

    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.
*/

require("guiconfig.inc");

//$_SESSION['NO_AJAX'] = true;

$pgtitle = "System: Group manager";
$treeItemID = 0;

function walkArea($title,
                  $t,
                  $area,
                  $id,
                  &$counter,
                  &$script_tag,
                  $tmpfname,
                  &$group) {
  global $treeItemID;

  foreach($area as $a => $aa) {
    if (is_array($aa) && count($aa) > 0) {
      $title .= "_{$a}";
      echo "<li class=\"closed\"><a id=\"treeitem_{$treeItemID}\" href=\"#\">$a</a><ul>";
      $treeItemID++;
      walkArea($title,
               $a,
               $aa,
               $id,
               $counter,
               $script_tag,
               $tmpfname,
               $group);
      echo "</ul>\n";
    } else {
      $tmp_string = "{$t}";
      $tmp_string .= ": ";
      $tmp_string .= $a;
      $trimmed_title = trim($title);
      $trimmed_a = trim($a);
      $this_id = "{$trimmed_title}_{$trimmed_a}_{$counter}";
      $this_id = str_replace(" ", "", $this_id);
      $this_id = str_replace("/", "", $this_id);
      $stripped_session = str_replace("/tmp/", "", $tmpfname);
      $allowed = false;
      if (is_array($group['pages'])) {
          foreach($group['pages'] as $page) {
              if (stristr($aa, $page))
                  $allowed = true;
              // echo "$page || $aa";
          }
      }
      $allowed ? $checked = " checked=\"checked\"" : $checked = "";
      echo "                        <li id=\"treeitem_{$treeItemID}\" class=\"closed\" title=\"{$aa}\"><a name=\"anchor_{$treeItemID}\" style=\"display: none;\">&nbsp;</a>";
      $idForOnClick = $treeItemID;
      $treeItemID++;
      echo "<input type=\"checkbox\" class=\"formfld\" id=\"treeitem_{$treeItemID}\" ";
      $treeItemID++;
      echo "name=\"treeitem_{$treeItemID}\" title=\"{$area}\" onClick=\"getURL('system_groupmanager.php?id={$id}&amp;toggle={$aa}&amp;item={$idForOnClick}&amp;session={$stripped_session}', after_request_callback); rotate();\" {$checked} />&nbsp;";
      $treeItemID++;
      echo "<a id=\"treeitem_{$treeItemID}\" href=\"#anchor_{$idForOnClick}\" onclick=\"getURL('system_groupmanager.php?id={$id}&amp;toggle={$aa}&amp;item={$idForOnClick}&amp;session={$stripped_session}', after_request_callback); rotate();\">{$a}</a></li>\n";
      $idForScript = $treeItemID;
      $treeItemID++;

//echo "$script_tag <hr />";
      $script_tag .= "var item = document.getElementById('treeitem_{$idForScript}');\n";
      if ($allowed) {
          $script_tag .= "item.style.backgroundImage = \"url('/tree/page-file_play.gif')\";\n";
      } else {
          $script_tag .= "item.style.backgroundImage = \"url('/tree/page-file_x.gif')\";\n";
      }
      $counter++;
    } // end if
  } // end foreach
}

function init_ajax_helper_file()
{
    global $config, $id, $global;
    $a_group = &$config['system']['group'];
    $id = $_GET['id'];
    if (isset($id) && $a_group[$id])
        $group = $a_group[$id];
    else
        $group = array();
    $_SESSION['group_pages'] = $group['pages'];
    return;
}

if ($_GET['toggle'] <> "") {
    /* AJAX is calling, lets take care of it */
    if (!file_exists("/tmp/" . $_GET['session'])) {
        init_ajax_helper_file($_GET['session']);
    }
    $fc = file_get_contents("/tmp/" . $_GET['session']);
    $file_split = split("\n", $fc);
    $found = -1;
    for($x = 0; $x < count($file_split); $x++) {
        if ($file_split[$x] == $_GET['toggle']) {
            $found = $x;
        }
    }
    if ($found == -1) {
        $file_split[] = $_GET['toggle'];
        $image = "/tree/page-file_play.gif";
    } else {
        unset($file_split[$found]);
        $image = "/tree/page-file_x.gif";
    }
    $fd = fopen("/tmp/{$_GET['session']}", "w");
    if ($file_split)
        foreach($file_split as $fs) {
        if ($fs)
            fwrite($fd, $fs . "\n");
    }
    fclose($fd);
    echo $_GET['item'] . "_a||" . "{$image}";
    exit;
}

function convert_array_to_pgtitle($orig)
{
    $newstring = "";
    foreach($orig as $o) {
        if ($newstring <> "")
            $newstring .= ": ";
        $newstring .= $o;
    }
    return $newstring;
}
// Returns an array of pages with their descriptions
function getAdminPageList()
{
    global $g;

    $tmp = Array();

    if ($dir = opendir($g['www_path'])) {
        while ($file = readdir($dir)) {
            // Make sure the file exists and is not a directory
            if ($file == "." or $file == ".." or $file[0] == '.')
                continue;
            // Is this a .inc.php file? pfSense!
            if (fnmatch('guiconfig.inc', $file))
                continue;
            if (fnmatch('*.inc', $file))
                continue;
            if (fnmatch('*.inc.php', $file))
                continue;
            if (fnmatch('*.php', $file)) {
                // Read the description out of the file
                $contents = file_get_contents($file);
                $contents_split = split("\n", $contents);
                $mlinestr = "";
                foreach($contents_split as $contents) {
                    $pgtitle = "";
                    // Looking for a line like:
                    // $pgtitle = array(gettext("System"), gettext("Group manager")); // - DO NOT REMOVE.
                    if ($mlinestr == "" && stristr($contents, "\$pgtitle") == false)
                        continue;
                    if ($mlinestr == "" && stristr($contents, "=") == false)
                        continue;
                    if (stristr($contents, "<"))
                        continue;
                    if (stristr($contents, ">"))
                        continue;
                    /* at this point its evalable */
                    $contents = trim ($contents);
                    $lastchar = substr($contents, strlen($contents) - 1, strlen($contents));
                    $firstchar = substr($contents, 0, 1);

                    /* check whether pgtitle is on one or multible lines */
                    if ($firstchar <> "/" && $firstchar <> "#" && $lastchar <> ";") {
                        /* remember the partitial pgtitle string for the next loop iteration */
                        $mlinestr .= $contents;
                        continue;
                    } else if ($mlinestr <> "" && $lastchar == ";") {
                        /* this is the final pgtitle part including the semicolon */
                        $mlinestr .= $contents;
                    } else if ($mlinestr == "" && $lastchar == ";") {
                        /* this is a single line pgtitle, hence just
                         * copy its contents into mlinestr
                         */
                        $mlinestr = $contents;
                    } else if ($firstchar == "/" || $firstchar == "#") {
                        /* same applies for comment lines */
                        $mlinestr = $contents;
                    }

                    eval($mlinestr);

                    /* after eval, if not an array, continue */
                    if (!is_array($pgtitle)) {
                        /* reset mlinestr for the next loop iteration */
                        $mlinestr = "";
                        continue;
                    }

                    $tmp[$file] = $pgtitle;

                    /* break out of the for loop, on to next file */
                    break;
                }
            }
        }

        /* loop through and read in wizard information */
        if ($dir = opendir("{$g['www_path']}/wizards")) {
            while ($file = readdir($dir)) {
                // Make sure the file exists and is not directory
                if ($file == "." or $file == ".." or $file[0] == '.')
                    continue;
                // Is this a .xml file? pfSense!
                if (fnmatch('*.xml', $file)) {
                    /* parse package and retrieve the package title */
                    $pkg = parse_xml_config_pkg("{$g['www_path']}/wizards/{$file}", "pfsensewizard");
                    $title = $pkg['title'];
                    if ($title)
                        $tmp[$file] = trim($title);
                }
            }
        }

        /* loop through and read in package information */
        if ($dir = opendir("{$g['pkg_path']}")) {
            while ($file = readdir($dir)) {
                // Make sure the file exists and is not directory
                if ($file == "." or $file == ".." or $file[0] == '.')
                    continue;
                // Is this a .xml file? pfSense!
                if (fnmatch('*.xml', $file)) {
                    /* parse package and retrieve the package title */
                    $pkg = @parse_xml_config_pkg("{$g['pkg_path']}/{$file}", "packagegui");
                    $title = $pkg['title'];
                    if ($title)
                        $tmp[$file] = trim($title);
                }
            }
            closedir($dir);
        }

        // Sets Interfaces:Optional page that didn't read in properly with the above method,
        // and pages that don't have descriptions.
        $tmp['interfaces_opt.php'] = ("Interfaces: Optional");
        $tmp['graph.php'] = ("Status: Traffic Graph");
        $tmp['graph_cpu.php'] = ("Diagnostics: CPU Utilization");
        $tmp['exec_raw.php'] = ("Hidden: Exec Raw");
        $tmp['uploadconfig.php'] = ("Hidden: Upload Configuration");
        $tmp['index.php'] = ("Status: System");
        $tmp['system_usermanager.php'] = ("System: User Password");
        $tmp['diag_logs_settings.php'] = ("Diagnostics: Logs: Settings");
        $tmp['diag_logs_vpn.php'] = ("Diagnostics: Logs: PPTP VPN");
        $tmp['diag_logs_filter.php'] = ("Diagnostics: Logs: Firewall");
        $tmp['diag_logs_portal.php'] = ("Diagnostics: Logs: Captive Portal");
        $tmp['diag_logs_dhcp.php'] = ("Diagnostics: Logs: DHCP");
        $tmp['diag_logs.php'] = ("Diagnostics: Logs: System");

        $tmp['ifstats.php'] = ("Hidden: *XMLRPC Interface Stats");
        $tmp['license.php'] = ("System: License");
        $tmp['progress.php'] = ("Hidden: *No longer included");
        $tmp['diag_logs_filter_dynamic.php'] = ("Hidden: *No longer included");
        $tmp['preload.php'] = ("Hidden: *XMLRPC Preloader");
        $tmp['xmlrpc.php'] = ("Hidden: *XMLRPC Library");
        $tmp['pkg.php'] = ("System: *Renderer for XML based package GUIs (Part I)");
        $tmp['pkg_edit.php'] = ("System: *Renderer for XML based package GUIs (Part II)");

        $tmp['functions.inc.php'] = ("Hidden: Ajax Helper 1");
        $tmp['javascript.inc.php'] = ("Hidden: Ajax Helper 2 ");
        $tmp['sajax.class.php'] = ("Hidden: Ajax Helper 3");

        asort($tmp);

        return $tmp;
    }
}
// Get a list of all admin pages & Descriptions
$pages = getAdminPageList();

if (!is_array($config['system']['group'])) {
    $config['system']['group'] = array();
}
admin_groups_sort();
$a_group = &$config['system']['group'];

$id = $_GET['id'];
if (isset($_POST['id']))
    $id = $_POST['id'];

if ($_GET['act'] == "del") {
    if ($a_group[$_GET['id']]) {
        $ok_to_delete = true;
        if (isset($config['system']['user'])) {
            foreach ($config['system']['user'] as $userent) {
                if ($userent['groupname'] == $a_group[$_GET['id']]['name']) {
                    $ok_to_delete = false;
                    $input_errors[] = gettext("users still exist who are members of this group!");
                    break;
                }
            }
        }
        if ($ok_to_delete) {
            unset($a_group[$_GET['id']]);
            write_config();
            pfSenseHeader("system_groupmanager.php");
            exit;
        }
    }
}

if ($_POST) {
    unset($input_errors);
    $pconfig = $_POST;
    /* input validation */
    $reqdfields = explode(" ", "groupname");
    $reqdfieldsn = explode(",", "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 (!$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;
            }
        }
    }

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

        $group['name'] = $_POST['groupname'];
        isset($_POST['homepage']) ? $group['home'] = $_POST['homepage'] : $group['home'] = "index.php";
        isset($_POST['gtype']) ? $group['scope'] = $_POST['gtype'] : $group['scope'] = "system";
        $group['description'] = $_POST['description'];
        unset($group['pages'][0]['page']);

        $file_split = split("\n", file_get_contents("/tmp/" . $_POST['session']));
        for($x = 0; $x < count($file_split); $x++) {
            if ($file_split[$x])
                $group['pages'][0]['page'][] = $file_split[$x];
        }

        if (isset($id) && $a_group[$id])
            $a_group[$id] = $group;
        else
            $a_group[] = $group;

        write_config();

        pfSenseHeader("system_groupmanager.php");
        exit;
    }
}

include("head.inc");

?><script type="text/javascript">

  function checkallareas(enable) {
    var elem = document.iform.elements.length;
    var endis = (document.iform.checkall.checked || enable);

    for (i = 0; i < elem; i++) {
      if (document.iform.elements[i].name.indexOf("chk-") >= 0) {
        document.iform.elements[i].checked = true;
        document.iform.elements[i].click();
      }
    }
  }
  
</script>
<link href="/tree/tree.css" rel="stylesheet" type="text/css" />
<script src="/javascript/scriptaculous/prototype.js" type="text/javascript"></script>
<script src="/javascript/scriptaculous/scriptaculous.js" type="text/javascript"></script>

<?

// XXX: billm TODO
//echo $pfSenseHead->getHTML();

?>

<body link="#000000" vlink="#000000" alink="#000000" onload="<?= $jsevents["body"]["onload"] ?>">
<?php include("fbegin.inc");?>
<p class="pgtitle"><?=$pgtitle;?></p>
<?php if ($input_errors) print_input_errors($input_errors);?>
<?php if ($savemsg) print_info_box($savemsg);?>
  <table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
      <td class="tabnavtbl">
<?php
  $tab_array = array();
  $tab_array[] = array(gettext("Users"), false, "system_usermanager.php");
  $tab_array[] = array(gettext("Group"), true, "system_groupmanager.php");
  $tab_array[] = array(gettext("Settings"), false, "system_usermanager_settings.php");
  display_top_tabs($tab_array);
?>
      </td>
    </tr>
    <tr>
      <td class="tabcont">

  <table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
      <td width="35%" class="listhdrr"><?=gettext("Group name");?></td>
      <td width="20%" class="listhdrr"><?=gettext("Description");?></td>
      <td width="20%" class="listhdrr"><?=gettext("Pages Accessible");?></td>
      <td width="10%" class="list"></td>
    </tr>
<?php
    $i = 0;
    foreach($a_group as $group):
?>
    <tr>
      <td class="listlr" valign="middle" nowrap="nowrap">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td align="left" valign="middle">
              <?php if($group['scope'] == "user"): ?>
              <img src="/themes/<?=$g['theme'];?>/images/icons/icon_system-group.png" alt="Group" title="Group" border="0" height="20" width="20" />
              <?php else: ?>
              <img src="/themes/<?=$g['theme'];?>/images/icons/icon_system-group-grey.png" alt="Group" title="Group" border="0" height="20" width="20" />
              <?php endif; ?>
              &nbsp;
            </td>
            <td align="left" valign="middle">
		<?
		if($group['name'] != "")
			echo htmlspecialchars($group['name']);
		else
			echo "&nbsp";
		?>
            </td>
          </tr>
        </table>
      </td>
      <td class="listr">
                <?
		if($group['description'] != "")
			echo htmlspecialchars($group['description']);
		else
			echo "&nbsp;";
		?>
      </td>
      <td class="listbg">
        <?php if(is_array($group['pages'])): ?>
          <?php if ($group['pages'][0] == 'ANY'): ?>
        <font color="white">ANY</font>
          <? else: ?>
        <font color="white"><?=count($group['pages']);?> pages</font>
          <?php endif; ?>
        <?php endif; ?>
      </td>
      <?php if($group['scope'] == "user"): ?>
      <td valign="middle" nowrap class="list">
        <a href="system_groupmanager_edit.php?act=edit&amp;id=<?=$i;?>">
          <img src="/themes/<?= $g['theme'];?>/images/icons/icon_e.gif" title="<?=gettext("edit group");?>" width="17" height="17" border="0" alt="" />
        </a>
        <a href="system_groupmanager.php?act=del&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this group?");?>')">
          <img src="./themes/<?= $g['theme'];?>/images/icons/icon_x.gif" title="<?=gettext("delete group");?>" width="17" height="17" border="0" alt="" />
        </a>
      </td>
      <?php endif; ?>
    </tr>
<?php
    $i++;
    endforeach;
?>
    <tr>
      <td class="list" colspan="3"></td>
      <td class="list">
        <a href="system_groupmanager_edit.php?act=new">
          <img src="/themes/<?= $g['theme'];?>/images/icons/icon_plus.gif" title="<?=gettext("add group");?>" width="17" height="17" border="0" alt="" />
        </a>
      </td>
    </tr>
    <tr>
      <td colspan="3">
        <p>
        <?=gettext("Additional webConfigurator admin groups can be added here.  Each group can be restricted to specific portions of the webConfigurator.  Individually select the desired web pages each group may access.  For example, a troubleshooting group could be created which has access only to selected Status and Diagnostics pages.");?>
        </p>
        <p>
          <?=gettext("A group icon that appears grey indicates that it is a system group and thus can't be modified or deleted.");?>
        </p>
      </td>
    </tr>
  </table>
  </td></tr>
</table>

<script type="text/javascript">
  window.setTimeout('afterload()', '10');
  function afterload() {
    <?php echo $script_tag ?>
  }
</script>
<?php include("fend.inc");?>
</body>
</html>
        
OpenPOWER on IntegriCloud