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