Subversion Repositories oidplus

Rev

Rev 256 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
117 daniel-mar 1
<?php
2
 
3
/*
4
 * OIDplus 2.0
5
 * Copyright 2019 Daniel Marschall, ViaThinkSoft
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 *     http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 */
19
 
20
if (!defined('IN_OIDPLUS')) die();
21
 
256 daniel-mar 22
class OIDplusPageRaLogEvents extends OIDplusPagePluginRa {
117 daniel-mar 23
 
222 daniel-mar 24
        public static function getPluginInformation() {
25
                $out = array();
26
                $out['name'] = 'Log';
27
                $out['author'] = 'ViaThinkSoft';
28
                $out['version'] = null;
29
                $out['descriptionHTML'] = null;
30
                return $out;
31
        }
32
 
117 daniel-mar 33
        public function priority() {
34
                return 200;
35
        }
36
 
37
        public function action(&$handled) {
38
        }
39
 
40
        public function init($html=true) {
41
        }
42
 
43
        public function cfgSetValue($name, $value) {
44
        }
45
 
46
        public function gui($id, &$out, &$handled) {
47
                if (explode('$',$id)[0] == 'oidplus:ra_log') {
48
                        $handled = true;
49
 
50
                        $ra_email = explode('$',$id)[1];
51
 
261 daniel-mar 52
                        $res = OIDplus::db()->query("select * from ###ra where email = ?", array($ra_email));
236 daniel-mar 53
                        if ($res->num_rows() == 0) {
117 daniel-mar 54
                                $out['icon'] = 'img/error_big.png';
55
                                $out['text'] = 'RA <b>'.htmlentities($ra_email).'</b> does not exist';
56
                                return $out;
57
                        }
58
 
59
                        if (!OIDplus::authUtils()::isRaLoggedIn($ra_email) && !OIDplus::authUtils()::isAdminLoggedIn()) {
60
                                $out['icon'] = 'img/error_big.png';
250 daniel-mar 61
                                $out['text'] = '<p>You need to <a '.OIDplus::gui()->link('oidplus:login').'>log in</a> as the requested RA <b>'.htmlentities($ra_email).'</b>.</p>';
117 daniel-mar 62
                                return $out;
63
                        }
64
 
65
                        $out['title'] = "Log entries for RA $ra_email";
241 daniel-mar 66
                        $out['icon'] = file_exists(__DIR__.'/icon_big.png') ? OIDplus::webpath(__DIR__).'icon_big.png' : '';
117 daniel-mar 67
 
261 daniel-mar 68
                        $res = OIDplus::db()->query("select lo.unix_ts, lo.addr, lo.event from ###log lo ".
69
                                                    "left join ###log_user lu on lu.log_id = lo.id ".
239 daniel-mar 70
                                                    "where lu.username = ? " .
150 daniel-mar 71
                                                    "order by lo.unix_ts desc", array($ra_email));
236 daniel-mar 72
                        if ($res->num_rows() > 0) {
117 daniel-mar 73
                                $out['text'] = '<pre>';
236 daniel-mar 74
                                while ($row = $res->fetch_array()) {
117 daniel-mar 75
                                        $addr = empty($row['addr']) ? 'no address' : $row['addr'];
76
 
77
                                        $out['text'] .= date('Y-m-d H:i:s', $row['unix_ts']) . ': ' . htmlentities($row["event"])." (" . htmlentities($addr) . ")\n";
78
                                }
79
                                $out['text'] .= '</pre>';
80
                        } else {
81
                                $out['text'] .= '<p>Currently there are no log entries</p>';
82
                        }
148 daniel-mar 83
 
117 daniel-mar 84
                        // TODO: List logs in a table instead of a <pre> text
85
                        // TODO: Load only X events and then re-load new events via AJAX when the user scrolls down
86
                }
87
        }
88
 
89
        public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
90
                if (file_exists(__DIR__.'/treeicon.png')) {
241 daniel-mar 91
                        $tree_icon = OIDplus::webpath(__DIR__).'treeicon.png';
117 daniel-mar 92
                } else {
93
                        $tree_icon = null; // default icon (folder)
94
                }
95
 
96
                $json[] = array(
97
                        'id' => 'oidplus:ra_log$'.$ra_email,
98
                        'icon' => $tree_icon,
99
                        'text' => 'RA log events'
100
                );
101
 
102
                return true;
103
        }
104
 
105
        public function tree_search($request) {
106
                return false;
107
        }
108
}