Pman.php
[Pman.Base] / Pman.php
1 <?php 
2 /**
3  * Pman Base class
4  * 
5  * Provides:
6  *  - base application setup (variables etc to javascript)
7  * 
8  *  - authentication and permission info about user / application
9  *  - json output methods.
10  *  - file upload error checking - checkFileUploadError
11  *  - logging to event table
12  *  - sendTemplate code (normally use the Person version for sending to specific people..)
13  * 
14  *  - doc managment code?? - remarks and tracking??? - MOVEME
15  *  - authentication link checking?? MOVEME?
16  *  - authentication reset password ?? MOVEME?
17  *  ?? arrayClean.. what's it doing here?!? ;)
18  * 
19  * Usefull implemetors
20  * DB_DataObject*:*toEventString (for logging - this is generically prefixed to all database operations.)
21  *   - any data object where this method exists, the result will get prefixed to the log remarks
22  */
23
24 class Pman extends HTML_FlexyFramework_Page 
25 {
26     var $appName= "";
27     var $appLogo= "";
28     var $appShortName= "";
29     var $appVersion = "1.8";
30     var $version = 'dev';
31     var $onloadTrack = 0;
32     var $linkFail = "";
33     var $showNewPass = 0;
34     var $logoPrefix = '';
35     var $appModules = '';
36     var $appDisabled = array(); // array of disabled modules..
37                     // (based on config option disable)
38     
39     var $authUser; // always contains the authenticated user..
40     
41     var $disable_jstemplate = false; /// disable inclusion of jstemplate code..
42     var $company = false;
43     
44     /**
45      * ------------- Standard getAuth/get/post methods of framework.
46      * 
47      * 
48      */
49     
50     function getAuth() // everyone allowed in!!!!!
51     {
52         $this->loadOwnerCompany();
53         
54         return true;
55         
56     }
57     
58     function init() 
59     {
60         if (isset($this->_hasInit)) {
61             return;
62         }
63         $this->_hasInit = true;
64          // move away from doing this ... you can access bootLoader.XXXXXX in the master template..
65         $boot = HTML_FlexyFramework::get();
66         // echo'<PRE>';print_R($boot);exit;
67         $this->appName= $boot->appName;
68         $this->appNameShort= $boot->appNameShort;
69         
70         
71         $this->appModules= $boot->enable;
72         
73 //        echo $this->arrayToJsInclude($files);        
74         $this->isDev = empty($boot->Pman['isDev']) ? false : $boot->Pman['isDev'];
75         
76         $this->appDisable = $boot->disable;
77         $this->appDisabled = explode(',', $boot->disable);
78         $this->version = $boot->version; 
79         $this->uiConfig = empty($boot->Pman['uiConfig']) ? false : $boot->Pman['uiConfig']; 
80         
81         if (!empty($ff->Pman['local_autoauth']) && 
82             ($_SERVER['SERVER_ADDR'] == '127.0.0.1') &&
83             ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') 
84         ) {
85             $this->isDev = true;
86         }
87         
88         // if a file Pman_{module}_Pman exists.. and it has an init function... - call that..
89         
90         //var_dump($this->appModules);
91         
92         
93         
94     }
95     /*
96      * module init is only loaded on main page call, and includes checks for configuration settings.
97      */
98     function initModules()
99     {
100         foreach(explode(',',$this->appModules) as $m) {
101             $cls = 'Pman_'. $m . '_Pman';
102             //echo $cls;
103             //echo $this->rootDir . '/'.str_replace('_','/', $cls). '.php';
104             
105             if (!file_exists($this->rootDir . '/'.str_replace('_','/', $cls). '.php')) {
106                 continue;
107             }
108             require_once str_replace('_','/', $cls). '.php';
109             $c = new $cls();
110             if (method_exists($c,'init')) {
111                 $c->init($this);
112             }
113         }
114     }
115     
116     
117     
118     function get($base) 
119     {
120         $this->init();
121         if (empty($base)) {
122             $this->initModules();
123         }
124         
125             //$this->allowSignup= empty($opts['allowSignup']) ? 0 : 1;
126         $bits = explode('/', $base);
127         //print_R($bits);
128         if ($bits[0] == 'Link') {
129             $this->linkFail = $this->linkAuth(@$bits[1],@$bits[2]);
130             header('Content-type: text/html; charset=utf-8');
131             return;
132         }
133         
134         // should really be moved to Login...
135         
136         if ($bits[0] == 'PasswordReset') {
137             $this->linkFail = $this->resetPassword(@$bits[1],@$bits[2],@$bits[3]);
138             header('Content-type: text/html; charset=utf-8');
139             return;
140         } 
141          
142         $au = $this->getAuthUser();
143         if ($au) {
144             $ff= HTML_FlexyFramework::get();
145            
146             if (!empty($ff->Pman['auth_comptype']) && $au->id > 0 &&
147                 ( !$au->company_id || ($ff->Pman['auth_comptype'] != $au->company()->comptype))) {
148          
149                 $au->logout();
150                 
151                 $this->jerr("Login not permited to outside companies - please reload");
152             }
153             $this->addEvent("RELOAD");
154         }
155         
156         
157         if (strlen($base)) {
158             $this->addEvent("BADURL", false, $base);
159             $this->jerr("invalid url");
160         }
161         // deliver template
162         if (isset($_GET['onloadTrack'])) {
163             $this->onloadTrack = (int)$_GET['onloadTrack'];
164         }
165         // getting this to work with xhtml is a nightmare
166         // = nbsp / <img> issues screw everyting up.
167          //var_dump($this->isDev);
168         // force regeneration on load for development enviroments..
169         
170         HTML_FlexyFramework::get()->generateDataobjectsCache($this->isDev);
171         
172         //header('Content-type: application/xhtml+xml; charset=utf-8');
173         
174         
175         
176         if ($this->company && $this->company->logo_id) {
177             $im = DB_DataObject::Factory('Images');
178             $im->get($this->company->logo_id);
179             $this->appLogo = $this->baseURL . '/Images/Thumb/300x100/'. $this->company->logo_id .'/' . $im->filename;
180         }
181         
182         header('Content-type: text/html; charset=utf-8');
183          
184     }
185     function post($base) {
186         return $this->get($base);
187     }
188     
189     
190     // --------------- AUTHENTICATION or  system information
191     /**
192      * loadOwnerCompany:
193      * finds the compay with comptype=='OWNER'
194      *
195      * @return {Pman_Core_DataObjects_Companies} the owner company
196      */
197     function loadOwnerCompany()
198     {
199         // only applies if authtable is person..
200         $ff = HTML_FlexyFramework::get();
201         if (!empty($ff->Pman['authTable']) && $ff->Pman['authTable'] != 'Person') {
202             return false;
203         }
204         
205         $this->company = DB_DataObject::Factory('Companies');
206         if (!is_a($this->company, 'DB_DataObject')) { // non-core pman projects
207             return false; 
208         }
209         $this->company->get('comptype', 'OWNER');
210         return $this->company;
211     }
212     
213     
214     
215     /**
216      * getAuthUser: - get the authenticated user..
217      *
218      * @return {DB_DataObject} of type Pman[authTable] if authenticated.
219      */
220     
221     function getAuthUser()
222     {
223         if (!empty($this->authUser)) {
224             return $this->authUser;
225         }
226         $ff = HTML_FlexyFramework::get();
227         $tbl = empty($ff->Pman['authTable']) ? 'Person' : $ff->Pman['authTable'];
228         
229         $u = DB_DataObject::factory( $tbl );
230         if (!$u->isAuth()) {
231             return false;
232         }
233         $this->authUser =$u->getAuthUser();
234         return $this->authUser ;
235     }
236     /**
237      * hasPerm:
238      * wrapper arround authuser->hasPerm
239      * @see Pman_Core_DataObjects_User::hasPerm
240      *
241      * @param {String} $name  The permission name (eg. Projects.List)
242      * @param {String} $lvl   eg. (C)reate (E)dit (D)elete ... etc.
243      * 
244      */
245     function hasPerm($name, $lvl)  // do we have a permission
246     {
247         static $pcache = array();
248         $au = $this->getAuthUser();
249         return $au && $au->hasPerm($name,$lvl);
250         
251     }
252    
253     /**
254      * modulesList:  List the modules in the application
255      *
256      * @return {Array} list of modules
257      */
258     function modulesList()
259     {
260         $boot = HTML_FlexyFramework::get();
261         // echo'<PRE>';print_R($boot);exit;
262          
263          
264         $mods = explode(',', $boot->enable);
265         if (in_array('Core',$mods)) { // core has to be the first  modules loaded as it contains Pman.js
266             array_unshift($mods,   'Core');
267         }
268         
269         if (in_array($boot->appNameShort,$mods)) { // Project has to be the last  modules loaded as it contains Pman.js
270             unset($mods[array_search($boot->appNameShort, $mods)]);
271             $mods[] = $boot->appNameShort;
272         }
273         
274         $mods = array_unique($mods);
275          
276         $disabled =  explode(',', $boot->disable ? $boot->disable : '');
277         $ret = array();
278         foreach($mods as $mod) {
279             // add the css file..
280             if (in_array($mod, $disabled)) {
281                 continue;
282             }
283             $ret[] = $mod;
284         }
285         return $ret;
286     }
287     
288      
289     
290     
291     function hasModule($name) 
292     {
293         $this->init();
294         if (!strpos( $name,'.') ) {
295             // use enable / disable..
296             return in_array($name, $this->modules()); 
297         }
298         
299         $x = DB_DataObject::factory('Group_Rights');
300         $ar = $x->defaultPermData();
301         if (empty($ar[$name]) || empty($ar[$name][0])) {
302             return false;
303         }
304         return true;
305     }
306     
307      
308     
309     
310
311     
312     
313     
314         
315     /**
316      * ---------------- Global Tools ---------------   
317      */
318     function checkFileUploadError()  // check for file upload errors.
319     {    
320         if (
321             empty($_FILES['File']) 
322             || empty($_FILES['File']['name']) 
323             || empty($_FILES['File']['tmp_name']) 
324             || empty($_FILES['File']['type']) 
325             || !empty($_FILES['File']['error']) 
326             || empty($_FILES['File']['size']) 
327         ) {
328             $this->jerr("File upload error: <PRE>" . print_r($_FILES,true) . print_r($_POST,true) . "</PRE>");
329         }
330     }
331     
332     
333     /**
334      * generate a tempory file with an extension (dont forget to delete it)
335      */
336     
337     function tempName($ext)
338     {
339         $x = tempnam(ini_get('session.save_path'), HTML_FlexyFramework::get()->appNameShort.'TMP');
340         unlink($x);
341         return $x .'.'. $ext;
342     }
343     /**
344      * ------------- Authentication testing ------ ??? MOVEME?
345      * 
346      * 
347      */
348     function linkAuth($trid, $trkey) 
349     {
350         $tr = DB_DataObject::factory('Documents_Tracking');
351         if (!$tr->get($trid)) {
352             return "Invalid URL";
353         }
354         if (strtolower($tr->authkey) != strtolower($trkey)) {
355             $this->AddEvent("ERROR-L", false, "Invalid Key");
356             return "Invalid KEY";
357         }
358         // check date..
359         $this->onloadTrack = (int) $tr->doc_id;
360         if (strtotime($tr->date_sent) < strtotime("NOW - 14 DAYS")) {
361             $this->AddEvent("ERROR-L", false, "Key Expired");
362             return "Key Expired";
363         }
364         // user logged in and not
365         $au = $this->getAuthUser();
366         if ($au && $au->id && $au->id != $tr->person_id) {
367             $au->logout();
368             
369             return "Logged Out existing Session\n - reload to log in with correct key";
370         }
371         if ($au) { // logged in anyway..
372             $this->AddEvent("LOGIN", false, "With Key (ALREADY)");
373             header('Location: ' . $this->baseURL.'?onloadTrack='.$this->onloadTrack);
374             exit;
375             return false;
376         }
377         
378         // authenticate the user...
379         // slightly risky...
380         $u = DB_DataObject::factory('Person');
381          
382         $u->get($tr->person_id);
383         $u->login();
384         $this->AddEvent("LOGIN", false, "With Key");
385         
386         // we need to redirect out - otherwise refererer url will include key!
387         header('Location: ' . $this->baseURL.'?onloadTrack='.$this->onloadTrack);
388         exit;
389         
390         return false;
391         
392         
393         
394         
395     }
396     
397     
398     /**
399      * ------------- Authentication password reset ------ ??? MOVEME?
400      * 
401      * 
402      */
403     
404     
405     function resetPassword($id,$t, $key)
406     {
407         
408         $au = $this->getAuthUser();
409         if ($au) {
410             return "Already Logged in - no need to use Password Reset";
411         }
412         
413         $u = DB_DataObject::factory('Person');
414         //$u->company_id = $this->company->id;
415         $u->active = 1;
416         if (!$u->get($id) || !strlen($u->passwd)) {
417             return "invalid id";
418         }
419         
420         // validate key.. 
421         if ($key != $u->genPassKey($t)) {
422             return "invalid key";
423         }
424         $uu = clone($u);
425         $u->no_reset_sent = 0;
426         $u->update($uu);
427         
428         if ($t < strtotime("NOW - 1 DAY")) {
429             return "expired";
430         }
431         $this->showNewPass = implode("/", array($id,$t,$key));
432         return false;
433     }
434     
435     /**
436      * jerrAuth: standard auth failure - with data that let's the UI know..
437      */
438     function jerrAuth()
439     {
440         $au = $this->authUser();
441         if ($au) {
442             // is it an authfailure?
443             $this->jerr("Permission denied to view this resource", array('authFailure' => true));
444         }
445         $this->jerr("Not authenticated", array('authFailure' => true));
446     }
447      
448      
449      
450     /**
451      * ---------------- Standard JSON outputers. - used everywhere
452      * JSON error - simple error with logging.
453      * @see Pman::jerror
454      */
455     
456     function jerr($str, $errors=array(), $content_type = false) // standard error reporting..
457     {
458         return $this->jerror('ERROR', $str,$errors,$content_type);
459     }
460     /**
461      * Recomended JSON error indicator
462      *
463      * 
464      * @param string $type  - normally 'ERROR' - you can use this to track error types.
465      * @param string $message - error message displayed to user.
466      * @param array $errors - optioanl data to pass to front end.
467      * @param string $content_type - use text/plain to return plan text - ?? not sure why...
468      *
469      */
470     
471     function jerror($type, $str, $errors=array(), $content_type = false) // standard error reporting..
472     {
473         if ($type !== false) {
474             $this->addEvent($type, false, $str);
475         }
476          
477         $cli = HTML_FlexyFramework::get()->cli;
478         if ($cli) {
479             echo "ERROR: " .$str . "\n";
480             exit;
481         }
482         
483         
484         if ($content_type == 'text/plain') {
485             header('Content-Disposition: attachment; filename="error.txt"');
486             header('Content-type: '. $content_type);
487             echo "ERROR: " .$str . "\n";
488             exit;
489         } 
490         
491         
492         
493         require_once 'Services/JSON.php';
494         $json = new Services_JSON();
495         
496         // log all errors!!!
497         
498         
499         if (!empty($_REQUEST['returnHTML']) || 
500             (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE']))
501         ) {
502             header('Content-type: text/html');
503             echo "<HTML><HEAD></HEAD><BODY>";
504             echo  $json->encodeUnsafe(array(
505                     'success'=> false, 
506                     'errorMsg' => $str,
507                     'message' => $str, // compate with exeption / loadexception.
508
509                     'errors' => $errors ? $errors : true, // used by forms to flag errors.
510                     'authFailure' => !empty($errors['authFailure']),
511                 ));
512             echo "</BODY></HTML>";
513             exit;
514         }
515         
516         if (isset($_REQUEST['_debug'])) {
517             echo '<PRE>'.htmlspecialchars(print_r(array(
518                 'success'=> false, 
519                 'data'=> array(), 
520                 'errorMsg' => $str,
521                 'message' => $str, // compate with exeption / loadexception.
522                 'errors' => $errors ? $errors : true, // used by forms to flag errors.
523                 'authFailure' => !empty($errors['authFailure']),
524             ),true));
525             exit;
526                 
527         }
528         
529         echo $json->encode(array(
530             'success'=> false, 
531             'data'=> array(), 
532             'errorMsg' => $str,
533             'message' => $str, // compate with exeption / loadexception.
534             'errors' => $errors ? $errors : true, // used by forms to flag errors.
535             'authFailure' => !empty($errors['authFailure']),
536         ));
537         
538         
539         exit;
540         
541     }
542     function jok($str)
543     {
544         $cli = HTML_FlexyFramework::get()->cli;
545         if ($cli) {
546             echo "OK: " .$str . "\n";
547             exit;
548         }
549         require_once 'Services/JSON.php';
550         $json = new Services_JSON();
551         
552         if (!empty($_REQUEST['returnHTML']) || 
553             (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE']))
554         
555         ) {
556             header('Content-type: text/html');
557             echo "<HTML><HEAD></HEAD><BODY>";
558             // encode html characters so they can be read..
559             echo  str_replace(array('<','>'), array('\u003c','\u003e'),
560                         $json->encodeUnsafe(array('success'=> true, 'data' => $str)));
561             echo "</BODY></HTML>";
562             exit;
563         }
564         
565         
566         echo  $json->encode(array('success'=> true, 'data' => $str));
567         
568         exit;
569         
570     }
571     /**
572      * output data for grids or tree
573      * @ar {Array} ar Array of data
574      * @total {Number|false} total number of records (or false to return count(ar)
575      * @extra {Array} extra key value list of data to pass as extra data.
576      * 
577      */
578     function jdata($ar,$total=false, $extra=array(), $cachekey = false)
579     {
580         // should do mobile checking???
581         if ($total == false) {
582             $total = count($ar);
583         }
584         $extra=  $extra ? $extra : array();
585         require_once 'Services/JSON.php';
586         $json = new Services_JSON();
587         if (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE'])) {
588             
589             header('Content-type: text/html');
590             echo "<HTML><HEAD></HEAD><BODY>";
591             // encode html characters so they can be read..
592             echo  str_replace(array('<','>'), array('\u003c','\u003e'),
593                         $json->encodeUnsafe(array('success' =>  true, 'total'=> $total, 'data' => $ar) + $extra));
594             echo "</BODY></HTML>";
595             exit;
596         }
597         
598         
599         // see if trimming will help...
600         if (!empty($_REQUEST['_pman_short'])) {
601             $nar = array();
602             
603             foreach($ar as $as) {
604                 $add = array();
605                 foreach($as as $k=>$v) {
606                     if (is_string($v) && !strlen(trim($v))) {
607                         continue;
608                     }
609                     $add[$k] = $v;
610                 }
611                 $nar[] = $add;
612             }
613             $ar = $nar;
614               
615         }
616         
617       
618         $ret =  $json->encode(array('success' =>  true, 'total'=> $total, 'data' => $ar) + $extra);  
619         
620         if (!empty($cachekey)) {
621             
622             $fn = ini_get('session.save_path') . '/json-cache'.date('/Y/m/d').'.'. $cachekey . '.cache.json';
623             if (!file_exists(dirname($fn))) {
624                 mkdir(dirname($fn), 0777,true);
625             }
626             file_put_contents($fn, $ret);
627         }
628         echo $ret;
629         exit;
630     }
631     
632     
633     
634     /** a daily cache **/
635     function jdataCache($cachekey)
636     {
637         $fn = ini_get('session.save_path') . '/json-cache'.date('/Y/m/d').'.'. $cachekey . '.cache.json';
638         if (file_exists($fn)) {
639             header('Content-type: application/json');
640             echo file_get_contents($fn);
641             exit;
642         }
643         return false;
644         
645     }
646     
647    
648     
649     /**
650      * ---------------- OUTPUT
651      */
652     function hasBg($fn) // used on front page to check if logos exist..
653     {
654         return file_exists($this->rootDir.'/Pman/'.$this->appNameShort.'/templates/images/'.  $fn);
655     }
656      /**
657      * outputJavascriptIncludes:
658      *
659      * output <script....> for all the modules in the applcaiton
660      *
661      */
662     function outputJavascriptIncludes()  
663     {
664         
665         $mods = $this->modulesList();
666         
667         foreach($mods as $mod) {
668             // add the css file..
669         
670             
671             $files = $this->moduleJavascriptList($mod.'/widgets');
672              foreach($files as $f) {
673                 echo '<script type="text/javascript" src="'. $f. '"></script>'."\n";
674             }
675             
676             $files = $this->moduleJavascriptList($mod);
677             foreach($files as $f) {
678                 echo '<script type="text/javascript" src="'. $f. '"></script>'."\n";
679             }
680             
681         }
682         if (empty($this->disable_jstemplate)) {
683         // and finally the JsTemplate...
684             echo '<script type="text/javascript" src="'. $this->baseURL. '/Core/JsTemplate"></script>'."\n";
685         }
686          
687     }
688      /**
689      * outputCSSIncludes:
690      *
691      * output <link rel=stylesheet......> for all the modules in the applcaiton
692      *
693      *
694      * This could css minify as well.
695      */
696     function outputCSSIncludes() // includes on CSS links.
697     {
698         
699         $mods = $this->modulesList();
700         
701         
702         foreach($mods as $mod) {
703             // add the css file..
704             $dir = $this->rootDir.'/Pman/'.$mod;
705             $ar = glob($dir . '/*.css');
706             foreach($ar as $fn) { 
707                 $css = $this->rootURL .'/Pman/'.$mod.'/'.basename($fn) . '?ts=' . filemtime($fn);
708                 echo '<link rel="stylesheet" type="text/css" href="'.$css.'" />'."\n";
709             }
710              
711             
712         }
713          
714     }
715       
716     /**
717      * Gather infor for javascript files..
718      *
719      * @param {String} $mod the module to get info about.
720      * @return {StdClass}  details about module.
721      */
722     function moduleJavascriptFilesInfo($mod)
723     {
724         
725         static $cache = array();
726         
727         if (isset($cache[$mod])) {
728             return $cache[$mod];
729         }
730         
731         
732         $ff = HTML_FlexyFramework::get();
733         
734         $base = dirname($_SERVER['SCRIPT_FILENAME']);
735         $dir =   $this->rootDir.'/Pman/'. $mod;
736         $path = $this->rootURL ."/Pman/$mod/";
737         
738         $ar = glob($dir . '/*.js');
739         
740         $files = array();
741         $arfiles = array();
742         $maxtime = 0;
743         $mtime = 0;
744         foreach($ar as $fn) {
745             $f = basename($fn);
746             // got the 'module file..'
747             $mtime = filemtime($dir . '/'. $f);
748             $maxtime = max($mtime, $maxtime);
749             $arfiles[$fn] = $mtime;
750             $files[] = $path . $f . '?ts='.$mtime;
751         }
752         
753         ksort($arfiles); // just sort by name so it's consistant for serialize..
754         
755         $compile  = empty($ff->Pman['public_cache_dir']) ? 0 : 1;
756         $basedir = $compile ? $ff->Pman['public_cache_dir'] : false;
757         $baseurl = $compile ? $ff->Pman['public_cache_url'] : false;
758         
759         $lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;');
760         usort($files, $lsort);
761         
762         $smod = str_replace('/','.',$mod);
763         
764         $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize($arfiles)) .'.js';
765         
766         
767         // why are translations done like this - we just build them on the fly frmo the database..
768         $tmtime = file_exists($this->rootDir.'/_translations_/'. $smod.'.js')
769             ? filemtime($this->rootDir.'/_translations_/'. $smod.'.js') : 0;
770         
771         $cache[$mod]  = (object) array(
772             'smod' =>               $smod, // module name without '/'
773             'files' =>              $files, // list of all files.
774             'filesmtime' =>         $arfiles,  // map of mtime=>file
775             'maxtime' =>            $maxtime, // max mtime
776             'compile' =>            $this->isDev ? false : $compile,
777             'translation_file' =>   $base .'/_translations_/' . $smod .  '.js',
778             'translation_mtime' =>  $tmtime,
779             'output' =>             $output,
780             'translation_data' =>   preg_replace('/\.js$/', '.__translation__.js', $output),
781             'translation_base' =>   $dir .'/', //prefix of filename (without moudle name))
782             'basedir' =>            $basedir,   
783             'baseurl' =>            $baseurl,
784             'module_dir' =>         $dir,  
785         );
786         return $cache[$mod];
787     }
788      
789     
790     /**
791      *  moduleJavascriptList: list the javascript files in a module
792      *
793      *  The original version of this.. still needs more thought...
794      *
795      *  Compiled is in Pman/_compiled_/{$mod}/{LATEST...}.js
796      *  Translations are in Pman/_translations_/{$mod}.js
797      *  
798      *  if that stuff does not exist just list files in  Pman/{$mod}/*.js
799      *
800      *  Compiled could be done on the fly..
801      * 
802      *
803      *
804      *  @param {String} $mod  the module to look at - eg. Pman/{$mod}/*.js
805      *  @return {Array} list of include paths (either compiled or raw)
806      *
807      */
808
809     
810     
811     function moduleJavascriptList($mod)
812     {
813         
814         
815         $dir =   $this->rootDir.'/Pman/'. $mod;
816         
817         
818         if (!file_exists($dir)) {
819             echo '<!-- missing directory '. htmlspecialchars($dir) .' -->';
820             return array();
821         }
822         
823         $info = $this->moduleJavascriptFilesInfo($mod);
824        
825         
826           
827         if (empty($info->files)) {
828             return array();
829         }
830         // finally sort the files, so they are in the right order..
831         
832         // only compile this stuff if public_cache is set..
833         
834          
835         // suggestions...
836         //  public_cache_dir =   /var/www/myproject_cache
837         //  public_cache_url =   /myproject_cache    (with Alias apache /myproject_cache/ /var/www/myproject_cache/)
838         
839         // bit of debugging
840         if (!$info->compile) {
841             echo "<!-- Javascript compile turned off (isDev on, or public_cache_dir not set) -->\n";
842             return $info->files;
843         }
844         
845         // where are we going to write all of this..
846         // This has to be done via a 
847         if (!file_exists($info->basedir.'/'.$info->output) || !filesize($info->basedir.'/'.$info->output)) {
848             require_once 'Pman/Core/JsCompile.php';
849             $x = new Pman_Core_JsCompile();
850             
851             $x->pack($info->filesmtime,$info->basedir.'/'.$info->output, $info->translation_base);
852         } else {
853             echo "<!-- file exists not exist: {$info->basedir}/{$info->output} -->\n";
854         }
855         
856         if (file_exists($info->basedir.'/'.$info->output) &&
857                 filesize($info->basedir.'/'.$info->output)) {
858             
859             $ret =array(
860                 $info->baseurl.'/'. $info->output,
861               
862             );
863             // output all the ava
864             // fixme  - this needs the max datetime for the translation file..
865             $ret[] = $this->baseURL."/Admin/InterfaceTranslations/".$mod.".js"; //?ts=".$info->translation_mtime;
866             
867             //if ($info->translation_mtime) {
868             //    $ret[] = $this->rootURL."/_translations_/". $info->smod.".js?ts=".$info->translation_mtime;
869             //}
870             return $ret;
871         }
872         
873         
874         
875         // give up and output original files...
876         
877          
878         return $info->files;
879
880         
881     }
882     
883     /**
884      * Error handling...
885      *  PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, array($this, 'onPearError'));
886      */
887     
888     static $permitError = false;
889     
890     function onPearError($err)
891     {
892         static $reported = false;
893         if ($reported) {
894             return;
895         }
896         
897         if (Pman::$permitError) {
898              
899             return;
900             
901         }
902         
903         
904         $reported = true;
905         $out = $err->toString();
906         
907         
908         //print_R($bt); exit;
909         $ret = array();
910         $n = 0;
911         foreach($err->backtrace as $b) {
912             $ret[] = @$b['file'] . '(' . @$b['line'] . ')@' .   @$b['class'] . '::' . @$b['function'];
913             if ($n > 20) {
914                 break;
915             }
916             $n++;
917         }
918         //convert the huge backtrace into something that is readable..
919         $out .= "\n" . implode("\n",  $ret);
920      
921         
922         $this->jerr($out);
923         
924         
925         
926     }
927     
928     
929     /**
930      * ---------------- Logging ---------------   
931      */
932     
933     /**
934      * addEventOnce:
935      * Log an action (only if it has not been logged already.
936      * 
937      * @param {String} action  - group/name of event
938      * @param {DataObject|false} obj - dataobject action occured on.
939      * @param {String} any remarks
940      * @return {false|DB_DataObject} Event object.,
941      */
942     
943     function addEventOnce($act, $obj = false, $remarks = '') 
944     {
945         if (!empty(HTML_FlexyFramework::get()->Pman['disable_events'])) {
946             return;
947         }
948         $e = DB_DataObject::factory('Events');
949         $e->init($act,$obj,$remarks); 
950         if ($e->find(true)) {
951             return false;
952         }
953         return $this->addEvent($act, $obj, $remarks);
954     }
955     /**
956      * addEvent:
957      * Log an action.
958      * 
959      * @param {String} action  - group/name of event
960      * @param {DataObject|false} obj - dataobject action occured on.
961      * @param {String} any remarks
962      * @return {DB_DataObject} Event object.,
963      */
964     
965     function addEvent($act, $obj = false, $remarks = '') 
966     {
967         
968         if (!empty(HTML_FlexyFramework::get()->Pman['disable_events'])) {
969             return;
970         }
971         $au = $this->getAuthUser();
972        
973         $e = DB_DataObject::factory('Events');
974         $e->init($act,$obj,$remarks); 
975          
976         $e->event_when = date('Y-m-d H:i:s');
977         
978         $eid = $e->insert();
979         
980         // fixme - this should be in onInsert..
981         $wa = DB_DataObject::factory('core_watch');
982         if (method_exists($wa,'notifyEvent')) {
983             $wa->notifyEvent($e); // trigger any actions..
984         }
985         
986         
987         $e->onInsert(isset($_REQUEST) ? $_REQUEST : array() , $this);
988         
989        
990         return $e;
991         
992     }
993     // ------------------ DEPERCIATED ----------------------------
994      
995     // DEPRECITAED - use moduleslist
996     function modules()  { return $this->modulesList();  }
997     
998     // DEPRECIATED.. - use getAuthUser...
999     function staticGetAuthUser()  { $x = new Pman(); return $x->getAuthUser();  }
1000      
1001     
1002     // DEPRICATED  USE Pman_Core_Mailer
1003     
1004     function emailTemplate($templateFile, $args)
1005     {
1006     
1007         require_once 'Pman/Core/Mailer.php';
1008         $r = new Pman_Core_Mailer(array(
1009             'template'=>$templateFile,
1010             'contents' => $args,
1011             'page' => $this
1012         ));
1013         return $r->toData();
1014          
1015     }
1016     // DEPRICATED - USE Pman_Core_Mailer 
1017     // WHAT Part about DEPRICATED Does no one understand??
1018     function sendTemplate($templateFile, $args)
1019     {
1020         require_once 'Pman/Core/Mailer.php';
1021         $r = new Pman_Core_Mailer(array(
1022             'template'=>$templateFile,
1023             'contents' => array(),
1024             'page' => $this
1025         ));
1026         return $r->send();
1027         
1028     
1029     }
1030 }