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