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