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