1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
<?php
/**
* @file nada.php
* @brief Muestra el marco derecho "por defecto" cuando no se ejecuta un comando.
* @version 1.1.1 - Se incluyen consejos del día la primera vez que se entra.
* @date 2019-09-06
*/
include_once("./includes/ctrlacc.php");
include_once("./idiomas/php/".$idioma."/nada_".$idioma.".php");
// ################### Consejo del día ################# //
// Sólo lo muestro al entrar en la consola
$consejo = '';
if (basename($_SERVER['HTTP_REFERER']) == "frames.php") {
// Elijo el consejo de hoy aleatoriamente.
$numTip=rand(0,count($TipOfDay)-1);
$tipMessage=$TipOfDay[$numTip];
$tipImage=is_file("images/tipOfDay_$numTip.png") ? '<img src="images/tipOfDay_'.$numTip.'.png">' : '';
$consejo = ' <div>'."\n".
' <p align=center class=cabeceras><img border=0 nod="aulas-1" value="Sala Virtual" style="cursor:pointer" src="images/iconos/logocirculos.png" > '.$TbMsg["TIP"].'</p>'."\n".
' <div class="consejo">'."\n".
' <p class="subcabeceras help_menu">'.$tipMessage.'</p>'."\n".
' <div>'.$tipImage.'</div>'."\n".
' </div>'."\n".
' </div>'."\n";
}
// ##########################################################################################################
// ############### PARA SABER QUE IP TIENE EL DISPOSITIVO QUE ESTA UTILIZANDO OPENGNSYS ###################
// ##########################################################################################################
//Para saber la IP con Proxy o sin el
function getRemoteInfo () {
$proxy="";
if (isSet($_SERVER)) {
if (isSet($_SERVER["HTTP_X_FORWARDED_FOR"])) {
$IP = $_SERVER["HTTP_X_FORWARDED_FOR"];
$proxy = $_SERVER["REMOTE_ADDR"];
} elseif (isSet($_SERVER["HTTP_CLIENT_IP"])) {
$IP = $_SERVER["HTTP_CLIENT_IP"];
} else {
$IP = $_SERVER["REMOTE_ADDR"];
}
} else {
if ( getenv( 'HTTP_X_FORWARDED_FOR' ) ) {
$IP = getenv( 'HTTP_X_FORWARDED_FOR' );
$proxy = getenv( 'REMOTE_ADDR' );
} elseif ( getenv( 'HTTP_CLIENT_IP' ) ) {
$IP = getenv( 'HTTP_CLIENT_IP' );
} else {
$IP = getenv( 'REMOTE_ADDR' );
}
}
if (strstr($IP, ',')) {
$ips = explode(',', $IP);
$IP = $ips[0];
}
$RemoteInfo[0]=$IP;
$RemoteInfo[1]=@GetHostByAddr($IP);
$RemoteInfo[2]=$proxy;
return $RemoteInfo[0];
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ##########################################################################################################
// ############### PARA SABER QUE TIPO DISPOSITIVO ESTA UTILIZANDO OPENGNSYS ##############################
// ##########################################################################################################
$device="";
$device = strtolower($_SERVER['HTTP_USER_AGENT']);
if(stripos($device,'iphone') == TRUE ){$device="iphone";$tipodevice="Iphone / Ipad";$ipreal=getRemoteInfo();$_SESSION["ipdevice"]=$ipreal;}
elseif (stripos($device,'ipad') == TRUE) {$device="ipad";$tipodevice="Ipad / Iphone";$ipreal=getRemoteInfo();$_SESSION["ipdevice"]=$ipreal;}
elseif (stripos($device,'android') == TRUE) {$device="android";$tipodevice="Movil / Tablet";$ipreal=getRemoteInfo();$_SESSION["ipdevice"]=$ipreal;}
elseif (stripos($device,'linux') == TRUE) {$device="linux";$tipodevice="Linux";$ipreal=getRemoteInfo();$_SESSION["ipdevice"]=$ipreal;}
elseif (stripos($device,'macintosh') == TRUE) {$device="macintosh";$tipodevice="Macintosh";$ipreal=getRemoteInfo();$_SESSION["ipdevice"]=$ipreal;}
else{$device="0";$tipodevice="PC";}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ##########################################################################################################
// ################################ PARA SABER QUE SISTEMA DEL DISPOSITIVO ################################
// ##########################################################################################################
$sistem="";
$buscasistem=strtolower($_SERVER['HTTP_USER_AGENT']);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// SISTEMAS WINDOWS //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(stripos($buscasistem,'windows nt 10.0') == TRUE ){$sistem="Windows 10";}
if(stripos($buscasistem,'windows nt 6.2') == TRUE ){$sistem="Windows 8";}
if(stripos($buscasistem,'windows nt 6.1') == TRUE ){$sistem="Windows 7";}
if(stripos($buscasistem,'windows nt 6.0') == TRUE ){$sistem="Windows Vista/Server 2008";}
if(stripos($buscasistem,'windows nt 5.2') == TRUE ){$sistem="Windows Server 2003";}
if(stripos($buscasistem,'windows nt 5.1') == TRUE ){$sistem="Windows XP";}
if(stripos($buscasistem,'windows nt 5.0') == TRUE ){$sistem="Windows 2000";}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// SISTEMAS APPLE //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(stripos($buscasistem,'ipad') == TRUE ){$sistem="iOS";}
if(stripos($buscasistem,'iphone') == TRUE ){$sistem="iOS";}
if ($device == "macintosh" ){$sistem="Mac OSX";}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// SISTEMAS LINUX //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(stripos($buscasistem,'ubuntu') == TRUE ){$sistem="Ubuntu";}
if(stripos($buscasistem,'red hat') == TRUE ){$sistem="Red Hat";}
if(stripos($buscasistem,'centos') == TRUE ){$sistem="CentOS";}
if(stripos($buscasistem,'suse') == TRUE ){$sistem="openSUSE";}
if(stripos($buscasistem,'mandriva') == TRUE ){$sistem="Mandriva";}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// SISTEMAS ANDROID //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(stripos($buscasistem,'android') == TRUE ){$sistem="Android";}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ##########################################################################################################
// ########################## PARA SABER QUE VERSION DEL SISTEMA DEL DISPOSITIVO ##########################
// ##########################################################################################################
$buscaversistem=strtolower($_SERVER['HTTP_USER_AGENT']);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// VERSION WINDOWS //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(stripos($buscaversistem,'windows nt') == TRUE ){$versistem="-";}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// VERSION APPLE //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(stripos($buscaversistem,'os x') == TRUE ){
$buscaversistemapple=$_SERVER['HTTP_USER_AGENT'];
$buscaversistemapple=str_replace("OS","OS:",$buscaversistemapple);
$buscaversistemapple=str_replace("like",":like",$buscaversistemapple);
$buscaversistemapple=explode(":",$buscaversistemapple);
$versistem=$buscaversistemapple[1];}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// VERSION LINUX //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(stripos($buscaversistem,'linux') == TRUE ){$versistem="-";}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
// VERSION ANDROID //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if(stripos($buscaversistem,'android') == TRUE ){
$buscaversistemandroid=str_replace(")",";",$buscaversistem);
$buscaversistemandroid=explode(";",$buscaversistemandroid);
$versistem=$buscaversistemandroid[2];
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ##########################################################################################################
// ########################## PARA SABER QUE NAVEGADOR DEL SISTEMA DEL DISPOSITIVO ########################
// ##########################################################################################################
$buscanav=strtolower($_SERVER['HTTP_USER_AGENT']);
if(stripos($buscanav,'firefox') == TRUE ){$nav="Firefox";}
if(stripos($buscanav,'safari') == TRUE ){$nav="Safari";}
if(stripos($buscanav,'msie') == TRUE ){$nav="Internet Explorer";}
if(stripos($buscanav,'chrome') == TRUE ){$nav="Google Chrome";}
if(stripos($buscanav,'opera') == TRUE ){$nav="Opera";}
if(stripos($buscanav,'qtembedded') == TRUE ){$nav="OpenGnsys Browser";}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ##########################################################################################################
// ########################## PARA SABER VERSION DEL NAVEGADOR DEL DISPOSITIVO ############################
// ##########################################################################################################
$buscavernav=explode("/", strtolower($_SERVER['HTTP_USER_AGENT']));
$vernav=end($buscavernav);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
if ($device == "ipad" || $device == "iphone" || $device == "android" )
{
$data = json_decode(@file_get_contents(__DIR__ . '/../doc/VERSION.json'));
if (empty($data->project)) {
$version = "OpenGnsys";
} else {
$version = @$data->project.' ' . @$data->version.' '
. (isset($data->codename) ? '('.$data->codename.') ' : '') . @$data->release;
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" type="text/css" href="./estilos.css">
</head>
<body>
<table width="100%" border="0">
<tr>
<td colspan="3" align="center"> </td>
</tr>
<tr>
<td colspan="3" align="center"><SPAN align=center class=cabeceras><font size="4"><?php echo $TbMsg[0] ;?></font></SPAN></td>
</tr>
<tr>
<td colspan="3" align="center"><SPAN align=center class=cabeceras><font size="4"><?php echo $version; ?></font></SPAN></td>
</tr>
<tr>
<td colspan="3" align="center"> </td>
</tr>
<tr>
<td width="23%"> </td>
<td width="28%"><SPAN align=center class=subcabeceras><font size="3"><?php echo $TbMsg[1] ;?></font></SPAN></td>
<td width="49%"><SPAN align=center class=sobrecabeceras><font size="3"><?php echo $_SESSION['ipdevice']; ?></font></SPAN></td>
</tr>
<tr>
<td> </td>
<td><SPAN align=center class=subcabeceras><font size="3"><?php echo $TbMsg[2] ;?></font></SPAN></td>
<td><SPAN align=center class=sobrecabeceras><font size="3"><?php echo $tipodevice; ?></font></SPAN></td>
</tr>
<tr>
<td> </td>
<td><SPAN align=center class=subcabeceras><font size="3"><?php echo $TbMsg[3] ;?></font></SPAN></td>
<td><SPAN align=center class=sobrecabeceras><font size="3"><?php echo $sistem; ?></font></SPAN></td>
</tr>
<tr>
<td> </td>
<td><SPAN align=center class=subcabeceras><font size="3"><?php echo $TbMsg[4] ;?></font></SPAN></td>
<td><SPAN align=center class=sobrecabeceras><font size="3"><?php echo $versistem; ?></font></SPAN></td>
</tr>
<tr>
<td> </td>
<td><SPAN align=center class=subcabeceras><font size="3"><?php echo $TbMsg[5] ;?></font></SPAN></td>
<td><SPAN align=center class=sobrecabeceras><font size="3"><?php echo $nav; ?></font></SPAN></td>
</tr>
<tr>
<td> </td>
<td><SPAN align=center class=subcabeceras><font size="3"><?php echo $TbMsg[6] ;?></font></SPAN></td>
<td><SPAN align=center class=sobrecabeceras><font size="3"><?php echo $vernav; ?></font></SPAN></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
<?php } else { ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" type="text/css" href="./estilos.css">
</head>
<body>
<?php echo $consejo; ?>
</body>
</html>
<?php } ?>
|