Subversion Repositories oidplus

Rev

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

Rev Author Line No. Line
101 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
 
112 daniel-mar 20
if (!defined('IN_OIDPLUS')) die();
21
 
256 daniel-mar 22
class OIDplusPagePublicWhois extends OIDplusPagePluginPublic {
101 daniel-mar 23
 
222 daniel-mar 24
        public static function getPluginInformation() {
25
                $out = array();
26
                $out['name'] = 'WhoIs';
27
                $out['author'] = 'ViaThinkSoft';
28
                $out['version'] = null;
29
                $out['descriptionHTML'] = null;
30
                return $out;
31
        }
32
 
101 daniel-mar 33
        public function priority() {
34
                return 100;
35
        }
36
 
37
        public function action(&$handled) {
38
                // Nothing
39
        }
40
 
41
        public function init($html=true) {
263 daniel-mar 42
                OIDplus::config()->prepareConfigKey('whois_auth_token',                       'OID-over-WHOIS authentication token to display confidential data', '', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
104 daniel-mar 43
                        $test_value = preg_replace('@[0-9a-zA-Z]*@', '', $value);
44
                        if ($test_value != '') {
250 daniel-mar 45
                                throw new OIDplusException("Only characters and numbers are allowed as authentication token.");
104 daniel-mar 46
                        }
263 daniel-mar 47
                });
48
                OIDplus::config()->prepareConfigKey('webwhois_output_format_spacer',          'WebWHOIS: Spacer', 2, OIDplusConfig::PROTECTION_EDITABLE, function($value) {
261 daniel-mar 49
                        if (!is_numeric($value) || ($value < 0)) {
50
                                throw new OIDplusException("Please enter a valid value.");
51
                        }
263 daniel-mar 52
                });
53
                OIDplus::config()->prepareConfigKey('webwhois_output_format_max_line_length', 'WebWHOIS: Max line length', 80, OIDplusConfig::PROTECTION_EDITABLE, function($value) {
261 daniel-mar 54
                        if (!is_numeric($value) || ($value < 0)) {
55
                                throw new OIDplusException("Please enter a valid value.");
56
                        }
263 daniel-mar 57
                });
101 daniel-mar 58
        }
59
 
202 daniel-mar 60
        private function getExampleId() {
61
                $firsts = array();
62
                $first_ns = null;
227 daniel-mar 63
                foreach (OIDplus::getEnabledObjectTypes() as $ot) {
202 daniel-mar 64
                        if (is_null($first_ns)) $first_ns = $ot::ns();
261 daniel-mar 65
                        $res = OIDplus::db()->query("SELECT id FROM ###objects WHERE parent = ? ORDER BY id", array($ot::ns().':'));
236 daniel-mar 66
                        if ($row = $res->fetch_array())
202 daniel-mar 67
                                $firsts[$ot::ns()] = $row['id'];
68
                }
69
                if (count($firsts) == 0) {
70
                        return 'oid:2.999';
71
                } elseif (isset($firsts['oid'])) {
72
                        return  $firsts['oid'];
73
                } else {
74
                        return  $firsts[$first_ns];
75
                }
76
        }
77
 
101 daniel-mar 78
        public function gui($id, &$out, &$handled) {
79
                if (explode('$',$id)[0] == 'oidplus:whois') {
80
                        $handled = true;
81
 
202 daniel-mar 82
                        $example = $this->getExampleId();
83
 
101 daniel-mar 84
                        $out['title'] = 'Web WHOIS';
241 daniel-mar 85
                        $out['icon'] = file_exists(__DIR__.'/icon_big.png') ? OIDplus::webpath(__DIR__).'icon_big.png' : '';
101 daniel-mar 86
 
104 daniel-mar 87
                        $out['text']  = '';
101 daniel-mar 88
                        $out['text'] .= '<p>With the web based whois service, you can query object information in a machine readable format.</p>';
241 daniel-mar 89
                        $out['text'] .= '<p>RFC draft (for Text format): <a href="'.OIDplus::webpath(__DIR__).'whois/rfc/draft-viathinksoft-oidwhois-00.txt">TXT</a> | <a href="'.OIDplus::webpath(__DIR__).'whois/rfc/draft-viathinksoft-oidwhois-00.nroff">NROFF</a></p>';
90
                        $out['text'] .= '<form action="'.OIDplus::webpath(__DIR__).'whois/webwhois.php" method="GET">';
201 daniel-mar 91
                        $out['text'] .= '       <label class="padding_label">Format:</label><select name="format">';
92
                        $out['text'] .= '               <option value="txt">Text (RFC pending)</option>';
93
                        $out['text'] .= '               <option value="json">JSON</option>';
94
                        $out['text'] .= '               <option value="xml">XML</option>';
95
                        $out['text'] .= '       </select><br>';
202 daniel-mar 96
                        $out['text'] .= '       <label class="padding_label">Query:</label><input type="text" name="query" value="'.htmlentities($example).'" style="width:250px">';
104 daniel-mar 97
                        $out['text'] .= '       <input type="submit" value="Query">';
101 daniel-mar 98
                        $out['text'] .= '</form>';
99
                }
100
        }
101
 
106 daniel-mar 102
        public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
101 daniel-mar 103
                if (file_exists(__DIR__.'/treeicon.png')) {
241 daniel-mar 104
                        $tree_icon = OIDplus::webpath(__DIR__).'treeicon.png';
101 daniel-mar 105
                } else {
106
                        $tree_icon = null; // default icon (folder)
107
                }
108
 
109
                $json[] = array(
110
                        'id' => 'oidplus:whois',
111
                        'icon' => $tree_icon,
112
                        'text' => 'Web WHOIS'
113
                );
104 daniel-mar 114
 
115
                return true;
101 daniel-mar 116
        }
117
 
118
        public function modifyContent($id, &$title, &$icon, &$text) {
241 daniel-mar 119
                $text .= '<br><img src="'.OIDplus::webpath(__DIR__).'page_pictogram.png" height="15" alt=""> <a href="'.OIDplus::webpath(__DIR__).'whois/webwhois.php?query='.urlencode($id).'" class="gray_footer_font">Whois</a>';
101 daniel-mar 120
        }
108 daniel-mar 121
 
122
        public function tree_search($request) {
123
                return false;
124
        }
101 daniel-mar 125
}