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