EventView.php
[Pman.Admin] / EventView.php
1 <?php
2
3
4 require_once 'Pman.php';
5
6 class Pman_Admin_EventView extends Pman
7 {
8     
9     function getAuth()
10     {
11         parent::getAuth();
12         $au = $this->getAuthUser();
13         if (!$au || $au->company()->comptype != 'OWNER') {
14             $this->jerrAuth();
15         }
16         return true;
17         
18         
19     }
20     
21     function get($id)
22     {   
23         $ev = DB_DataObject::Factory('Events');
24         if (!$ev->get((int)$id)) {
25             $this->jerr("invalid id");
26         }
27         
28         // verify if not admin, then they should 
29         $g = DB_DataObject::Factory('group_members');
30         if (is_a($g, 'DB_DataObject')) {
31             $grps = $g->listGroupMembership($this->authUser);
32            //var_dump($grps);
33             $isAdmin = $g->inAdmin;
34             
35             if (!$isAdmin && $ev->person_id != $this->authUser->id) {
36                 $this->jerrAuth();
37             }
38         }
39         
40         
41         echo '<PRE>'.htmlspecialchars(print_r($ev->toArray(),true))."</PRE>";
42         // we have 2 bits of data available at present:
43         // core_event_audit
44         // the event file..
45         $d= DB_DataObject::factory('core_event_audit');
46         if (is_a($d,'DB_DataObject')) {
47             echo "<H2>Changed Data:</H2>";
48             $d->event_id = $ev->id;
49             foreach($d->fetchAll() as $d) {
50                 echo "{$d->name} SET TO: " . htmlspecialchars($d->newvalue) . "<br/>\n";
51             }
52         }
53         echo "<HR><H2>Posted Data:</H2>";
54         
55         $ff  = HTML_FlexyFramework::get();
56         if (empty($ff->Pman['event_log_dir'])) {
57             echo "not available (Pman[event_log_dir] not configured)";
58             exit;
59         }
60         if (function_exists('posix_getpwuid')) {
61             $uinfo = posix_getpwuid( posix_getuid () ); 
62          
63             $user = $uinfo['name'];
64         } else {
65             $user = getenv('USERNAME'); // windows.
66         }
67          
68         $file = $ff->Pman['event_log_dir']. "/{$user}" . date('/Y/m/d/',strtotime($ev->event_when)). $ev->id . ".php"; 
69         if (file_exists($file)) {
70             echo '<PRE>' . htmlspecialchars(file_get_contents($file)). '</PRE>';
71             
72         } 
73           
74         $file = $ff->Pman['event_log_dir']. "/{$user}" . date('/Y/m/d/',strtotime($ev->event_when)). $ev->id . ".json"; 
75         if (!file_exists($file)) {
76             echo "not available (missing file) $file";
77             exit;
78         }
79         echo '<PRE>' . htmlspecialchars(print_r(json_decode(file_get_contents($file)), true)) . '</PRE>';
80         
81         echo '<BR/><PRE>'. htmlspecialchars($ev->remarks) . '</PRE>';
82         
83         $json = json_decode($ev->remarks);
84         
85         
86         
87         $filesJ = json_decode(file_get_contents($file));
88         echo '<br /><PRE>Download files</PRE>';
89         
90         
91         foreach($filesJ->FILES as $k=>$f){
92             $ip = $ff->baseURL."/Images/events/". $ev->id . '/'. $f->tmp_name;
93             echo '<a href="'.$ip.'/download">' . htmlspecialchars( $k . ' - ' . $f->name ) . '</a><br/>';
94         }
95         
96         
97         
98         exit;
99         
100     }
101     
102     
103 }