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