summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/propiedades/propiedades_repositorios.php
blob: 2b1de5ca8ef30b1639afc92a1dd26761658e193d (plain)
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
<?php
// *********************************************************************************************************
// Aplicación WEB: ogAdmWebCon
// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
// Fecha Creaciónn: Año 2009-2010
// Fecha Última modificación: Agosto-2010
// Nombre del fichero: propiedades_repositorios.php
// Descripción :
//		 Presenta el formulario de captura de datos de un repositorio para insertar,modificar y eliminar
// **********************************************************************************************************
include_once("../includes/ctrlacc.php");
include_once("../includes/opciones.php");
include_once("../includes/comunes.php");
include_once("../includes/CreaComando.php");
include_once("../clases/AdoPhp.php");
include_once("../idiomas/php/".$idioma."/propiedades_repositorios_".$idioma.".php");
// Fichero con funciones para trabajar con el webservice
include_once("../includes/restfunctions.php");
//________________________________________________________________________________________________________
$opcion=0;
$opciones=array($TbMsg[0],$TbMsg[1],$TbMsg[2],$TbMsg[3]);
//________________________________________________________________________________________________________
$idrepositorio=0;
$nombrerepositorio="";
$ip="";
$puertorepo="2002";
$apiKeyRepo="";
$grupoid=0;
$comentarios="";
$ordenadores=0; // Número de ordenador a los que da servicio
$numordenadores=0; // Número de ordenador a los que da servicio

if (isset($_GET["opcion"])) $opcion=$_GET["opcion"]; // Recoge parametros
if (isset($_GET["idrepositorio"])) $idrepositorio=$_GET["idrepositorio"];
if (isset($_GET["grupoid"])) $grupoid=$_GET["grupoid"];
if (isset($_GET["identificador"])) $idrepositorio=$_GET["identificador"];
//________________________________________________________________________________________________________
$cmd=CreaComando($cadenaconexion); // Crea objeto comando
if (!$cmd)
	Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con repositorio B.D.
if  ($opcion!=$op_alta){
	$resul=TomaPropiedades($cmd,$idrepositorio);
	if (!$resul)
		Header('Location: '.$pagerror.'?herror=3'); // Error de recuperaci�n de datos.
}
//________________________________________________________________________________________________________
//#########################################################################

// Si tenemos un apiKey podemos obtener la información desde el webservice en el repositorio
if($apiKeyRepo != ""){
	$repo[0]['url'] = "https://$ip/opengnsys/rest/repository/images";
	$repo[0]['header'] = array('Authorization: '.$apiKeyRepo);
	$result = multiRequest($repo);
	if ($result[0]['code'] === 200) {
		$result = json_decode($result[0]['data']);
		$repodir = $result->directory;
		$totalrepo = humanSize($result->disk->total);
		$librerepo = humanSize($result->disk->free);
		$ocupadorepo = humanSize($result->disk->total - $result->disk->free);
		$porcentajerepo = 100 - floor(100 * $result->disk->free / $result->disk->total);
		$repoOus = $result->ous;
		$repoImages = $result->images;
		$repoWithApi = true;
	} else {
		// Error de acceso a la API REST.
		$repoWithApi = false;
		$repoImages = null;
	}
} else {
	// Error de acceso a la API REST.
	$repoWithApi = false;
	$repoImages = null;
}

//#########################################################################
?>
<HTML>
<TITLE>Administración web de aulas</TITLE>
<HEAD>
	<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
	<LINK rel="stylesheet" type="text/css" href="../estilos.css">
	<SCRIPT language="javascript" src="../jscripts/validators.js"></SCRIPT>
	<SCRIPT language="javascript" src="../jscripts/propiedades_repositorios.js"></SCRIPT>
	<SCRIPT language="javascript" src="../jscripts/opciones.js"></SCRIPT>
	<?php echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/propiedades_repositorios_'.$idioma.'.js"></SCRIPT>'?>
