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         $pd->whereAdd("role != ''");
71         
72         if (!$pd->count()) {
73             return false;
74         }
75         return true;
76          
77     }
78     
79     
80     function currentProject($val = false)
81     {
82         // we do need the option for me to look at all projects...
83         static $currentProject = false;
84         if (empty($_SESSION[__CLASS__])) {
85             $_SESSION[__CLASS__] = array();
86         }
87         if ($val !== false) {
88             // attempt to set it..
89             $_SESSION[__CLASS__]['active_project_id'] = $val ;
90             $currentProject = false;
91             // reset to ensure not cached..
92         }
93         if ($currentProject !== false) {
94             return $currentProject;
95         }
96         
97         
98         $p = DB_DataObject::factory('Projects');
99         $ar = array();
100         if ($this->authUser) {
101             $p->applyFilters(array(), $this->authUser);
102             $p->whereAdd('id in (SELECT distinct(project_id) FROM mtrack_repos)');
103             unset($p->client_id);
104             $ar = $p->fetchAll('id', 'name');
105         }
106         
107         //print_r($ar);
108         
109         if (empty($_SESSION[__CLASS__]['active_project_id']) ||
110             !isset($ar[$_SESSION[__CLASS__]['active_project_id']]))
111         {
112             
113         
114             $p = DB_DataObject::factory('Projects');
115             $p->get('code', '*PUBLIC');
116             $id = $p->id;
117             foreach($ar as $k=>$v) {
118                 $id= $k;
119                 break;
120             }
121             
122         
123             $_SESSION[__CLASS__]['active_project_id'] = $id;
124             $currentProject = $_SESSION[__CLASS__]['active_project_id'];
125             return $id; // always allowed..
126         }
127         $currentProject = $_SESSION[__CLASS__]['active_project_id'];
128         return $_SESSION[__CLASS__]['active_project_id'];
129         
130         
131     }
132     
133     
134     function loadProjectList()
135     {
136         DB_DataObject::debugLevel(1);
137
138         $p = DB_DataObject::factory('Projects');
139         if (!$this->authUser) {
140             $p->code = '*PUBLIC';
141            
142             $ar = $p->fetchAll('id', 'name');
143         } else {
144             
145             $p->applyFilters(array(), $this->authUser);
146             $p->whereAdd('id in (SELECT distinct(project_id) FROM mtrack_repos)');
147             // $pd->whereAdd("role != ''");
148             
149             $p->orderBy('Projects.name ASC');
150             unset($p->client_id); // default projects serach enforces this..
151             $ar = $p->fetchAll('id', 'name');
152         }
153          
154         $this->elements['active_project_id'] = new HTML_Template_Flexy_Element();
155         $this->elements['active_project_id']->setOptions($ar);
156          
157         $this->elements['active_project_id']->setValue($this->currentProject());
158    
159         
160         
161     }
162     
163     
164     function getAuthUser()
165     {
166         $u = DB_DataObject::factory('Person');
167         if (!$u->isAuth()) {
168             return false;
169         }
170         return $u->getAuthUser();
171     }
172     /**
173      * base getAuth allows everyone in..
174      */
175     
176     function getAuth()
177     {
178         $this->registerClasses(); // to be destroyed??
179         
180         $ff = HTML_FlexyFramework::get();
181         if ($ff->cli) {
182             return true;
183         }
184         
185         // default timezone first..
186         $ff = HTML_FlexyFramework::get();
187         if (isset($ff->MTrack['timezone'])) {
188             date_default_timezone_set($ff->MTrack['timezone']);
189         }
190         
191         //MTrackConfig::boot(); // eak.. .remove me...
192       
193         $this->authUser = DB_DataObject::factory('Person')->getAuthUser();
194         
195         $this->loadProjectList();
196         
197         if (!$this->authUser) {
198             return true; // we do allow people in this far..
199         }
200         $this->authUserArray = $this->authUser->toArray();
201         unset($this->authUserArray['passwd']);
202          
203         // timezone setting... -- this may be a good addon to our core person class.
204         
205         if (!empty($this->authUser->timezone)) {
206             date_default_timezone_set($this->authUser->timezone);
207         }
208         
209         
210         
211          
212         /// fixme...
213         //$this->authUser = 
214         return true; // anyone at present..
215     }
216     function get($loc='')
217     {
218         // 
219         if (!empty($loc)) {
220             die ("invalid location". htmlspecialchars($loc));
221         }
222         if (!$this->authUser) {
223              return HTML_FlexyFramework::run('Wiki'); 
224         }
225         return HTML_FlexyFramework::run('Wiki/Today'); 
226  
227     }
228     function post()
229     {
230         header("Status: 404 Not Found");
231         die("not valid");
232     }
233     
234     
235     function initOptions()
236     {
237         
238          
239         $q = MTrackDB::q('select priorityname, value from priorities');
240
241         foreach ($q->fetchAll() as $row) {
242             $this->priorities[$row[0]] = $row[1];
243         }
244         $q = MTrackDB::q('select sevname, ordinal from severities');
245         
246         foreach ($q->fetchAll() as $row) {
247             $this->severities[$row[0]] = $row[1];
248         }
249
250     }
251     
252     function registerClasses()
253     {
254         require_once 'MTrack/Wiki.php';
255         require_once 'MTrack/Wiki/Item.php';
256       //  require_once 'MTrack/Milestone.php';
257   
258         
259         require_once 'MTrackWeb/LinkHandler.php';
260         require_once 'MTrack/Wiki/HTMLFormatter.php';
261         
262         $this->link = new MTrackWeb_LinkHandler();
263         MTrack_Wiki_HTMLFormatter::registerLinkHandler($this->link);
264  
265
266         $r = DB_DataObject::factory('mtrack_repos');
267         $r->loadFromPath('default/wiki');
268         MTrack_Wiki_Item::$repo = $r->impl();
269         
270         
271         
272         //MTrack_Wiki::register_macro('MilestoneSummary', array('MTrack_Milestone', 'macro_MilestoneSummary'));
273        // MTrack_Wiki::register_macro('BurnDown', array('MTrack_Milestone', 'macro_BurnDown'));
274         //MTrack_Wiki::register_macro('RunReport', array('MTrack_Report', 'macro_RunReport')); << fixme how are we to hanlde this..
275         //MTrack_Wiki::register_macro('TicketQuery', array('MTrack_Report', 'macro_TicketQuery'));
276         MTrack_Wiki::register_macro('IncludeWikiPage', array('MTrack_Wiki', 'macro_IncludeWiki'));
277         MTrack_Wiki::register_macro('IncludeHelpPage', array('MTrack_Wiki', 'macro_IncludeHelp'));
278         MTrack_Wiki::register_macro('Comment', array('MTrack_Wiki', 'macro_comment'));
279         MTrack_Wiki::register_processor('comment', array('MTrack_Wiki', 'processor_comment'));
280         MTrack_Wiki::register_processor('html', array('MTrack_Wiki', 'processor_html'));
281         MTrack_Wiki::register_processor('dataset', array('MTrack_Wiki', 'processor_dataset'));
282
283  
284         //MTrackSearchDB::register_indexer('ticket', array('MTrackIssue', 'index_issue'));
285         //MTrackSearchDB::register_indexer('wiki', array('MTrack_Wiki_Item', 'index_item'));
286
287
288
289         //MTrackWatch::registerEventTypes('ticket', array( 'ticket' => 'Tickets' ));
290         //MTrackWatch::registerEventTypes('milestone', array( 'ticket' => 'Tickets', 'changeset' => 'Code changes' ));
291         //MTrackWatch::registerEventTypes('repo', array( 'ticket' => 'Tickets', 'changeset' => 'Code changes' ));
292
293         // should this get registered here??
294         //MTrackCommitChecker::addCheck('Wiki');
295         
296         
297         
298    }
299     
300     function favicon()
301     {
302         return false;
303         /// FIXME - we should allow upload of a favion...
304         $ff = HTML_FlexyFramework::get();
305         
306         
307     }
308      
309     
310     /* renders the attachment list for a given object */
311     // was Attachments::render
312     // move it to MTrackWebAttachemnt...
313     
314   function attachmentsToHtml($object)
315   {
316     return 'TODO';
317     if (is_object($object)) {
318         $object = $object->toIdString(); // eg. ticket:1
319     }
320     $atts = MTrackDB::q('
321       select * from attachments
322       left join changes on (attachments.cid = changes.cid)
323       where attachments.object = ? order by changedate, filename',
324         $object)->fetchAll(PDO::FETCH_ASSOC);
325
326     if (count($atts) == 0) return '';
327
328     $max_dim = 150;
329
330     $html = "<div class='attachment-list'><b>Attachments</b><ul>";
331     foreach ($atts as $row) {
332       $url = "{$this->baseURL}/Attachment/$object/". $row['cid'] . '/' . $row['filename'];
333       
334       $html .= "<li><a class='attachment'" .
335         " href='$url'>".
336         "$row[filename]</a> ($row[size]) added by " .
337         $this->link->username($row['who'], array(
338           'no_image' => true
339         )) .
340         " " . $this->link->date($row['changedate']);
341         require_once 'MTrack/Attachment.php';
342       list($width, $height) = getimagesize(MTrackAttachment::local_path($row['hash']));
343       if ($width + $height) {
344         /* limit maximum size */
345         if ($width > $max_dim) {
346           $height *= $max_dim / $width;
347           $width = $max_dim;
348         }
349         if ($height > $max_dim) {
350           $width *= $max_dim / $height;
351           $height = $max_dim;
352         }
353         $html .= "<br><a href='$url'><img src='$url' width='$width' border='0' height='$height'></a>";
354       }
355
356       $html .= "</li>\n";
357     }
358     $html .= "</ul></div>";
359     return $html;
360   }
361     function jerr($str, $errors=array()) // standard error reporting..
362     {
363         require_once 'Services/JSON.php';
364         $json = new Services_JSON();
365         
366         // log all errors!!!
367         //$this->addEvent("ERROR", false, $str);
368         
369         if ((isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE']))) {
370             header('Content-type: text/html');
371             echo "<HTML><HEAD></HEAD><BODY>";
372             echo  $json->encodeUnsafe(array(
373                     'success'=> false, 
374                     'message' => $str, // compate with exeption / loadexception.
375
376                     'errors' => $errors ? $errors : true, // used by forms to flag errors.
377                     'authFailure' => !empty($errors['authFailure']),
378                 ));
379             echo "</BODY></HTML>";
380             exit;
381         }
382         
383         echo $json->encode(array(
384             'success'=> false, 
385             'data'=> array(), 
386             'message' => $str, // compate with exeption / loadexception.
387             'errors' => $errors ? $errors : true, // used by forms to flag errors.
388             'authFailure' => !empty($errors['authFailure']),
389         ));
390         exit;
391         
392     }
393     function jok($str)
394     {
395         
396         require_once 'Services/JSON.php';
397         $json = new Services_JSON();
398         
399         if ( (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE']))
400         
401         ) {
402             header('Content-type: text/html');
403             echo "<HTML><HEAD></HEAD><BODY>";
404             echo  $json->encodeUnsafe(array('success'=> true, 'data' => $str));
405             echo "</BODY></HTML>";
406             exit;
407         }
408         
409         
410         echo  $json->encode(array('success'=> true, 'data' => $str));
411         exit;
412         
413     }
414     /**
415      * output data for grids or tree
416      * @ar {Array} ar Array of data
417      * @total {Number|false} total number of records (or false to return count(ar)
418      * @extra {Array} extra key value list of data to pass as extra data.
419      * 
420      */
421     function jdata($ar,$total=false, $extra=array())
422     {
423         // should do mobile checking???
424         if ($total == false) {
425             $total = count($ar);
426         }
427         $extra=  $extra ? $extra : array();
428         require_once 'Services/JSON.php';
429         $json = new Services_JSON();
430         echo $json->encode(array('success' =>  true, 'total'=> $total, 'data' => $ar) + $extra);    
431         exit;
432         
433         
434     }
435     
436     /**
437      * ---------------- Logging ---------------   
438      */
439     
440     /**
441      * addEventOnce:
442      * Log an action (only if it has not been logged already.
443      * 
444      * @param {String} action  - group/name of event
445      * @param {DataObject|false} obj - dataobject action occured on.
446      * @param {String} any remarks 
447      */
448     
449     function addEventOnce($act, $obj = false, $remarks = '') 
450     {
451         $au = $this->getAuthUser();
452         $e = DB_DataObject::factory('Events');
453         $e->init($act,$obj,$remarks); 
454         if ($e->find(true)) {
455             return;
456         }
457         $this->addEvent($act, $obj, $remarks);
458     }
459     /**
460      * addEvent:
461      * Log an action.
462      * 
463      * @param {String} action  - group/name of event
464      * @param {DataObject|false} obj - dataobject action occured on.
465      * @param {String} any remarks 
466      */
467     
468     function addEvent($act, $obj = false, $remarks = '') 
469     {
470         $au = $this->getAuthUser();
471         $e = DB_DataObject::factory('Events');
472         $e->init($act,$obj,$remarks); 
473          
474         $e->event_when = date('Y-m-d H:i:s');
475         
476         $eid = $e->insert();
477         $ff  = HTML_FlexyFramework::get();
478         if (empty($ff->Pman['event_log_dir'])) {
479             return;
480         }
481         $file = $ff->Pman['event_log_dir']. date('/Y/m/d/'). $eid . ".php";
482         if (!file_exists(dirname($file))) {
483             mkdir(dirname($file),0700,true);
484         }
485         file_put_contents($file, var_export(array(
486             'REQUEST_URI' => empty($_SERVER['REQUEST_URI']) ? 'cli' : $_SERVER['REQUEST_URI'],
487             'GET' => empty($_GET) ? array() : $_GET,
488             'POST' => empty($_POST) ? array() : $_POST,
489         ), true));
490         
491         
492         
493     }
494
495     
496     
497
498 }