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         return $this->jerror('ERROR', $str,$errors,$content_type);
457     }
458     /**
459      * Recomended JSON error indicator
460      * @param string $type  - normally 'ERROR' - you can use this to track error types.
461      * @param string $message - error message displayed to user.
462      *
463      */
464     
465     function jerror($type, $str, $errors=array(), $content_type = false) // standard error reporting..
466     {
467         $this->addEvent($type, false, $str);
468          
469         $cli = HTML_FlexyFramework::get()->cli;
470         if ($cli) {
471             echo "ERROR: " .$str . "\n";
472             exit;
473         }
474         
475         
476         if ($content_type == 'text/plain') {
477             header('Content-Disposition: attachment; filename="error.txt"');
478             header('Content-type: '. $content_type);
479             echo "ERROR: " .$str . "\n";
480             exit;
481         } 
482         
483         
484         
485         require_once 'Services/JSON.php';
486         $json = new Services_JSON();
487         
488         // log all errors!!!
489         
490         
491         if (!empty($_REQUEST['returnHTML']) || 
492             (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE']))
493         ) {
494             header('Content-type: text/html');
495             echo "<HTML><HEAD></HEAD><BODY>";
496             echo  $json->encodeUnsafe(array(
497                     'success'=> false, 
498                     'errorMsg' => $str,
499                     'message' => $str, // compate with exeption / loadexception.
500
501                     'errors' => $errors ? $errors : true, // used by forms to flag errors.
502                     'authFailure' => !empty($errors['authFailure']),
503                 ));
504             echo "</BODY></HTML>";
505             exit;
506         }
507         
508         if (isset($_REQUEST['_debug'])) {
509             echo '<PRE>'.htmlspecialchars(print_r(array(
510                 'success'=> false, 
511                 'data'=> array(), 
512                 'errorMsg' => $str,
513                 'message' => $str, // compate with exeption / loadexception.
514                 'errors' => $errors ? $errors : true, // used by forms to flag errors.
515                 'authFailure' => !empty($errors['authFailure']),
516             ),true));
517             exit;
518                 
519         }
520         
521         echo $json->encode(array(
522             'success'=> false, 
523             'data'=> array(), 
524             'errorMsg' => $str,
525             'message' => $str, // compate with exeption / loadexception.
526             'errors' => $errors ? $errors : true, // used by forms to flag errors.
527             'authFailure' => !empty($errors['authFailure']),
528         ));
529         
530         
531         exit;
532         
533     }
534     function jok($str)
535     {
536         $cli = HTML_FlexyFramework::get()->cli;
537         if ($cli) {
538             echo "OK: " .$str . "\n";
539             exit;
540         }
541         require_once 'Services/JSON.php';
542         $json = new Services_JSON();
543         
544         if (!empty($_REQUEST['returnHTML']) || 
545             (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE']))
546         
547         ) {
548             header('Content-type: text/html');
549             echo "<HTML><HEAD></HEAD><BODY>";
550             // encode html characters so they can be read..
551             echo  str_replace(array('<','>'), array('\u003c','\u003e'),
552                         $json->encodeUnsafe(array('success'=> true, 'data' => $str)));
553             echo "</BODY></HTML>";
554             exit;
555         }
556         
557         
558         echo  $json->encode(array('success'=> true, 'data' => $str));
559         
560         exit;
561         
562     }
563     /**
564      * output data for grids or tree
565      * @ar {Array} ar Array of data
566      * @total {Number|false} total number of records (or false to return count(ar)
567      * @extra {Array} extra key value list of data to pass as extra data.
568      * 
569      */
570     function jdata($ar,$total=false, $extra=array(), $cachekey = false)
571     {
572         // should do mobile checking???
573         if ($total == false) {
574             $total = count($ar);
575         }
576         $extra=  $extra ? $extra : array();
577         require_once 'Services/JSON.php';
578         $json = new Services_JSON();
579         if (isset($_SERVER['CONTENT_TYPE']) && preg_match('#multipart/form-data#i', $_SERVER['CONTENT_TYPE'])) {
580             
581             header('Content-type: text/html');
582             echo "<HTML><HEAD></HEAD><BODY>";
583             // encode html characters so they can be read..
584             echo  str_replace(array('<','>'), array('\u003c','\u003e'),
585                         $json->encodeUnsafe(array('success' =>  true, 'total'=> $total, 'data' => $ar) + $extra));
586             echo "</BODY></HTML>";
587             exit;
588         }
589         
590         
591         // see if trimming will help...
592         if (!empty($_REQUEST['_pman_short'])) {
593             $nar = array();
594             
595             foreach($ar as $as) {
596                 $add = array();
597                 foreach($as as $k=>$v) {
598                     if (is_string($v) && !strlen(trim($v))) {
599                         continue;
600                     }
601                     $add[$k] = $v;
602                 }
603                 $nar[] = $add;
604             }
605             $ar = $nar;
606               
607         }
608         
609       
610         $ret =  $json->encode(array('success' =>  true, 'total'=> $total, 'data' => $ar) + $extra);  
611         
612         if (!empty($cachekey)) {
613             
614             $fn = ini_get('session.save_path') . '/json-cache'.date('/Y/m/d').'.'. $cachekey . '.cache.json';
615             if (!file_exists(dirname($fn))) {
616                 mkdir(dirname($fn), 0777,true);
617             }
618             file_put_contents($fn, $ret);
619         }
620         echo $ret;
621         exit;
622     }
623     
624     
625     
626     /** a daily cache **/
627     function jdataCache($cachekey)
628     {
629         $fn = ini_get('session.save_path') . '/json-cache'.date('/Y/m/d').'.'. $cachekey . '.cache.json';
630         if (file_exists($fn)) {
631             header('Content-type: application/json');
632             echo file_get_contents($fn);
633             exit;
634         }
635         return false;
636         
637     }
638     
639    
640     
641     /**
642      * ---------------- OUTPUT
643      */
644     function hasBg($fn) // used on front page to check if logos exist..
645     {
646         return file_exists($this->rootDir.'/Pman/'.$this->appNameShort.'/templates/images/'.  $fn);
647     }
648      /**
649      * outputJavascriptIncludes:
650      *
651      * output <script....> for all the modules in the applcaiton
652      *
653      */
654     function outputJavascriptIncludes()  
655     {
656         
657         $mods = $this->modulesList();
658         
659         foreach($mods as $mod) {
660             // add the css file..
661         
662             
663             $files = $this->moduleJavascriptList($mod.'/widgets');
664              foreach($files as $f) {
665                 echo '<script type="text/javascript" src="'. $f. '"></script>'."\n";
666             }
667             
668             $files = $this->moduleJavascriptList($mod);
669             foreach($files as $f) {
670                 echo '<script type="text/javascript" src="'. $f. '"></script>'."\n";
671             }
672             
673         }
674         if (empty($this->disable_jstemplate)) {
675         // and finally the JsTemplate...
676             echo '<script type="text/javascript" src="'. $this->baseURL. '/Core/JsTemplate"></script>'."\n";
677         }
678          
679     }
680      /**
681      * outputCSSIncludes:
682      *
683      * output <link rel=stylesheet......> for all the modules in the applcaiton
684      *
685      *
686      * This could css minify as well.
687      */
688     function outputCSSIncludes() // includes on CSS links.
689     {
690         
691         $mods = $this->modulesList();
692         
693         
694         foreach($mods as $mod) {
695             // add the css file..
696             $dir = $this->rootDir.'/Pman/'.$mod;
697             $ar = glob($dir . '/*.css');
698             foreach($ar as $fn) { 
699                 $css = $this->rootURL .'/Pman/'.$mod.'/'.basename($fn) . '?ts=' . filemtime($fn);
700                 echo '<link rel="stylesheet" type="text/css" href="'.$css.'" />'."\n";
701             }
702              
703             
704         }
705          
706     }
707       
708     /**
709      * Gather infor for javascript files..
710      *
711      * @param {String} $mod the module to get info about.
712      * @return {StdClass}  details about module.
713      */
714     function moduleJavascriptFilesInfo($mod)
715     {
716         
717         static $cache = array();
718         
719         if (isset($cache[$mod])) {
720             return $cache[$mod];
721         }
722         
723         
724         $ff = HTML_FlexyFramework::get();
725         
726         $base = dirname($_SERVER['SCRIPT_FILENAME']);
727         $dir =   $this->rootDir.'/Pman/'. $mod;
728         $path = $this->rootURL ."/Pman/$mod/";
729         
730         $ar = glob($dir . '/*.js');
731         
732         $files = array();
733         $arfiles = array();
734         $maxtime = 0;
735         $mtime = 0;
736         foreach($ar as $fn) {
737             $f = basename($fn);
738             // got the 'module file..'
739             $mtime = filemtime($dir . '/'. $f);
740             $maxtime = max($mtime, $maxtime);
741             $arfiles[$fn] = $mtime;
742             $files[] = $path . $f . '?ts='.$mtime;
743         }
744         
745         ksort($arfiles); // just sort by name so it's consistant for serialize..
746         
747         $compile  = empty($ff->Pman['public_cache_dir']) ? 0 : 1;
748         $basedir = $compile ? $ff->Pman['public_cache_dir'] : false;
749         $baseurl = $compile ? $ff->Pman['public_cache_url'] : false;
750         
751         $lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;');
752         usort($files, $lsort);
753         
754         $smod = str_replace('/','.',$mod);
755         
756         $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize($arfiles)) .'.js';
757         
758         
759         // why are translations done like this - we just build them on the fly frmo the database..
760         $tmtime = file_exists($this->rootDir.'/_translations_/'. $smod.'.js')
761             ? filemtime($this->rootDir.'/_translations_/'. $smod.'.js') : 0;
762         
763         $cache[$mod]  = (object) array(
764             'smod' =>               $smod, // module name without '/'
765             'files' =>              $files, // list of all files.
766             'filesmtime' =>         $arfiles,  // map of mtime=>file
767             'maxtime' =>            $maxtime, // max mtime
768             'compile' =>            $this->isDev ? false : $compile,
769             'translation_file' =>   $base .'/_translations_/' . $smod .  '.js',
770             'translation_mtime' =>  $tmtime,
771             'output' =>             $output,
772             'translation_data' =>   preg_replace('/\.js$/', '.__translation__.js', $output),
773             'translation_base' =>   $dir .'/', //prefix of filename (without moudle name))
774             'basedir' =>            $basedir,   
775             'baseurl' =>            $baseurl,
776             'module_dir' =>         $dir,  
777         );
778         return $cache[$mod];
779     }
780      
781     
782     /**
783      *  moduleJavascriptList: list the javascript files in a module
784      *
785      *  The original version of this.. still needs more thought...
786      *
787      *  Compiled is in Pman/_compiled_/{$mod}/{LATEST...}.js
788      *  Translations are in Pman/_translations_/{$mod}.js
789      *  
790      *  if that stuff does not exist just list files in  Pman/{$mod}/*.js
791      *
792      *  Compiled could be done on the fly..
793      * 
794      *
795      *
796      *  @param {String} $mod  the module to look at - eg. Pman/{$mod}/*.js
797      *  @return {Array} list of include paths (either compiled or raw)
798      *
799      */
800
801     
802     
803     function moduleJavascriptList($mod)
804     {
805         
806         
807         $dir =   $this->rootDir.'/Pman/'. $mod;
808         
809         
810         if (!file_exists($dir)) {
811             echo '<!-- missing directory '. htmlspecialchars($dir) .' -->';
812             return array();
813         }
814         
815         $info = $this->moduleJavascriptFilesInfo($mod);
816        
817         
818           
819         if (empty($info->files)) {
820             return array();
821         }
822         // finally sort the files, so they are in the right order..
823         
824         // only compile this stuff if public_cache is set..
825         
826          
827         // suggestions...
828         //  public_cache_dir =   /var/www/myproject_cache
829         //  public_cache_url =   /myproject_cache    (with Alias apache /myproject_cache/ /var/www/myproject_cache/)
830         
831         // bit of debugging
832         if (!$info->compile) {
833             echo "<!-- Javascript compile turned off (isDev on, or public_cache_dir not set) -->\n";
834             return $info->files;
835         }
836         
837         // where are we going to write all of this..
838         // This has to be done via a 
839         if (!file_exists($info->basedir.'/'.$info->output) || !filesize($info->basedir.'/'.$info->output)) {
840             require_once 'Pman/Core/JsCompile.php';
841             $x = new Pman_Core_JsCompile();
842             
843             $x->pack($info->filesmtime,$info->basedir.'/'.$info->output, $info->translation_base);
844         } else {
845             echo "<!-- file exists not exist: {$info->basedir}/{$info->output} -->\n";
846         }
847         
848         if (file_exists($info->basedir.'/'.$info->output) &&
849                 filesize($info->basedir.'/'.$info->output)) {
850             
851             $ret =array(
852                 $info->baseurl.'/'. $info->output,
853               
854             );
855             // output all the ava
856             // fixme  - this needs the max datetime for the translation file..
857             $ret[] = $this->baseURL."/Admin/InterfaceTranslations/".$mod.".js"; //?ts=".$info->translation_mtime;
858             
859             //if ($info->translation_mtime) {
860             //    $ret[] = $this->rootURL."/_translations_/". $info->smod.".js?ts=".$info->translation_mtime;
861             //}
862             return $ret;
863         }
864         
865         
866         
867         // give up and output original files...
868         
869          
870         return $info->files;
871
872         
873     }
874     
875     /**
876      * Error handling...
877      *  PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, array($this, 'onPearError'));
878      */
879     
880     static $permitError = false;
881     
882     function onPearError($err)
883     {
884         static $reported = false;
885         if ($reported) {
886             return;
887         }
888         
889         if (Pman::$permitError) {
890              
891             return;
892             
893         }
894         
895         
896         $reported = true;
897         $out = $err->toString();
898         
899         
900         //print_R($bt); exit;
901         $ret = array();
902         $n = 0;
903         foreach($err->backtrace as $b) {
904             $ret[] = @$b['file'] . '(' . @$b['line'] . ')@' .   @$b['class'] . '::' . @$b['function'];
905             if ($n > 20) {
906                 break;
907             }
908             $n++;
909         }
910         //convert the huge backtrace into something that is readable..
911         $out .= "\n" . implode("\n",  $ret);
912      
913         
914         $this->jerr($out);
915         
916         
917         
918     }
919     
920     
921     /**
922      * ---------------- Logging ---------------   
923      */
924     
925     /**
926      * addEventOnce:
927      * Log an action (only if it has not been logged already.
928      * 
929      * @param {String} action  - group/name of event
930      * @param {DataObject|false} obj - dataobject action occured on.
931      * @param {String} any remarks
932      * @return {false|DB_DataObject} Event object.,
933      */
934     
935     function addEventOnce($act, $obj = false, $remarks = '') 
936     {
937         if (!empty(HTML_FlexyFramework::get()->Pman['disable_events'])) {
938             return;
939         }
940         $e = DB_DataObject::factory('Events');
941         $e->init($act,$obj,$remarks); 
942         if ($e->find(true)) {
943             return false;
944         }
945         return $this->addEvent($act, $obj, $remarks);
946     }
947     /**
948      * addEvent:
949      * Log an action.
950      * 
951      * @param {String} action  - group/name of event
952      * @param {DataObject|false} obj - dataobject action occured on.
953      * @param {String} any remarks
954      * @return {DB_DataObject} Event object.,
955      */
956     
957     function addEvent($act, $obj = false, $remarks = '') 
958     {
959         
960         if (!empty(HTML_FlexyFramework::get()->Pman['disable_events'])) {
961             return;
962         }
963         $au = $this->getAuthUser();
964        
965         $e = DB_DataObject::factory('Events');
966         $e->init($act,$obj,$remarks); 
967          
968         $e->event_when = date('Y-m-d H:i:s');
969         
970         $eid = $e->insert();
971         
972         // fixme - this should be in onInsert..
973         $wa = DB_DataObject::factory('core_watch');
974         if (method_exists($wa,'notifyEvent')) {
975             $wa->notifyEvent($e); // trigger any actions..
976         }
977         
978         
979         $e->onInsert(isset($_REQUEST) ? $_REQUEST : array() , $this);
980         
981        
982         return $e;
983         
984     }
985     // ------------------ DEPERCIATED ----------------------------
986      
987     // DEPRECITAED - use moduleslist
988     function modules()  { return $this->modulesList();  }
989     
990     // DEPRECIATED.. - use getAuthUser...
991     function staticGetAuthUser()  { $x = new Pman(); return $x->getAuthUser();  }
992      
993     
994     // DEPRICATED  USE Pman_Core_Mailer
995     
996     function emailTemplate($templateFile, $args)
997     {
998     
999         require_once 'Pman/Core/Mailer.php';
1000         $r = new Pman_Core_Mailer(array(
1001             'template'=>$templateFile,
1002             'contents' => $args,
1003             'page' => $this
1004         ));
1005         return $r->toData();
1006          
1007     }
1008     // DEPRICATED - USE Pman_Core_Mailer 
1009     // WHAT Part about DEPRICATED Does no one understand??
1010     function sendTemplate($templateFile, $args)
1011     {
1012         require_once 'Pman/Core/Mailer.php';
1013         $r = new Pman_Core_Mailer(array(
1014             'template'=>$templateFile,
1015             'contents' => array(),
1016             'page' => $this
1017         ));
1018         return $r->send();
1019         
1020     
1021     }
1022 }