</HEAD>
<BODY>
<DIV  align=center>
<FORM  name="fdatos" action="../gestores/gestor_repositorios.php" method="post">
	<INPUT type=hidden name=opcion value="<?php echo $opcion?>">
	<INPUT type=hidden name=idrepositorio value="<?php echo $idrepositorio?>">
	<INPUT type=hidden name=grupoid value="<?php echo $grupoid?>">
	<INPUT type=hidden name=ordenadores value="<?php echo $ordenadores?>">

	<P align=center class=cabeceras><?php echo $TbMsg[4]?><BR>
	<SPAN align=center class=subcabeceras><?php echo $opciones[$opcion]?></SPAN></P>
	<TABLE  align=center border=0 cellPadding=1 cellSpacing=1 class=tabla_datos >
<!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->
		<TR>
			<TH align="center">&nbsp;<?php echo $TbMsg[5]?>&nbsp;</TD>
			<?php
				if ($opcion==$op_eliminacion)
					echo '<TD>'.$nombrerepositorio.'</TD>';
				else
					echo '<TD><INPUT  class="formulariodatos" name="nombrerepositorio" style="width:200" type="text" value="'.$nombrerepositorio.'"></TD>';
			?>
			<TD valign="top" align="left" rowspan="4"	><CENTER>
				<IMG border="3" style="border-color:#63676b" src="../images/aula.jpg">
				<BR>&nbsp;Ordenadores:&nbsp;<?php echo $ordenadores?></CENTER></TD>
		</TR>
<!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->
		<TR>
			<TH align=center>&nbsp;<?php echo $TbMsg[6]?>&nbsp;</TD>
			<?php
			if ($opcion==$op_eliminacion)
					echo '<TD>'.$ip.'</TD>';
			else
				echo'<TD><INPUT  class="formulariodatos" name="ip" type="text" style="width:200" value="'.$ip.'"></TD>';
			?>
		</TR>
<!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->
		<TR>
			<TH align=center>&nbsp;<?php echo $TbMsg[8]?>&nbsp;</TD>
			<?php
				if ($opcion==$op_eliminacion)
					echo '<TD>'.$puertorepo.'</TD>';
				else
					echo'<TD><INPUT  class="formulariodatos" name=puertorepo type="text" style="width:200" value="'.$puertorepo.'"></TD>';
			?>
		</TR>
<!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->
		<TR>
			<TH align=center>&nbsp;<?php echo $TbMsg[17]?>&nbsp;</TD>
			<?php
				if ($opcion==$op_eliminacion)
					echo '<TD>'.$apiKeyRepo.'</TD>';
				else
					echo'<TD><INPUT  class="formulariodatos" name="apiKeyRepo" type="text" style="width:200" value="'.$apiKeyRepo.'"></TD>';
			?>
		</TR>
<!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->
		<TR>
			<TH align=center>&nbsp;<?php echo $TbMsg[7]?>&nbsp;</TD>
			<?php
				if ($opcion==$op_eliminacion)
					echo '<TD colspan="2">'.$comentarios.'</TD>';
				else
					echo '<TD colspan="2"><TEXTAREA   class="formulariodatos" name="comentarios" rows=2 cols=50>'.$comentarios.'</TEXTAREA></TD>';
			?>
		</TR>

