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