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