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