GroupRights.php
[Pman.Admin] / GroupRights.php
1 <?php
2 /**
3  * 
4  * Part of Core..
5  * 
6  */
7 require_once 'Pman.php';
8
9 class Pman_Admin_GroupRights extends Pman
10 {
11     function getAuth() {
12         parent::getAuth(); // load company!
13         $au = $this->getAuthUser();
14         if (!$au) {
15             $this->jerr("Not authenticated", array('authFailure' => true));
16         }
17         
18         if ($au->company()->comptype !='OWNER') {
19             $this->jerr("Error", "only company owners can manage groups");
20         }
21         
22         $this->authUser = $au;
23         return true;
24     }
25     
26     // perms - any table that can be modified by the user should be listed here..
27     // without it, our perms manager should deny writing via the web interface...
28     
29     // FOR PERMS - SEE THE DATAOBJECT!
30     
31     function get($v, $opts = Array())
32     {
33         // must recieve a group..
34         if (!isset($_GET['group_id']) || (int)$_GET['group_id'] < 0) {
35             $this->jerr("NO GROUP");
36         }
37         
38         if (!$this->checkPerm('E')) { // editing groups..
39             $this->jerr("PERMISSION DENIED");
40         }
41         
42         $g = DB_DataObject::Factory('core_group');
43         if (!$g->get($_GET['group_id'])) {
44             $this->jerr("group is invalid");
45         }
46         //print_r($g);
47          //   DB_DataObject::debugLevel(1);
48         $p = DB_DataObject::factory('core_group_right');
49         $p->group_id = (int)$_GET['group_id'];
50         $p->find();
51         $cur = array();
52     
53         while ($p->fetch()) {
54             $cur[$p->rightname] = clone($p);
55         }
56         
57 //        print_r($cur);exit;
58         
59         $e = -1;
60         $ar = array();
61         // echo "<PRE>"; print_r($p->defaultPermData() );
62         foreach($p->defaultPermData() as $k => $defdata) {
63             
64             if (empty($defdata[0])) { // no admin data available..
65                 continue;
66             }
67             if (!isset($cur[$k])) {
68                 // then there is no current access right for it..
69                 //DB_DataObject::debugLevel(1);
70                 $gr = DB_DataObject::factory('core_group_right');
71                 $gr->group_id = (int)$_GET['group_id'];
72                 $gr->rightname = $k;
73                 $gr->accessmask = $g->type == 2 ? '' : $defdata[1]; // set to defaults.. unless it's a contact group.
74                 $gr->insert();
75                 $cur[$k] = clone($gr);
76             }
77             
78             
79             $ar[] = array(
80                 'id' => $cur[$k]->id * 1, //
81                 'rightname' => $k,
82                 'descript' => isset($defdata[2]) ? $defdata[2] : '' ,
83                 'accessmask' => $cur[$k]->accessmask,
84                 'FullMask' => $defdata[0],
85                 'group_id' => (int)$_GET['group_id']
86             );
87                 
88         }
89         print_r($ar);exit;
90         $this->jdata($ar);
91         
92          
93     }
94     
95     
96     // post.. 
97     function post($v)
98     {
99         if (!isset($_POST['group_id']) || (int)$_POST['group_id'] < 0) {
100             $this->jerr("NO GROUP");
101         }
102         
103         if (!$this->checkPerm('E')) { // editing groups..
104             $this->jerr("PERMISSION DENIED");
105         }
106         
107         // add or update..
108         if (!empty($_POST['dataUpdate'])) {
109             foreach($_POST['dataUpdate'] as $id => $ac) {
110                 $id  = (int)$id;
111                 $p = DB_DataObject::factory('core_group_right');
112                 $p->group_id = (int)$_POST['group_id'];
113                 if (!$p->get($id)) {
114                     $this->jerr("could not find gid:{$p->group_id} and $id");
115                     continue; // errro cond.
116                 }
117                 $po = clone($p);
118                 $p->accessmask = $ac;
119                 $p->validate(); // ensure that the basic perms can not be removed
120                 $p->update($po);
121             }
122         }
123         if (!empty($_POST['dataAdd'])) {
124             foreach($_POST['dataAdd'] as $perm => $ac) {
125                 $p = DB_DataObject::factory('core_group_right');
126                 $p->group_id = (int)$_POST['group_id'];
127                 $p->rightname = $perm;
128                 $p->accessmask = $ac;
129                 $p->validate(); // ensure that the basic perms can not be removed
130                 $p->insert();
131             }
132         }
133         $this->jok("done");
134         
135         
136         
137     }
138     
139     function checkPerm($lvl)
140     {
141         return $this->hasPerm('Core.Groups', $lvl);
142     }
143     
144 }