MTrackWeb.php
[web.mtrack] / MTrackWeb.php
1 <?php
2 /**
3  * every class extends this...
4  */
5  
6  
7 class MTrackWeb extends HTML_FlexyFramework_Page
8 {
9     var $template = 'wiki.html';
10     var $priorities = array();
11     var $severities = array();
12     var $link = false; // the link handler..
13     
14     function hasPerm($what, $cando) {
15         // our whole perm logic sits in here....
16         
17         // here's how it works
18         // a) anonymous users - not authenticated.
19         // - can see projects that are in *PUBLIC project "MTrack.Repos", "S"
20         // - can see bugs that are in *PUBLIC project "MTrack.Issue", "S"
21         // - can see bugs that are in *PUBLIC project "MTrack.Wiki", "S"
22         if (!$this->authUser) {
23             if ($cando == 'S' &&
24                     in_array( $what , array( 'MTrack.Repos', 'MTrack.Issue', 'MTrack.Wiki'))) {
25                 
26                 return true; // not a diffinative answer...
27             }
28             return false;
29         }
30         
31         return $this->authUser->hasPerm($what, $cando); 
32     }
33     
34     function projectPerm($project_id, $what, $cando)
35     {
36         if (!$project_id) {
37             return false;
38         }
39         $p = DB_DataObject::factory('Projects');
40         $p->get($project_id);
41         if (!$this->authUser) {
42             if ($p->code != '*PUBLIC') {
43                 return false; // only public projects
44             }
45             if ($cando != 'S') {
46                 return false;
47             }
48             // all permissions to view public stuff.
49             return true;
50         }
51         if (!$this->authUser->hasPerm($what, $cando)) {
52             echo "NO PERMS $what $cando";
53             echo '<PRE>'; print_r($this->authUser->getPerms());
54             return false;
55         }
56         // membership rules?
57         //echo "COMPTYPE " . $this->authUser->company()->comptype ;
58         if ($this->authUser->company()->comptype == 'OWNER') {
59                 
60             if ($this->authUser->hasPerm('Core.Projects_All', $cando)) { // they can do what they like on all projects.
61                return true;
62             }
63            // return $p->hasPerm($what, $cando);
64         }
65         // otherwise they have to be a team member of that project.
66         
67         $pd = DB_DataObject::factory('ProjectDirectory');
68         $pd->project_id = $project_id;
69         $pd->user_id = $this->authUser->id;
70         if (!$pd->count()) {
71             return false;
72         }
73         return true;
74          
75     }
76     
77     function loadProjectList()
78     {
79         
80         $p = DB_DataObject::factory('Projects');
81         if (!$this->authUser) {
82             $p->code = '*PUBLIC';
83            
84             $ar = $p->fetchAll('id', 'name');
85         } else {
86             
87             $p->applyFilters(array(), $this->authUser);
88             $p->whereAdd('id in (SELECT distinct(project_id) FROM mtrack_repos)');
89             $ar = $p->fetchAll('id', 'name');
90         }
91          
92         $this->elements['active_project_id'] = new HTML_Template_Flexy_Element();
93         $this->elements['active_project_id']->setOptions($ar);
94         
95         if (empty($_SESSION[__CLASS__]['active_project_id']) ||
96             !isset($ar[$_SESSION[__CLASS__]['active_project_id']]))
97         {
98             $p = DB_DataObject::factory('Projects');
99              
100             $p->get('code', '*PUBLIC');
101             $_SESSION[__CLASS__]['active_project_id'] = $p->id;
102         }
103         $this->elements['active_project_id']->setValue( $_SESSION[__CLASS__]['active_project_id']);
104    
105         
106         
107     }
108     
109     
110     function getAuthUser()
111     {
112         $u = DB_DataObject::factory('Person');
113         if (!$u->isAuth()) {
114             return false;
115         }
116         return $u->getAuthUser();
117     }
118     /**
119      * base getAuth allows everyone in..
120      */
121     
122     function getAuth()
123     {
124         $this->registerClasses(); // to be destroyed??
125         
126         $ff = HTML_FlexyFramework::get();
127         if ($ff->cli) {
128             return true;
129         }
130         
131         // default timezone first..
132         $ff = HTML_FlexyFramework::get();
133         if (isset($ff->MTrack['timezone'])) {
134             date_default_timezone_set($ff->MTrack['timezone']);
135         }
136         
137         //MTrackConfig::boot(); // eak.. .remove me...
138       
139         $this->authUser = DB_DataObject::factory('Person')->getAuthUser();
140         $this->loadProjectList();
141         
142         if (!$this->authUser) {
143             return true; // we do allow people in this far..
144         }
145         
146          
147         // timezone setting... -- this may be a good addon to our core person class.
148         
149         if (!empty($this->authUser->timezone)) {
150             date_default_timezone_set($this->authUser->timezone);
151         }
152         
153         
154         
155          
156         /// fixme...
157         //$this->authUser = 
158         return true; // anyone at present..
159     }
160     function get($loc='')
161     {
162         // 
163         if (!empty($loc)) {
164             die ("invalid location". htmlspecialchars($loc));
165         }
166         if (!$this->authUser) {
167              return HTML_FlexyFramework::run('Wiki'); 
168         }
169         return HTML_FlexyFramework::run('Wiki/Today'); 
170  
171     }
172     function post()
173     {
174         header("Status: 404 Not Found");
175         die("not valid");
176     }
177     
178     
179     function initOptions()
180     {
181         
182          
183         $q = MTrackDB::q('select priorityname, value from priorities');
184
185         foreach ($q->fetchAll() as $row) {
186             $this->priorities[$row[0]] = $row[1];
187         }
188         $q = MTrackDB::q('select sevname, ordinal from severities');
189         
190         foreach ($q->fetchAll() as $row) {
191             $this->severities[$row[0]] = $row[1];
192         }
193
194     }
195     
196     function registerClasses()
197     {
198         require_once 'MTrack/Wiki.php';
199         require_once 'MTrack/Wiki/Item.php';
200         require_once 'MTrack/Milestone.php';
201   
202         
203         require_once 'MTrackWeb/LinkHandler.php';
204         require_once 'MTrack/Wiki/HTMLFormatter.php';
205         
206         $this->link = new MTrackWeb_LinkHandler();
207         MTrack_Wiki_HTMLFormatter::registerLinkHandler($this->link);
208  
209
210         $r = DB_DataObject::factory('mtrack_repos');
211         $r->loadFromPath('default/wiki');
212         MTrack_Wiki_Item::$repo = $r->impl();
213         
214         
215         
216         //MTrack_Wiki::register_macro('MilestoneSummary', array('MTrack_Milestone', 'macro_MilestoneSummary'));
217        // MTrack_Wiki::register_macro('BurnDown', array('MTrack_Milestone', 'macro_BurnDown'));
218         //MTrack_Wiki::register_macro('RunReport', array('MTrack_Report', 'macro_RunReport')); << fixme how are we to hanlde this..
219         //MTrack_Wiki::register_macro('TicketQuery', array('MTrack_Report', 'macro_TicketQuery'));
220         MTrack_Wiki::register_macro('IncludeWikiPage', array('MTrack_Wiki', 'macro_IncludeWiki'));
221         MTrack_Wiki::register_macro('IncludeHelpPage', array('MTrack_Wiki', 'macro_IncludeHelp'));
222         MTrack_Wiki::register_macro('Comment', array('MTrack_Wiki', 'macro_comment'));
223         MTrack_Wiki::register_processor('comment', array('MTrack_Wiki', 'processor_comment'));
224         MTrack_Wiki::register_processor('html', array('MTrack_Wiki', 'processor_html'));
225         MTrack_Wiki::register_processor('dataset', array('MTrack_Wiki', 'processor_dataset'));
226
227  
228         //MTrackSearchDB::register_indexer('ticket', array('MTrackIssue', 'index_issue'));
229         //MTrackSearchDB::register_indexer('wiki', array('MTrack_Wiki_Item', 'index_item'));
230
231
232
233         //MTrackWatch::registerEventTypes('ticket', array( 'ticket' => 'Tickets' ));
234         //MTrackWatch::registerEventTypes('milestone', array( 'ticket' => 'Tickets', 'changeset' => 'Code changes' ));
235         //MTrackWatch::registerEventTypes('repo', array( 'ticket' => 'Tickets', 'changeset' => 'Code changes' ));
236
237         // should this get registered here??
238         //MTrackCommitChecker::addCheck('Wiki');
239         
240         
241         
242    }
243     
244     function favicon()
245     {
246         return false;
247         /// FIXME - we should allow upload of a favion...
248         $ff = HTML_FlexyFramework::get();
249         
250         
251     }
252      
253     
254     /* renders the attachment list for a given object */
255     // was Attachments::render
256     // move it to MTrackWebAttachemnt...
257     
258   function attachmentsToHtml($object)
259   {
260     return 'TODO';
261     if (is_object($object)) {
262         $object = $object->toIdString(); // eg. ticket:1
263     }
264     $atts = MTrackDB::q('
265       select * from attachments
266       left join changes on (attachments.cid = changes.cid)
267       where attachments.object = ? order by changedate, filename',
268         $object)->fetchAll(PDO::FETCH_ASSOC);
269
270     if (count($atts) == 0) return '';
271
272     $max_dim = 150;
273
274     $html = "<div class='attachment-list'><b>Attachments</b><ul>";
275     foreach ($atts as $row) {
276       $url = "{$this->baseURL}/Attachment/$object/". $row['cid'] . '/' . $row['filename'];
277       
278       $html .= "<li><a class='attachment'" .
279         " href='$url'>".
280         "$row[filename]</a> ($row[size]) added by " .
281         $this->link->username($row['who'], array(
282           'no_image' => true
283         )) .
284         " " . $this->link->date($row['changedate']);
285         require_once 'MTrack/Attachment.php';
286       list($width, $height) = getimagesize(MTrackAttachment::local_path($row['hash']));
287       if ($width + $height) {
288         /* limit maximum size */
289         if ($width > $max_dim) {
290           $height *= $max_dim / $width;
291           $width = $max_dim;
292         }
293         if ($height > $max_dim) {
294           $width *= $max_dim / $height;
295           $height = $max_dim;
296         }
297         $html .= "<br><a href='$url'><img src='$url' width='$width' border='0' height='$height'></a>";
298       }
299
300       $html .= "</li>\n";
301     }
302     $html .= "</ul></div>";
303     return $html;
304   }
305     function jerr($str, $errors=array()) // standard error reporting..
306     {
307         require_once 'Services/JSON.php';
308         $json = new Services_JSON();
309         
310         // log all errors!!!
311         //$this->addEvent("ERROR", false, $str);
312         /*
313         if (!empty($_REQUEST['returnHTML']) || 
314             (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE']))
315         ) {
316             header('Content-type: text/html');
317             echo "<HTML><HEAD></HEAD><BODY>";
318             echo  $json->encodeUnsafe(array(
319                     'success'=> false, 
320                     'message' => $str, // compate with exeption / loadexception.
321
322                     'errors' => $errors ? $errors : true, // used by forms to flag errors.
323                     'authFailure' => !empty($errors['authFailure']),
324                 ));
325             echo "</BODY></HTML>";
326             exit;
327         }
328         */
329         echo $json->encode(array(
330             'success'=> false, 
331             'data'=> array(), 
332             'message' => $str, // compate with exeption / loadexception.
333             'errors' => $errors ? $errors : true, // used by forms to flag errors.
334             'authFailure' => !empty($errors['authFailure']),
335         ));
336         exit;
337         
338     }
339     function jok($str)
340     {
341         
342         require_once 'Services/JSON.php';
343         $json = new Services_JSON();
344         /*
345         if (!empty($_REQUEST['returnHTML']) || 
346             (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE']))
347         
348         ) {
349             header('Content-type: text/html');
350             echo "<HTML><HEAD></HEAD><BODY>";
351             echo  $json->encodeUnsafe(array('success'=> true, 'data' => $str));
352             echo "</BODY></HTML>";
353             exit;
354         }
355         */
356         
357         echo  $json->encode(array('success'=> true, 'data' => $str));
358         exit;
359         
360     }
361     /**
362      * output data for grids or tree
363      * @ar {Array} ar Array of data
364      * @total {Number|false} total number of records (or false to return count(ar)
365      * @extra {Array} extra key value list of data to pass as extra data.
366      * 
367      */
368     function jdata($ar,$total=false, $extra=array())
369     {
370         // should do mobile checking???
371         if ($total == false) {
372             $total = count($ar);
373         }
374         $extra=  $extra ? $extra : array();
375         require_once 'Services/JSON.php';
376         $json = new Services_JSON();
377         echo $json->encode(array('success' =>  true, 'total'=> $total, 'data' => $ar) + $extra);    
378         exit;
379         
380         
381     }
382     
383     /**
384      * ---------------- Logging ---------------   
385      */
386     
387     /**
388      * addEventOnce:
389      * Log an action (only if it has not been logged already.
390      * 
391      * @param {String} action  - group/name of event
392      * @param {DataObject|false} obj - dataobject action occured on.
393      * @param {String} any remarks 
394      */
395     
396     function addEventOnce($act, $obj = false, $remarks = '') 
397     {
398         $au = $this->getAuthUser();
399         $e = DB_DataObject::factory('Events');
400         $e->init($act,$obj,$remarks); 
401         if ($e->find(true)) {
402             return;
403         }
404         $this->addEvent($act, $obj, $remarks);
405     }
406     /**
407      * addEvent:
408      * Log an action.
409      * 
410      * @param {String} action  - group/name of event
411      * @param {DataObject|false} obj - dataobject action occured on.
412      * @param {String} any remarks 
413      */
414     
415     function addEvent($act, $obj = false, $remarks = '') 
416     {
417         $au = $this->getAuthUser();
418         $e = DB_DataObject::factory('Events');
419         $e->init($act,$obj,$remarks); 
420          
421         $e->event_when = date('Y-m-d H:i:s');
422         
423         $eid = $e->insert();
424         $ff  = HTML_FlexyFramework::get();
425         if (empty($ff->Pman['event_log_dir'])) {
426             return;
427         }
428         $file = $ff->Pman['event_log_dir']. date('/Y/m/d/'). $eid . ".php";
429         if (!file_exists(dirname($file))) {
430             mkdir(dirname($file),0700,true);
431         }
432         file_put_contents($file, var_export(array(
433             'REQUEST_URI' => empty($_SERVER['REQUEST_URI']) ? 'cli' : $_SERVER['REQUEST_URI'],
434             'GET' => empty($_GET) ? array() : $_GET,
435             'POST' => empty($_POST) ? array() : $_POST,
436         ), true));
437         
438         
439         
440     }
441
442     
443     
444
445 }