<!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->

	</TABLE>
		<?php	if ( $opcion == 1 ){} else { ?>

	<TABLE  align=center border=0 cellPadding=2 cellSpacing=2 class=tabla_datos >
    <!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->

		<?php  if ($repoWithApi) { ?>
		<TR>
			<TH align=center width=125>&nbsp;<?php echo $TbMsg[11]?>&nbsp;</TD>
			<TH align=center width=120>&nbsp;<?php echo $TbMsg[12]?>&nbsp;</TD>
			<TH align=center width=120>&nbsp;<?php echo $TbMsg[13]?>&nbsp;</TD>
			<TH align=center width=101>&nbsp;<?php echo $TbMsg[14]?>&nbsp;</TD>
		</TR>
                <TR>
			<TD align=center width=125>&nbsp;<?php echo $totalrepo?>&nbsp;</TD>
            		<TD align=center width=120>&nbsp;<?php echo $ocupadorepo?>&nbsp;</TD>
           		<TD align=center width=120>&nbsp;<?php echo $librerepo?>&nbsp;</TD>
           		<TD align=center width=101>&nbsp;<?php echo "$porcentajerepo %" ?>&nbsp;</TD>
                </TR>
                <?php
				// Si tenemos informacion del repositorio remoto, mostramos las imagenes
				if($repoWithApi == true && is_array($repoImages)){
					echo "<tr class='tabla_listados_sin'><th colspan='4'>".$TbMsg['MSG_CONTENT']." $repodir</th></tr>\n";

echo "<tr><td>".$TbMsg['MSG_IMAGE']." (".$TbMsg['MSG_TYPE'].")</td><td>".$TbMsg['MSG_SIZE']."</td><td>".$TbMsg['MSG_MODIFIED']."</td><td>".$TbMsg['MSG_PERMISSIONS']."</td></tr>\n";
		   			foreach($repoImages as $image){
		   				echo "<tr class='tabla_listados_sin'>";
		   				echo "<td>".$image->name." (".$image->type.")</td>";
		   				echo "<td>".humanSize($image->size)."</td>";
		   				echo "<td>".$image->modified."</td>";
		   				echo "<td>".$image->mode."</td>";
		   				echo "</tr>\n";
		   			}
		   			foreach($repoOus as $ou) {
		   				foreach($ou->images as $image) {
		   					echo "<tr class='tabla_listados_sin'>";
		   					echo "<td>".$ou->subdir." / ".$image->name." (".$image->type.")</td>";
		   					echo "<td>".$image->size." bytes</td>";
		   					echo "<td>".$image->modified."</td>";
		   					echo "<td>".$image->mode."</td>";
		   					echo "</tr>\n";
		   				}
		   			}
		   		}
		   	?>
		<?php }else { ?>
		<tr>
			<th align="center">&nbsp;<?php echo '<strong>'.$TbMsg[15].'</strong></br>'.$TbMsg[16] ?></th>
		</tr>
        		<?php } ?>
		<?php } ?>
<!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -->

   	</TABLE>
</FORM>
</DIV>
<?php
//________________________________________________________________________________________________________
include_once("../includes/opcionesbotonesop.php");
//________________________________________________________________________________________________________
?>
</BODY>
</HTML>
<?php
//________________________________________________________________________________________________________
//	Recupera los datos de un repositorio
//		Parametros:
//		- cmd: Una comando ya operativo (con conexión abierta)
//		- id: El identificador del repositorio
//________________________________________________________________________________________________________
function TomaPropiedades($cmd,$id){
	global $nombrerepositorio;
	global $ip;
	global $comentarios;
	global $puertorepo;
	global $apiKeyRepo;
	global $ordenadores;

	$cmd->texto=<<<EOT
SELECT repositorios.*, COUNT(*) AS numordenadores
  FROM repositorios
 INNER JOIN ordenadores USING(idrepositorio)
 WHERE repositorios.idrepositorio='$id';
EOT;
	$rs=new Recordset;
	$rs->Comando=&$cmd;
	if (!$rs->Abrir()) return(true); // Error al abrir recordset
	$rs->Primero();
	if (!$rs->EOF){
		$nombrerepositorio=$rs->campos["nombrerepositorio"];
		$ip=$rs->campos["ip"];
		$comentarios=$rs->campos["comentarios"];
		$puertorepo=$rs->campos["puertorepo"];
		$apiKeyRepo=$rs->campos["apikey"];
		$ordenadores=$rs->campos["numordenadores"];
	}
	$rs->Cerrar();
	return(true);
}