Subversion Repositories ALCASAR

Rev

Rev 2822 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
1349 richard 1
<?php
2208 tom.houday 2
# $Id: autoregistrationinfo.php 2823 2020-05-24 17:38:00Z rexy $
2822 rexy 3
#
4
# SMS Autoregistration
5
# By Rexy
2208 tom.houday 6
 
7
define('CONF_FILE', '/usr/local/etc/alcasar.conf');
8
 
9
// Read CONF_FILE
10
$file_conf = fopen(CONF_FILE, 'r');
11
if (!$file_conf) {
12
	exit('Error opening the file '.CONF_FILE);
1349 richard 13
}
2208 tom.houday 14
while (!feof($file_conf)) {
15
	$buffer = fgets($file_conf, 4096);
16
	if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
2450 tom.houday 17
		$tmp = explode('=', $buffer, 2);
18
		$conf[trim($tmp[0])] = trim($tmp[1]);
2208 tom.houday 19
	}
20
}
21
fclose($file_conf);
22
 
2600 tom.houday 23
// Check if the SMS service is enable
24
if ($conf['SMS'] !== 'on') {
25
	header('Location: /');
26
	exit();
27
}
28
$organisme   = $conf['ORGANISM'];
29
$current_num = $conf['SMS_NUM'];
2208 tom.houday 30
 
2600 tom.houday 31
 
2208 tom.houday 32
// Choice of language
1400 richard 33
$Language = 'en';
2208 tom.houday 34
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
35
	$Langue = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
36
	$Language = strtolower(substr(chop($Langue[0]), 0, 2));
37
}
38
if ($Language === 'fr') {	// French
39
	$l_title		= "Page d'auto enregistrement";
40
	$l_num_exist		= "Compte actif";
41
	$l_num_flood		= "Numéro bloqué: nombre d'essai dépassé.";
1400 richard 42
 
2208 tom.houday 43
	$l_num_num		= "Numero de téléphone";
44
	$l_num_raison		= "Etat de votre numéro";
45
	$l_num_expiration	= "Expiration du bloquage";
1400 richard 46
 
2208 tom.houday 47
	$l_tuto_1		= "Bienvenue sur la page d'auto enregistrement.";
48
	$l_tuto_2		= "Ce portail d'accès à Internet vous offre la possibilité de vous inscrire en envoyant le mot de passe de votre choix par SMS au numéro suivant (prix d'un SMS, non surtaxé).";
49
	$l_tuto_3		= "Votre SMS ne doit contenir qu'un seul mot.";
50
	$l_tuto_4		= "Votre inscription sera activée lorsque vous retrouverez votre numéro de téléphone dans le tableau ci-dessous. Ce numéro de téléphone constitue votre identifiant de connexion";
51
	$l_tuto_5		= "Le champ de recherche ci-dessous vous permet de retrouver votre numéro suivant les 5 derniers chiffres.";	
1400 richard 52
 
2208 tom.houday 53
	$l_tab_first		= "premier";
54
	$l_tab_last		= "dernier";
55
	$l_tab_next		= "suivant";
56
	$l_tab_prev		= "précédent";
57
	$l_tab_search		= "Recherche :";
58
	$l_tab_pmenu		= "Affiche la page _PAGE_ sur _PAGES_";
59
	$l_tab_info		= "Montrer _MENU_ résultats par page";
60
	$l_tab_infoempty	= "Aucun résultat";
1400 richard 61
 
2208 tom.houday 62
	$l_autorefresh		= "Rafraichissement : 10 sec";
63
} else {			// English
64
	$l_title		= "Autoregistration";
65
	$l_num_exist		= "Account enables";
66
	$l_num_flood		= "Phone number banned: Number of trial exceeded.";
1400 richard 67
 
2208 tom.houday 68
	$l_num_num		= "Phone number";
69
	$l_num_raison		= "Status of your phone number";
70
	$l_num_expiration	= "Expiration";
71
 
72
	$l_tuto_1		= "Welcome to the auto-enrollment page";
73
	$l_tuto_2		= "This portal allows you to enroll by sending the password of you choice via SMS to the following number (no surcharge) :";
74
	$l_tuto_3		= "Just send 1 word in your SMS.";
75
	$l_tuto_4		= "Your registration will be activated when you'll find your phone number in the following table. This phone number is your login name";
76
	$l_tuto_5		= "You can search your phone number according to the 5 last digits in your phone number.";
1400 richard 77
 
2208 tom.houday 78
	$l_tab_first		= "first";
79
	$l_tab_last		= "last";
80
	$l_tab_next		= "next";
81
	$l_tab_prev		= "previous";
82
	$l_tab_search		= "Search :";
83
	$l_tab_pmenu		= "Showing _PAGE_ to _PAGE_ of _PAGE_ entries :";
84
	$l_tab_info		= "Show _MENU_ entries";
85
	$l_tab_infoempty	= "No matching records found";
1400 richard 86
 
2208 tom.houday 87
	$l_autorefresh		= "Refresh: 10 sec";
88
}
1400 richard 89
 
