controller.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. /* PirateBox app for YunoHost
  3. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. * Contribute at https://github.com/labriqueinternet/piratebox_ynh
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. function ynh_setting_get($setting, $app = 'piratebox') {
  20. $value = exec("sudo grep \"^$setting:\" /etc/yunohost/apps/$app/settings.yml");
  21. $value = preg_replace('/^[^:]+:\s*["\']?/', '', $value);
  22. $value = preg_replace('/\s*["\']$/', '', $value);
  23. return htmlspecialchars($value);
  24. }
  25. function ynh_setting_set($setting, $value) {
  26. return exec('sudo yunohost app setting piratebox '.escapeshellarg($setting).' -v '.escapeshellarg($value));
  27. }
  28. function stop_service() {
  29. exec('sudo systemctl stop ynh-piratebox');
  30. }
  31. function start_service() {
  32. exec('sudo systemctl start ynh-piratebox', $output, $retcode);
  33. return $retcode;
  34. }
  35. function service_status() {
  36. exec('sudo ynh-piratebox status', $output);
  37. return $output;
  38. }
  39. function service_faststatus() {
  40. exec('ls /etc/nginx/conf.d/captive-piratebox.conf', $output, $retcode);
  41. return $retcode;
  42. }
  43. dispatch('/', function() {
  44. $ssids = explode('|', ynh_setting_get('wifi_ssid', 'hotspot'));
  45. $wifi_device_id = ynh_setting_get('wifi_device_id');
  46. $wifi_ssid_list = '';
  47. $wifi_ssid = '';
  48. for($i = 0; $i < count($ssids); $i++) {
  49. $active = '';
  50. if($i == $wifi_device_id) {
  51. $active = 'class="active"';
  52. $wifi_ssid = htmlentities($ssids[$i]);
  53. }
  54. $wifi_ssid_list .= "<li $active data-device-id='$i'><a href='javascript:;'>".htmlentities($ssids[$i]).'</a></li>';
  55. }
  56. set('faststatus', service_faststatus() == 0);
  57. set('service_enabled', ynh_setting_get('service_enabled'));
  58. set('wifi_device_id', $wifi_device_id);
  59. set('wifi_ssid', $wifi_ssid);
  60. set('wifi_ssid_list', $wifi_ssid_list);
  61. set('opt_maxspace', ynh_setting_get('opt_maxspace'));
  62. set('opt_renaming', ynh_setting_get('opt_renaming'));
  63. set('opt_deleting', ynh_setting_get('opt_deleting'));
  64. set('opt_chat', ynh_setting_get('opt_chat'));
  65. set('opt_name', ynh_setting_get('opt_name'));
  66. set('opt_domain', ynh_setting_get('opt_domain'));
  67. return render('settings.html.php');
  68. });
  69. dispatch_put('/settings', function() {
  70. $service_enabled = isset($_POST['service_enabled']) ? 1 : 0;
  71. if($service_enabled == 1) {
  72. try {
  73. $_POST['opt_name'] = htmlentities(str_replace('"', '', $_POST['opt_name']));
  74. if(empty($_POST['opt_name'])) {
  75. throw new Exception(_('The name cannot be empty'));
  76. }
  77. if($_POST['wifi_device_id'] == -1) {
  78. throw new Exception(_('You need to select an associated hotspot'));
  79. }
  80. } catch(Exception $e) {
  81. flash('error', _('PirateBox')." $id: ".$e->getMessage().' ('._('configuration not updated').').');
  82. goto redirect;
  83. }
  84. }
  85. stop_service();
  86. ynh_setting_set('service_enabled', $service_enabled);
  87. if($service_enabled == 1) {
  88. ynh_setting_set('opt_name', $_POST['opt_name']);
  89. ynh_setting_set('opt_renaming', isset($_POST['opt_renaming']) ? 1 : 0);
  90. ynh_setting_set('opt_maxspace', $_POST['opt_maxspace']);
  91. ynh_setting_set('opt_deleting', isset($_POST['opt_deleting']) ? 1 : 0);
  92. ynh_setting_set('opt_chat', isset($_POST['opt_chat']) ? 1 : 0);
  93. ynh_setting_set('wifi_device_id', $_POST['wifi_device_id']);
  94. $retcode = start_service();
  95. if($retcode == 0) {
  96. flash('success', _('Configuration updated and service successfully reloaded'));
  97. } else {
  98. flash('error', _('Configuration updated but service reload failed'));
  99. }
  100. } else {
  101. flash('success', _('Service successfully disabled'));
  102. }
  103. redirect:
  104. redirect_to('/');
  105. });
  106. dispatch('/status', function() {
  107. $status_lines = service_status();
  108. $status_list = '';
  109. foreach($status_lines AS $status_line) {
  110. if(preg_match('/^\[INFO\]/', $status_line)) {
  111. $status_list .= '<li class="status-info">'.htmlspecialchars($status_line).'</li>';
  112. }
  113. elseif(preg_match('/^\[OK\]/', $status_line)) {
  114. $status_list .= '<li class="status-success">'.htmlspecialchars($status_line).'</li>';
  115. }
  116. elseif(preg_match('/^\[WARN\]/', $status_line)) {
  117. $status_list .= '<li class="status-warning">'.htmlspecialchars($status_line).'</li>';
  118. }
  119. elseif(preg_match('/^\[ERR\]/', $status_line)) {
  120. $status_list .= '<li class="status-danger">'.htmlspecialchars($status_line).'</li>';
  121. }
  122. }
  123. echo $status_list;
  124. });
  125. dispatch('/lang/:locale', function($locale = 'en') {
  126. switch($locale) {
  127. case 'fr':
  128. $_SESSION['locale'] = 'fr';
  129. break;
  130. default:
  131. $_SESSION['locale'] = 'en';
  132. }
  133. redirect_to('/');
  134. });