-
Notifications
You must be signed in to change notification settings - Fork 0
/
process.php
61 lines (51 loc) · 1.38 KB
/
process.php
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
<?php
include 'site.class.php';
if (php_sapi_name() !== 'cli') {
header('Location: index.html');
die();
}
if (file_exists('config.ini')) {
$configs = parse_ini_file('config.ini');
} elseif (file_exists('config.ini.dist')) {
$configs = parse_ini_file('config.ini.dist');
} else {
die('ERROR - Archivo de configuración no encontrado'.PHP_EOL);
}
if (file_exists('.sites')) {
$sitios = explode("\n", trim(file_get_contents('.sites')));
} else {
die('ERROR - No hay sitios para comprobar, crear archivo .sites'.PHP_EOL);
}
$contenido = '
<!-- Ꙩ_Ꙩ -->
<html>
<head>
<title>Estado Sitios Web</title>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<h1>Estado sitios Web</h1>
<table>
<tr>
<th>Sitio</th>
<th>HTTP</th>
<th>HTTPS</th>
</tr>
';
foreach ($sitios as $sitio) {
$Site = new Site($sitio);
echo 'Comprobando '.$Site->sitename().PHP_EOL;
$contenido .= '<tr>';
$contenido .= $Site->header();
$contenido .= $Site->result(false);
$contenido .= $Site->result(true);
$contenido .= '</tr>'."\n";
}
$contenido .= '
</table>
<div class="footer">Último chequeo: '.date('d-m-Y H:i:s').'</div>
</body>
</html>';
file_put_contents('index.html', $contenido);