Part added to detected hostname on Sun Solaris TODO: We should put this in seperate...
[core.git] / inc / classes / main / console / class_ConsoleTools.php
1 <?php
2 /**
3  * This class contains static helper functions for console applications
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24 class ConsoleTools extends BaseFrameworkSystem {
25         /**
26          * Protected constructor
27          *
28          * @return      void
29          */
30         protected function __construct () {
31                 // Call parent constructor
32                 parent::__construct(__CLASS__);
33         }
34
35         /**
36          * Tries to resolve an IP address from given hostname. Currently only IPv
37          * addresses are resolved.
38          *
39          * @param       $hostname       Host name we shall resolve
40          * @return      $ip                     IP address resolved from host name
41          */
42         protected function resolveIpAddress ($hostname) {
43                 // Debug message
44                 $this->debugOutput(sprintf("[%s:] Our host name is: <span class=\"data\">%s</span>",
45                         $this->__toString(),
46                         $hostname
47                 ));
48
49                 // Default is an invalid one
50                 $ip = '0.0.0.0';
51
52                 // Resolve it
53                 $ipResolved = gethostbyname($hostname);
54
55                 // Was it fine?
56                 if (($ipResolved !== false) && ($ipResolved != $hostname)) {
57                         // Okay, this works!
58                         $ip = $ipResolved;
59
60                         // Debug message
61                         $this->debugOutput(sprintf("[%s:] Resolved IP address is: <span class=\"data\">%s</span>\n",
62                                 $this->__toString(),
63                                 $ip
64                         ));
65                 } // END - if
66
67                 // Return resolved IP
68                 return $ip;
69         }
70
71         /**
72          * Aquires the IP address of this host by reading the /etc/hostname file and solving it
73          *
74          * @return      $ip             The resolved IP address
75          */
76         public static function acquireSelfIPAddress () {
77                 // Local IP by default
78                 $ip = '127.0.0.1';
79
80                 // Get a new instance
81                 $helper = new ConsoleTools();
82
83                 try {
84                         // Get a file pointer
85                         $io = FrameworkFileInputPointer::createFrameworkFileInputPointer('/etc/hostname');
86
87                         // Read the file
88                         $hostname = trim($io->readFromFile());
89
90                         // Close the file
91                         $io->closeFile();
92
93                         // Resolve the IP number
94                         $ip = $helper->resolveIpAddress($hostname);
95                 } catch (FileNotFoundException $e) {
96                         // Fall-back to 'SESSION_SVR' which found on my Sun Station
97                         if (isset($_SERVER['SESSION_SVR'])) {
98                                 // Resolve it
99                                 $ip = $helper->resolveIpAddress($_SERVER['SESSION_SVR']);
100                         } else {
101                                 // Could not find our hostname
102                                 $helper->debugOutput(sprintf("[%s:] WARNING: Cannot resolve my own IP address.",
103                                         $helper->__toString()
104                                 ));
105                         }
106                 } catch (FrameworkException $e) {
107                         // Output debug message
108                         $helper->debugOutput(sprintf("[%s:] Problem while resolving own IP address: [%s|%s]:%s",
109                                 $helper->__toString(),
110                                 $e->__toString(),
111                                 $e->getHexCode(),
112                                 $e->getMessage()
113                         ));
114                 }
115
116                 // Return the IP address
117                 return $ip;
118         }
119 }
120
121 // [EOF]
122 ?>