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