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