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