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