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