Subversion Repositories oidplus

Rev

Rev 321 | 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
 
256 daniel-mar 20
class OIDplusPageRaObjectLog extends OIDplusPagePluginRa {
117 daniel-mar 21
 
22
        public function init($html=true) {
23
        }
24
 
25
        public function gui($id, &$out, &$handled) {
26
        }
27
 
28
        public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
281 daniel-mar 29
                //if (!$ra_email) return false;
30
                //if (!OIDplus::authUtils()::isRaLoggedIn($ra_email) && !OIDplus::authUtils()::isAdminLoggedIn()) return false;
31
 
117 daniel-mar 32
                return false;
33
        }
34
 
304 daniel-mar 35
        public function implementsFeature($id) {
36
                if (strtolower($id) == '1.3.6.1.4.1.37476.2.5.2.3.2') return true; // modifyContent
37
                return false;
38
        }
39
 
117 daniel-mar 40
        public function modifyContent($id, &$title, &$icon, &$text) {
304 daniel-mar 41
                // Interface 1.3.6.1.4.1.37476.2.5.2.3.2
42
 
117 daniel-mar 43
                $obj = OIDplusObject::parse($id);
44
                if (!$obj) return;
45
                if (!$obj->userHasWriteRights()) return;
46
 
47
                // TODO: I want that this content comes before the WHOIS modifyContent.
48
                //       The problem is that first all public and then all RA plugins get loaded, not mixed by their priority
288 daniel-mar 49
                $res = OIDplus::db()->query("select lo.id, lo.unix_ts, lo.addr, lo.event, lu.severity from ###log lo ".
261 daniel-mar 50
                                            "left join ###log_object lu on lu.log_id = lo.id ".
150 daniel-mar 51
                                            "where lu.object = ? " .
52
                                            "order by lo.unix_ts desc", array($id));
360 daniel-mar 53
                $text .= '<h2>'._L('Log messages for object %1',htmlentities($id)).'</h2>';
236 daniel-mar 54
                if ($res->num_rows() > 0) {
117 daniel-mar 55
                        $text .= '<pre>';
236 daniel-mar 56
                        while ($row = $res->fetch_array()) {
117 daniel-mar 57
                                $users = array();
288 daniel-mar 58
                                $res2 = OIDplus::db()->query("select username, severity from ###log_user ".
150 daniel-mar 59
                                                             "where log_id = ?", array($row['id']));
236 daniel-mar 60
                                while ($row2 = $res2->fetch_array()) {
239 daniel-mar 61
                                        $users[] = $row2['username'];
117 daniel-mar 62
                                }
63
                                $users = count($users) > 0 ? ", ".implode('/',$users) : '';
64
 
360 daniel-mar 65
                                $addr = empty($row['addr']) ? _L('no address') : $row['addr'];
117 daniel-mar 66
 
288 daniel-mar 67
                                $text .= '<span class="severity_'.$row['severity'].'">' . date('Y-m-d H:i:s', $row['unix_ts']) . ': ' . htmlentities($row["event"])." (" . htmlentities($addr.$users) . ")</span>\n";
117 daniel-mar 68
                        }
69
                        $text .= '</pre>';
70
 
71
                        // TODO: List logs in a table instead of a <pre> text
72
                        // TODO: Load only X events and then re-load new events via AJAX when the user scrolls down
118 daniel-mar 73
                } else {
360 daniel-mar 74
                        $text .= '<p>'._L('Currently there are no log entries').'</p>';
117 daniel-mar 75
                }
76
 
77
        }
78
 
79
        public function tree_search($request) {
80
                return false;
81
        }
360 daniel-mar 82
}