2014-11-09 22:49:07 +01:00
|
|
|
<?php
|
|
|
|
|
2014-12-26 20:18:03 +01:00
|
|
|
/* Wifi Hotspot app for YunoHost
|
|
|
|
* Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
|
2015-07-22 23:54:56 +02:00
|
|
|
* Contribute at https://github.com/labriqueinternet/hotspot_ynh
|
2014-12-26 20:18:03 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-07-24 20:56:19 +02:00
|
|
|
function ynh_setting_get($setting) {
|
|
|
|
$value = exec("sudo grep \"^$setting:\" /etc/yunohost/apps/hotspot/settings.yml");
|
|
|
|
$value = preg_replace('/^[^:]+:\s*["\']?/', '', $value);
|
|
|
|
$value = preg_replace('/\s*["\']$/', '', $value);
|
|
|
|
|
|
|
|
return htmlspecialchars($value);
|
2014-11-09 22:49:07 +01:00
|
|
|
}
|
|
|
|
|
2015-07-24 20:56:19 +02:00
|
|
|
function ynh_setting_set($setting, $value) {
|
|
|
|
return exec('sudo yunohost app setting hotspot '.escapeshellarg($setting).' -v '.escapeshellarg($value));
|
2014-11-09 22:49:07 +01:00
|
|
|
}
|
|
|
|
|
2014-11-10 22:27:59 +01:00
|
|
|
function stop_service() {
|
2015-05-12 09:16:53 +02:00
|
|
|
exec('sudo systemctl stop ynh-hotspot');
|
2014-11-10 22:27:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function start_service() {
|
2015-05-12 09:16:53 +02:00
|
|
|
exec('sudo systemctl start ynh-hotspot', $output, $retcode);
|
2014-11-09 22:49:07 +01:00
|
|
|
|
|
|
|
return $retcode;
|
|
|
|
}
|
|
|
|
|
2014-11-17 23:44:18 +01:00
|
|
|
function service_status() {
|
2015-05-25 02:23:28 +02:00
|
|
|
exec('sudo ynh-hotspot status', $output);
|
2014-11-17 23:44:18 +01:00
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
function service_faststatus() {
|
2019-02-10 19:51:12 +01:00
|
|
|
exec('systemctl is-active hostapd', $output, $retcode);
|
2014-11-17 23:44:18 +01:00
|
|
|
|
|
|
|
return $retcode;
|
|
|
|
}
|
|
|
|
|
2014-11-16 23:27:36 +01:00
|
|
|
function ipv6_expanded($ip) {
|
|
|
|
exec('ipv6_expanded '.escapeshellarg($ip), $output);
|
|
|
|
|
|
|
|
return $output[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
function ipv6_compressed($ip) {
|
|
|
|
exec('ipv6_compressed '.escapeshellarg($ip), $output);
|
|
|
|
|
|
|
|
return $output[0];
|
|
|
|
}
|
|
|
|
|
2015-05-02 14:54:08 +02:00
|
|
|
function iw_multissid($nic) {
|
|
|
|
exec('sudo iw_multissid '.escapeshellarg($nic), $output);
|
|
|
|
|
|
|
|
return $output[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
function iw_devices() {
|
|
|
|
exec('sudo iw_devices', $output);
|
|
|
|
|
2015-09-15 22:21:27 +02:00
|
|
|
return !empty($output) ? getArray($output[0]) : '';
|
2015-05-02 14:54:08 +02:00
|
|
|
}
|
|
|
|
|
2015-04-26 17:18:52 +02:00
|
|
|
function getArray($str) {
|
|
|
|
return explode('|', $str);
|
|
|
|
}
|
|
|
|
|
|
|
|
function noneValue($str) {
|
2015-05-02 14:54:08 +02:00
|
|
|
return ($str == 'none') ? '' : $str;
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
2014-12-26 18:58:58 +01:00
|
|
|
function is_connected_through_hotspot($ip6_net, $ip4_nat_prefix) {
|
|
|
|
$ip = $_SERVER['REMOTE_ADDR'];
|
|
|
|
|
2015-05-02 17:41:54 +02:00
|
|
|
foreach($ip6_net as $net) {
|
|
|
|
$ip6_regex = '/^'.preg_quote(preg_replace('/::$/', '', $net)).':/';
|
|
|
|
|
|
|
|
if(preg_match($ip6_regex, $ip)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($ip4_nat_prefix as $prefix) {
|
|
|
|
$ip4_regex = '/^'.preg_quote($prefix).'\./';
|
|
|
|
|
|
|
|
if(preg_match($ip4_regex, $ip)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2014-12-26 18:58:58 +01:00
|
|
|
}
|
|
|
|
|
2014-11-09 22:49:07 +01:00
|
|
|
dispatch('/', function() {
|
2015-04-26 21:34:11 +02:00
|
|
|
$ssids = array();
|
2015-05-02 14:54:08 +02:00
|
|
|
$devs = iw_devices();
|
2015-04-26 21:34:11 +02:00
|
|
|
$devs_list = '';
|
|
|
|
|
2015-09-15 22:21:27 +02:00
|
|
|
$wifi_device = noneValue(ynh_setting_get('wifi_device'));
|
2015-07-24 20:56:19 +02:00
|
|
|
$multissid = ynh_setting_get('multissid');
|
|
|
|
$wifi_channel = ynh_setting_get('wifi_channel');
|
2014-11-09 22:49:07 +01:00
|
|
|
|
|
|
|
foreach($devs AS $dev) {
|
2015-05-02 14:54:08 +02:00
|
|
|
$dev_multissid = iw_multissid($dev);
|
2014-11-09 22:49:07 +01:00
|
|
|
|
2015-05-02 14:54:08 +02:00
|
|
|
$active = ($dev == $wifi_device) ? 'class="active"' : '';
|
2015-05-02 18:44:52 +02:00
|
|
|
$devs_list .= "<li $active data-multissid='$dev_multissid'><a href='#'>$dev</a></li>\n";
|
2014-11-09 22:49:07 +01:00
|
|
|
}
|
|
|
|
|
2015-07-24 20:56:19 +02:00
|
|
|
$wifi_ssid = getArray(ynh_setting_get('wifi_ssid'));
|
|
|
|
$wifi_secure = getArray(ynh_setting_get('wifi_secure'));
|
|
|
|
$wifi_passphrase = getArray(ynh_setting_get('wifi_passphrase'));
|
|
|
|
$ip6_net = getArray(ynh_setting_get('ip6_net'));
|
2015-07-24 23:48:24 +02:00
|
|
|
$ip6_firewall = getArray(ynh_setting_get('ip6_firewall'));
|
2015-07-24 20:56:19 +02:00
|
|
|
$ip6_dns0 = getArray(ynh_setting_get('ip6_dns0'));
|
|
|
|
$ip6_dns1 = getArray(ynh_setting_get('ip6_dns1'));
|
|
|
|
$ip4_nat_prefix = getArray(ynh_setting_get('ip4_nat_prefix'));
|
|
|
|
$ip4_dns0 = getArray(ynh_setting_get('ip4_dns0'));
|
|
|
|
$ip4_dns1 = getArray(ynh_setting_get('ip4_dns1'));
|
2015-04-26 17:18:52 +02:00
|
|
|
|
|
|
|
for($i = 0; $i < $multissid; $i++) {
|
|
|
|
$ssid = [
|
|
|
|
'id' => $i,
|
|
|
|
'wifi_ssid' => noneValue($wifi_ssid[$i]),
|
|
|
|
'wifi_secure' => noneValue($wifi_secure[$i]),
|
|
|
|
'wifi_passphrase' => noneValue($wifi_passphrase[$i]),
|
|
|
|
'ip6_net' => noneValue($ip6_net[$i]),
|
2015-07-24 23:48:24 +02:00
|
|
|
'ip6_firewall' => noneValue($ip6_firewall[$i]),
|
2015-04-26 17:18:52 +02:00
|
|
|
'ip6_dns0' => noneValue($ip6_dns0[$i]),
|
|
|
|
'ip6_dns1' => noneValue($ip6_dns1[$i]),
|
|
|
|
'ip4_nat_prefix' => noneValue($ip4_nat_prefix[$i]),
|
|
|
|
'ip4_dns0' => noneValue($ip4_dns0[$i]),
|
|
|
|
'ip4_dns1' => noneValue($ip4_dns1[$i]),
|
|
|
|
];
|
|
|
|
|
|
|
|
array_push($ssids, $ssid);
|
|
|
|
}
|
|
|
|
|
2015-07-24 20:56:19 +02:00
|
|
|
$ip6_net = ynh_setting_get('ip6_net');
|
2015-05-25 02:23:28 +02:00
|
|
|
$ip6_net = ($ip6_net == 'none') ? '' : getArray($ip6_net);
|
2015-07-24 20:56:19 +02:00
|
|
|
$ip4_nat_prefix = getArray(ynh_setting_get('ip4_nat_prefix'));
|
2014-11-10 22:27:59 +01:00
|
|
|
|
2015-07-24 20:56:19 +02:00
|
|
|
set('service_enabled', ynh_setting_get('service_enabled'));
|
2015-04-26 17:18:52 +02:00
|
|
|
set('ssids', $ssids);
|
2014-11-09 22:49:07 +01:00
|
|
|
set('wifi_device', $wifi_device);
|
2015-04-26 21:34:11 +02:00
|
|
|
set('wifi_channel', $wifi_channel);
|
2014-11-09 22:49:07 +01:00
|
|
|
set('wifi_device_list', $devs_list);
|
2014-11-17 23:44:18 +01:00
|
|
|
set('faststatus', service_faststatus() == 0);
|
2014-12-26 18:58:58 +01:00
|
|
|
set('is_connected_through_hotspot', is_connected_through_hotspot($ip6_net, $ip4_nat_prefix));
|
2014-11-09 22:49:07 +01:00
|
|
|
|
|
|
|
return render('settings.html.php');
|
|
|
|
});
|
|
|
|
|
|
|
|
dispatch_put('/settings', function() {
|
2015-09-15 22:21:27 +02:00
|
|
|
$retcode = 1;
|
|
|
|
|
|
|
|
if(!empty($_POST['wifi_device'])) {
|
|
|
|
exec('ip link show '.escapeshellarg($_POST['wifi_device']), $output, $retcode);
|
|
|
|
}
|
2014-11-16 23:27:36 +01:00
|
|
|
|
2015-04-26 17:18:52 +02:00
|
|
|
$wifi_device_exists = ($retcode == 0);
|
2015-03-14 15:44:48 +01:00
|
|
|
$service_enabled = isset($_POST['service_enabled']) ? 1 : 0;
|
2015-05-02 17:20:45 +02:00
|
|
|
$wifi_ssid_uniqueness = array();
|
|
|
|
$ip4_nat_prefix_uniqueness = array();
|
|
|
|
$ip6_net_uniqueness = array();
|
2015-04-26 17:18:52 +02:00
|
|
|
$ssids = array();
|
|
|
|
$id = 0;
|
2014-11-16 23:27:36 +01:00
|
|
|
|
2015-03-14 15:44:48 +01:00
|
|
|
if($service_enabled == 1) {
|
|
|
|
try {
|
2015-09-15 22:21:27 +02:00
|
|
|
if(!$wifi_device_exists) {
|
|
|
|
if(empty($_POST['wifi_device'])) {
|
|
|
|
throw new Exception(_('You have to choose a wifi antenna interface'));
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Exception(_('The wifi antenna interface seems not exist on the system'));
|
|
|
|
}
|
|
|
|
|
2015-04-26 17:18:52 +02:00
|
|
|
foreach($_POST['ssid'] as $key => $ssid) {
|
|
|
|
$id = $key + 1;
|
2015-03-23 20:20:27 +01:00
|
|
|
|
2015-04-26 17:18:52 +02:00
|
|
|
$ssid['ip6_net'] = empty($ssid['ip6_net']) ? 'none' : $ssid['ip6_net'];
|
|
|
|
$ssid['ip6_addr'] = 'none';
|
2015-07-24 23:48:24 +02:00
|
|
|
$ssid['ip6_firewall'] = isset($ssid['ip6_firewall']) ? 1 : 0;
|
2015-04-26 17:18:52 +02:00
|
|
|
$ssid['wifi_secure'] = isset($ssid['wifi_secure']) ? 1 : 0;
|
2015-03-23 20:20:27 +01:00
|
|
|
|
2015-04-26 17:18:52 +02:00
|
|
|
if(!$ssid['wifi_secure']) {
|
|
|
|
$ssid['wifi_passphrase'] = 'none';
|
|
|
|
}
|
2015-05-02 17:20:45 +02:00
|
|
|
|
|
|
|
if(in_array($ssid['wifi_ssid'], $wifi_ssid_uniqueness)) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('All Wifi names must be unique'));
|
2015-05-02 17:20:45 +02:00
|
|
|
} else {
|
|
|
|
array_push($wifi_ssid_uniqueness, $ssid['wifi_ssid']);
|
|
|
|
}
|
2015-03-23 20:20:27 +01:00
|
|
|
|
2015-05-02 17:20:45 +02:00
|
|
|
if(in_array($ssid['ip4_nat_prefix'], $ip4_nat_prefix_uniqueness)) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('All IPv4 NAT prefixes must be unique'));
|
2015-05-02 17:20:45 +02:00
|
|
|
} else {
|
|
|
|
array_push($ip4_nat_prefix_uniqueness, $ssid['ip4_nat_prefix']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($ssid['ip6_net'] != 'none' && in_array($ssid['ip6_net'], $ip6_net_uniqueness)) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('All IPv6 delegated prefixes must be unique'));
|
2015-05-02 17:20:45 +02:00
|
|
|
} else {
|
|
|
|
array_push($ip6_net_uniqueness, $ssid['ip6_net']);
|
|
|
|
}
|
|
|
|
|
2015-04-26 21:34:11 +02:00
|
|
|
if(empty($ssid['wifi_ssid']) || empty($ssid['wifi_passphrase'])) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('Your Wifi Hotspot needs a name and a password'));
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if($ssid['wifi_secure'] && (strlen($ssid['wifi_passphrase']) < 8 || strlen($ssid['wifi_passphrase']) > 63)) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('Your password must from 8 to 63 characters (WPA2 passphrase)'));
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if($ssid['wifi_secure'] && preg_match('/[^[:print:]]/', $ssid['wifi_passphrase'])) {
|
2015-07-25 00:37:00 +02:00
|
|
|
$msg = _('Only <LINK:ASCII>printable ASCII characters</LINK:ASCII> are permitted in your password');
|
|
|
|
$msg = str_replace('<LINK:ASCII>', '<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/ASCII_full.svg/217px-ASCII_full.svg.png" class="alert-link">', $msg);
|
|
|
|
$msg = str_replace('</LINK:ASCII>', '</a>', $msg);
|
|
|
|
|
|
|
|
throw new Exception($msg);
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if($ssid['ip6_net'] != 'none') {
|
|
|
|
$ssid['ip6_net'] = ipv6_expanded($ssid['ip6_net']);
|
|
|
|
|
|
|
|
if(empty($ssid['ip6_net'])) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('The IPv6 Delegated Prefix format looks bad'));
|
2015-03-23 20:20:27 +01:00
|
|
|
}
|
2015-04-26 17:18:52 +02:00
|
|
|
|
|
|
|
$ip6_blocs = explode(':', $ssid['ip6_net']);
|
|
|
|
$ssid['ip6_addr'] = "${ip6_blocs[0]}:${ip6_blocs[1]}:${ip6_blocs[2]}:${ip6_blocs[3]}:${ip6_blocs[4]}:${ip6_blocs[5]}:${ip6_blocs[6]}:42";
|
|
|
|
|
|
|
|
$ssid['ip6_net'] = ipv6_compressed($ssid['ip6_net']);
|
|
|
|
$ssid['ip6_addr'] = ipv6_compressed($ssid['ip6_addr']);
|
2015-03-23 20:20:27 +01:00
|
|
|
}
|
2015-04-26 17:18:52 +02:00
|
|
|
|
|
|
|
if(!empty($ssid['ip6_dns0'])) {
|
|
|
|
$ssid['ip6_dns0'] = ipv6_expanded($ssid['ip6_dns0']);
|
|
|
|
|
|
|
|
if(empty($ssid['ip6_dns0'])) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('The format of the first IPv6 DNS Resolver looks bad'));
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$ssid['ip6_dns0'] = ipv6_compressed($ssid['ip6_dns0']);
|
|
|
|
|
|
|
|
if(!empty($ssid['ip6_dns1'])) {
|
|
|
|
$ssid['ip6_dns1'] = ipv6_expanded($ssid['ip6_dns1']);
|
|
|
|
|
|
|
|
if(empty($ssid['ip6_dns1'])) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('The format of the second IPv6 DNS Resolver looks bad'));
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$ssid['ip6_dns1'] = ipv6_compressed($ssid['ip6_dns1']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(inet_pton($ssid['ip4_dns0']) === false) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('The format of the first IPv4 DNS Resolver looks bad'));
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(inet_pton($ssid['ip4_dns1']) === false) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('The format of the second IPv4 DNS Resolver looks bad'));
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(inet_pton("${ssid['ip4_nat_prefix']}.0") === false) {
|
2015-07-25 11:02:50 +02:00
|
|
|
throw new Exception(_('The format of the IPv4 NAT Prefix (/24) looks bad: x.x.x expected'));
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(filter_var("${ssid['ip4_nat_prefix']}.0", FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE) !== false) {
|
2015-07-08 19:03:28 +02:00
|
|
|
throw new Exception(_('The IPv4 NAT Prefix must be from a private range'));
|
2015-04-26 17:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
array_push($ssids, $ssid);
|
2015-03-14 15:44:48 +01:00
|
|
|
}
|
|
|
|
} catch(Exception $e) {
|
2015-09-15 22:21:27 +02:00
|
|
|
flash('error', ($id != 0 ? _('Hotspot')." $id: " : '').$e->getMessage().' ('._('configuration not updated').').');
|
2015-03-14 15:44:48 +01:00
|
|
|
goto redirect;
|
2014-11-16 23:27:36 +01:00
|
|
|
}
|
2015-03-14 15:44:48 +01:00
|
|
|
}
|
2014-11-16 23:27:36 +01:00
|
|
|
|
2015-04-26 21:34:11 +02:00
|
|
|
stop_service();
|
2014-11-16 23:27:36 +01:00
|
|
|
|
2015-07-24 20:56:19 +02:00
|
|
|
ynh_setting_set('service_enabled', $service_enabled);
|
2015-04-26 17:18:52 +02:00
|
|
|
$settings = array();
|
2014-11-16 23:27:36 +01:00
|
|
|
|
2015-03-14 15:44:48 +01:00
|
|
|
if($service_enabled == 1) {
|
2015-04-26 17:18:52 +02:00
|
|
|
foreach($ssids as $ssid) {
|
|
|
|
foreach($ssid as $setting => $value) {
|
|
|
|
$settings[$setting] .= "$value|";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-24 20:56:19 +02:00
|
|
|
ynh_setting_set('multissid', count($ssids));
|
|
|
|
ynh_setting_set('wifi_device', $_POST['wifi_device']);
|
|
|
|
ynh_setting_set('wifi_channel', $_POST['wifi_channel']);
|
2014-11-16 23:27:36 +01:00
|
|
|
|
2015-04-26 17:18:52 +02:00
|
|
|
foreach($settings as $setting => $value) {
|
2015-07-24 20:56:19 +02:00
|
|
|
ynh_setting_set($setting, preg_replace('/\|$/', '', $value));
|
2014-11-16 23:27:36 +01:00
|
|
|
}
|
|
|
|
|
2015-04-26 21:34:11 +02:00
|
|
|
$retcode = start_service();
|
2015-03-14 15:44:48 +01:00
|
|
|
|
|
|
|
if($retcode == 0) {
|
2015-07-08 19:03:28 +02:00
|
|
|
flash('success', _('Configuration updated and service successfully reloaded'));
|
2015-03-14 15:44:48 +01:00
|
|
|
} else {
|
2015-07-08 19:03:28 +02:00
|
|
|
flash('error', _('Configuration updated but service reload failed'));
|
2014-11-16 23:27:36 +01:00
|
|
|
}
|
|
|
|
|
2014-11-09 22:49:07 +01:00
|
|
|
} else {
|
2015-07-08 19:03:28 +02:00
|
|
|
flash('success', _('Service successfully disabled'));
|
2014-11-09 22:49:07 +01:00
|
|
|
}
|
|
|
|
|
2014-11-16 23:27:36 +01:00
|
|
|
redirect:
|
2014-11-09 22:49:07 +01:00
|
|
|
redirect_to('/');
|
|
|
|
});
|
|
|
|
|
2014-11-17 23:44:18 +01:00
|
|
|
dispatch('/status', function() {
|
|
|
|
$status_lines = service_status();
|
|
|
|
$status_list = '';
|
|
|
|
|
|
|
|
foreach($status_lines AS $status_line) {
|
|
|
|
if(preg_match('/^\[INFO\]/', $status_line)) {
|
2014-11-20 20:03:24 +01:00
|
|
|
$status_list .= '<li class="status-info">'.htmlspecialchars($status_line).'</li>';
|
2014-11-17 23:44:18 +01:00
|
|
|
}
|
|
|
|
elseif(preg_match('/^\[OK\]/', $status_line)) {
|
2014-11-20 20:03:24 +01:00
|
|
|
$status_list .= '<li class="status-success">'.htmlspecialchars($status_line).'</li>';
|
2014-11-17 23:44:18 +01:00
|
|
|
}
|
|
|
|
elseif(preg_match('/^\[WARN\]/', $status_line)) {
|
2014-11-20 20:03:24 +01:00
|
|
|
$status_list .= '<li class="status-warning">'.htmlspecialchars($status_line).'</li>';
|
2014-11-17 23:44:18 +01:00
|
|
|
}
|
|
|
|
elseif(preg_match('/^\[ERR\]/', $status_line)) {
|
2014-11-20 20:03:24 +01:00
|
|
|
$status_list .= '<li class="status-danger">'.htmlspecialchars($status_line).'</li>';
|
2014-11-17 23:44:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $status_list;
|
|
|
|
});
|
|
|
|
|
2014-11-09 22:49:07 +01:00
|
|
|
dispatch('/lang/:locale', function($locale = 'en') {
|
2015-07-08 18:08:52 +02:00
|
|
|
switch($locale) {
|
2014-11-09 22:49:07 +01:00
|
|
|
case 'fr':
|
|
|
|
$_SESSION['locale'] = 'fr';
|
2015-07-08 18:08:52 +02:00
|
|
|
break;
|
2014-11-09 22:49:07 +01:00
|
|
|
|
|
|
|
default:
|
|
|
|
$_SESSION['locale'] = 'en';
|
|
|
|
}
|
|
|
|
|
2015-07-08 18:08:52 +02:00
|
|
|
redirect_to('/');
|
2014-11-09 22:49:07 +01:00
|
|
|
});
|