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