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