2208 tom.houday 90
// Get SMS from database
91
require('/etc/freeradius-web/config.php');
2822 rexy 92
$img_rep         = '/images/';
93
$img_sms         = 'sms.png';
1400 richard 94
 
2208 tom.houday 95
$con = mysqli_connect($config['sql_server'], $config['sql_username'], $config['sql_password'], 'gammu');
96
 
97
if (mysqli_connect_errno()) {
98
	exit('Failed to connect to ' . $config['sql_type']/* . ': ' . mysqli_connect_error()*/);
1400 richard 99
}
2208 tom.houday 100
 
101
$result = mysqli_query($con, 'SELECT * FROM `SMS_ban_perm` ORDER BY date_add DESC;');
102
 
103
$smsBanPerms = [];
104
while ($row = mysqli_fetch_array($result)) {
105
	$smsBanPerms[] = (object) [
106
		'numberHidden' => substr($row['SenderNumber'], 0, 3) . '****' . substr($row['SenderNumber'], -5),
107
		'expiration'   => $row['Expiration'],
108
		'perm'         => $row['Perm']
109
	];
110
}
111
mysqli_close($con);
112
 
1400 richard 113
?>
2208 tom.houday 114
<!DOCTYPE html>
115
<html><!-- written by Rexy -->
1349 richard 116
<head>
2208 tom.houday 117
	<meta charset="utf-8">
2822 rexy 118
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
119
	<title>ALCASAR - <?= $l_title ?></title>
120
	<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css">
121
	<link rel="stylesheet" type="text/css" href="/css/index.css">
2809 rexy 122
	<link rel="stylesheet" type="text/css" href="/css/jquery.dataTables.css">
2823 rexy 123
	<link rel="icon" href="/images/favicon-48.ico" type="image/ico">
2822 rexy 124
	<script src="/js/jquery.min.js"></script>
125
	<script src="/js/jquery.dataTables.js"></script>
2208 tom.houday 126
	<script>
127
	function timedRefresh(timeoutPeriod) {
128
		var interval = setInterval(refreshPage, timeoutPeriod);
129
	}
1452 richard 130
 
2208 tom.houday 131
	function refreshPage() {
132
		if ($('input[name=autoRefreshCheckboxes]').is(':checked')) {
133
			location.reload(true);
134
		}
135
	}
1452 richard 136
 
