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