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