2208 tom.houday 137
	$(document).ready( function () {
138
		$('#table_id').DataTable({
139
			"language": {
140
				"paginate": {
141
					"sFirst":    "<?= $l_tab_first ?>",
142
					"sLast":     "<?= $l_tab_last ?>",
143
					"sPrevious": "<?= $l_tab_prev ?>",
144
					"sNext":     "<?= $l_tab_next ?>"
145
				},
146
				"lengthMenu":  "<?= $l_tab_info ?>",
147
				"zeroRecords": "<?= $l_tab_infoempty ?>",
148
				"info":        "<?= $l_tab_pmenu ?>",
149
				"infoEmpty":   "<?= $l_tab_infoempty ?>",
150
				"sSearch":     "<?= $l_tab_search ?>"
151
			}
152
		});
1387 richard 153
	});
2208 tom.houday 154
	</script>
1349 richard 155
</head>
2208 tom.houday 156
<body onload="timedRefresh(10000);">
2822 rexy 157
	<div class="col-xs-12 col-md-10 col-md-offset-1"> 
158
		<!-- HeaderBox -->
159
		<div class="row banner">
160
			<!-- Logo box -->
161
			<div class="img_banner hidden-xs col-sm-3 col-md-2 col-lg-2"> 
162
				<img class="img-responsive img-organisme" src="images/organisme.png">
163
			</div>
164
			<!-- Title -->
165
			<div id="cadre_titre" class="titre_banner col-xs-12 col-sm-8">
166
					<p id="acces_controle" class="titre_controle"><?= $l_title ?></p>
167
			</div>
168
			<!-- Logo box -->
169
			<div class="img_banner hidden-xs col-sm-3 col-md-2 col-lg-2">
170
				<img class="img-responsive img-organisme" src="images/logo-alcasar_70.png">
171
			</div>
2208 tom.houday 172
		</div>
2822 rexy 173
		<!-- Main content box -->
174
		<div class="row">
175
			<div id="contenu_acces" class="col-xs-12 col-lg-offset-1 col-lg-10">
176
				<h3><?= $l_tuto_2 ?></h3>
177
				<div class="menu-container container col_xs_12 col-sm-7">
178
					<div class="box_menu_right box_menu">
179
						<span><?= $current_num ?></span>
180
						<div class="menu-image">						
181
							<img class="img-responsive" src="<?= $img_rep.$img_sms ?>">
182
						</div>
183
					</div>
184
				</div>
185
				<div class="info-box-container col-sm-5">
186
					<div id="box_infos">
187
						<p class="box_infos_explanations"><?= $l_tuto_3 ?>
188
					</div>
189
				</div>
190
			</div>
191
		</div>
192
	<p>
193
		<div class="row">
194
			<div id="contenu_acces" class="col-xs-12 col-lg-offset-1 col-lg-10">
195
				<h4><?= $l_tuto_4 ?></h4>
196
				<h4><?= $l_tuto_5 ?></h4>
197
				<label><input type="checkbox" checked="checked" name="autoRefreshCheckboxes"><?= $l_autorefresh ?></label>
198
				<table id="table_id" class="display">
199
				<thead>
2208 tom.houday 200
					<tr>
2822 rexy 201
						<th><b><?= $l_num_num ?></b></th>
202
						<th><b><?= $l_num_raison ?></b></th>
203
						<th><b><?= $l_num_expiration ?></b></th>
204
					</tr>
205
				</thead>
206
				<tbody>
207
					<?php foreach ($smsBanPerms as $smsBanPerm): ?>
208
						<tr>
209
							<td><?= $smsBanPerm->numberHidden ?></td>
210
							<?php if ($smsBanPerm->perm == '0'): ?>
2208 tom.houday 211
							<td><?= $l_num_exist ?></td>
2822 rexy 212
							<?php elseif ($smsBanPerm->perm == '1'): ?>
2208 tom.houday 213
							<td><?= $l_num_flood ?></td>
2822 rexy 214
							<?php endif ?>
215
							<td><?= $smsBanPerm->expiration ?></td>
216
						</tr>
217
					<?php endforeach; ?>
218
				</tbody>
219
				</table>
220
			</div>
2208 tom.houday 221
		</div>
222
	</div>
1349 richard 223
</body>
224
</html>