Subversion Repositories oidplus

Rev

Rev 433 | 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
511 daniel-mar 5
 * Copyright 2019 - 2021 Daniel Marschall, ViaThinkSoft
117 daniel-mar 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
 
511 daniel-mar 20
if (!defined('INSIDE_OIDPLUS')) die();
21
 
256 daniel-mar 22
class OIDplusPageRaLogEvents extends OIDplusPagePluginRa {
117 daniel-mar 23
 
24
        public function init($html=true) {
25
        }
26
 
27
        public function gui($id, &$out, &$handled) {
28
                if (explode('$',$id)[0] == 'oidplus:ra_log') {
29
                        $handled = true;
30
 
31
                        $ra_email = explode('$',$id)[1];
32
 
433 daniel-mar 33
                        $out['title'] = _L('Log messages for RA %1',$ra_email);
34
                        $out['icon'] = file_exists(__DIR__.'/icon_big.png') ? OIDplus::webpath(__DIR__).'icon_big.png' : '';
35
 
281 daniel-mar 36
                        if (!OIDplus::authUtils()::isRaLoggedIn($ra_email) && !OIDplus::authUtils()::isAdminLoggedIn()) {
37
                                $out['icon'] = 'img/error_big.png';
360 daniel-mar 38
                                $out['text'] = '<p>'._L('You need to <a %1>log in</a> as the requested RA %2.',OIDplus::gui()->link('oidplus:login'),'<b>'.htmlentities($ra_email).'</b>').'</p>';
281 daniel-mar 39
                                return;
40
                        }
41
 
261 daniel-mar 42
                        $res = OIDplus::db()->query("select * from ###ra where email = ?", array($ra_email));
236 daniel-mar 43
                        if ($res->num_rows() == 0) {
117 daniel-mar 44
                                $out['icon'] = 'img/error_big.png';
360 daniel-mar 45
                                $out['text'] = _L('RA "%1" does not exist','<b>'.htmlentities($ra_email).'</b>');
281 daniel-mar 46
                                return;
117 daniel-mar 47
                        }
48
 
288 daniel-mar 49
                        $res = OIDplus::db()->query("select lo.unix_ts, lo.addr, lo.event, lu.severity from ###log lo ".
261 daniel-mar 50
                                                    "left join ###log_user lu on lu.log_id = lo.id ".
239 daniel-mar 51
                                                    "where lu.username = ? " .
150 daniel-mar 52
                                                    "order by lo.unix_ts desc", array($ra_email));
236 daniel-mar 53
                        if ($res->num_rows() > 0) {
117 daniel-mar 54
                                $out['text'] = '<pre>';
236 daniel-mar 55
                                while ($row = $res->fetch_array()) {
360 daniel-mar 56
                                        $addr = empty($row['addr']) ? _L('no address') : $row['addr'];
117 daniel-mar 57
 
288 daniel-mar 58
                                        $out['text'] .= '<span class="severity_'.$row['severity'].'">' . date('Y-m-d H:i:s', $row['unix_ts']) . ': ' . htmlentities($row["event"])." (" . htmlentities($addr) . ")</span>\n";
117 daniel-mar 59
                                }
60
                                $out['text'] .= '</pre>';
61
                        } else {
360 daniel-mar 62
                                $out['text'] .= '<p>'._L('Currently there are no log entries').'</p>';
117 daniel-mar 63
                        }
148 daniel-mar 64
 
117 daniel-mar 65
                        // TODO: List logs in a table instead of a <pre> text
66
                        // TODO: Load only X events and then re-load new events via AJAX when the user scrolls down
67
                }
68
        }
69
 
70
        public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
281 daniel-mar 71
                if (!$ra_email) return false;
72
                if (!OIDplus::authUtils()::isRaLoggedIn($ra_email) && !OIDplus::authUtils()::isAdminLoggedIn()) return false;
73
 
117 daniel-mar 74
                if (file_exists(__DIR__.'/treeicon.png')) {
241 daniel-mar 75
                        $tree_icon = OIDplus::webpath(__DIR__).'treeicon.png';
117 daniel-mar 76
                } else {
77
                        $tree_icon = null; // default icon (folder)
78
                }
79
 
80
                $json[] = array(
81
                        'id' => 'oidplus:ra_log$'.$ra_email,
82
                        'icon' => $tree_icon,
360 daniel-mar 83
                        'text' => _L('RA log events')
117 daniel-mar 84
                );
85
 
86
                return true;
87
        }
88
 
89
        public function tree_search($request) {
90
                return false;
91
        }
360 daniel-mar 92
}