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