RooTrait.php
[Pman.Core] / RooTrait.php
1 <?php
2
3 trait Pman_Core_RooTrait {
4     
5     var $validTables = false; 
6     
7     var $key;
8     
9     var $transObj = false;
10     
11     var $debugEnabled = true;
12     
13     function init() 
14     {
15         if (isset($this->_hasInit)) {
16             return;
17         }
18         
19         $this->_hasInit = true;
20         
21         $boot = HTML_FlexyFramework::get();
22         
23         $this->appName= $boot->appName;
24         $this->appNameShort= $boot->appNameShort;
25         $this->appModules= $boot->enable;
26         $this->isDev = empty($boot->Pman['isDev']) ? false : $boot->Pman['isDev'];
27         $this->appDisable = $boot->disable;
28         $this->appDisabled = explode(',', $boot->disable);
29         $this->version = $boot->version; 
30         $this->uiConfig = empty($boot->Pman['uiConfig']) ? false : $boot->Pman['uiConfig']; 
31         
32         if (!empty($ff->Pman['local_autoauth']) && 
33             ($_SERVER['SERVER_ADDR'] == '127.0.0.1') &&
34             ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') 
35         ) {
36             $this->isDev = true;
37         }
38         
39     }
40     
41     function checkDebug($req = false)
42     {
43         $req =  $req === false  ? $_REQUEST : $req;
44         if (isset($req['_debug']) 
45                 && 
46                 $this->authUser
47                 &&
48                 (
49                     (
50                         method_exists($this->authUser,'canDebug')
51                         &&
52                         $this->authUser->canDebug()
53                     )
54                 ||
55                     (  
56                     
57                         method_exists($this->authUser,'groups') 
58                         &&
59                         is_a($this->authUser, 'Pman_Core_DataObjects_Person')
60                         &&
61                         in_array('Administrators', $this->authUser->groups('name'))
62                     )
63                 )
64                 
65             ){
66             DB_DAtaObject::debuglevel((int)$req['_debug']);
67         }
68         
69     }
70     
71     function checkDebugPost()
72     {
73         return (!empty($_GET['_post']) || !empty($_GET['_debug_post'])) && 
74                     $this->authUser && 
75                     method_exists($this->authUser,'groups') &&
76                     in_array('Administrators', $this->authUser->groups('name')); 
77         
78     }
79     
80     function dataObject($tab)
81     {
82         if (is_array($this->validTables) &&  !in_array($tab, $this->validTables)) {
83             $this->jerr("Invalid url - not listed in validTables");
84         }
85         
86         $tab = str_replace('/', '',$tab); // basic protection??
87         
88         $x = DB_DataObject::factory($tab);
89         
90         if (!is_a($x, 'DB_DataObject')) {
91             $this->jerr('invalid url - no dataobject');
92         }
93     
94         return $x;
95     }
96     
97     function selectSingle($x, $id, $req=false)
98     {
99         $_columns = !empty($req['_columns']) ? explode(',', $req['_columns']) : false;
100
101         if (!is_array($id) && empty($id)) {
102             
103             if (method_exists($x, 'toRooSingleArray')) {
104                 $this->jok($x->toRooSingleArray($this->getAuthUser(), $req));
105             }
106             
107             if (method_exists($x, 'toRooArray')) {
108                 $this->jok($x->toRooArray($req));
109             }
110             
111             $this->jok($x->toArray());
112         }
113        
114         
115         $this->loadMap($x, array(
116                     'columns' => $_columns,
117                      
118             ));
119         if ($req !== false) { 
120             $this->setFilters($x, $req);
121         }
122         
123         // DB_DataObject::DebugLevel(1);
124         if (is_array($id)) {
125             // lookup...
126             $x->setFrom($req['lookup'] );
127             $x->limit(1);
128             if (!$x->find(true)) {
129                 if (!empty($id['_id'])) {
130                     // standardize this?
131                     $this->jok($x->toArray());
132                 }
133                 $this->jok(false);
134             }
135             
136         } else if (!$x->get($id)) {
137             $this->jerr("selectSingle: no such record ($id)");
138         }
139         
140         // ignore perms if comming from update/insert - as it's already done...
141         if ($req !== false && !$this->checkPerm($x,'S'))  {
142             $this->jerr("PERMISSION DENIED - si");
143         }
144         // different symantics on all these calls??
145         if (method_exists($x, 'toRooSingleArray')) {
146             $this->jok($x->toRooSingleArray($this->authUser, $req));
147         }
148         if (method_exists($x, 'toRooArray')) {
149             $this->jok($x->toRooArray($req));
150         }
151         
152         $this->jok($x->toArray());
153         
154         
155     }
156     
157     /*
158      * From Pman.php
159      */
160     
161     static $permitError = false;
162     
163     function onPearError($err)
164     {
165         static $reported = false;
166         if ($reported) {
167             return;
168         }
169         
170         if (Pman::$permitError) {
171              
172             return;
173             
174         }
175         
176         $reported = true;
177         $out = $err->toString();
178         
179         $ret = array();
180         $n = 0;
181         
182         foreach($err->backtrace as $b) {
183             $ret[] = @$b['file'] . '(' . @$b['line'] . ')@' .   @$b['class'] . '::' . @$b['function'];
184             if ($n > 20) {
185                 break;
186             }
187             $n++;
188         }
189         //convert the huge backtrace into something that is readable..
190         $out .= "\n" . implode("\n",  $ret);
191      
192         print_R($out);exit;
193         
194         $this->jerr($out);
195         
196     }
197     
198     function addEvent($act, $obj = false, $remarks = '') 
199     {
200         if (!empty(HTML_FlexyFramework::get()->Pman['disable_events'])) {
201             return;
202         }
203         
204         $au = $this->getAuthUser();
205        
206         $e = DB_DataObject::factory('Events');
207         $e->init($act,$obj,$remarks); 
208          
209         $e->event_when = date('Y-m-d H:i:s');
210         
211         $eid = $e->insert();
212         
213         // fixme - this should be in onInsert..
214         $wa = DB_DataObject::factory('core_watch');
215         if (method_exists($wa,'notifyEvent')) {
216             $wa->notifyEvent($e); // trigger any actions..
217         }
218         
219         $e->onInsert(isset($_REQUEST) ? $_REQUEST : array() , $this);
220         
221         return $e;
222         
223     }
224     
225     function getAuthUser()
226     {
227         die('Get auth user is not implement.');
228     }
229 }