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