Browse Source

Merge pull request #6 from labriqueinternet/jessie

Debian jessie support
Julien Vaubourg 9 years ago
parent
commit
f34bab4d71

+ 8 - 4
README.md

@@ -1,6 +1,8 @@
 # PirateBox
 ## Overview
 
+**Warning: work in progress**
+
 PirateBox app for [YunoHost](http://yunohost.org/).
 
 Based on [php-piratebox](https://github.com/jvaubourg/php-piratebox).
@@ -17,10 +19,6 @@ Based on [php-piratebox](https://github.com/jvaubourg/php-piratebox).
 
 The YunoHost administration is only available through the wired connection.
 
-## Requirements
-
-You have to install the [Wifi Hotspot app for YunoHost](https://github.com/labriqueinternet/hotspot_ynh) before and disable the wifi secure access mode thanks to the friendly web interface.
-
 ## How It Works ##
 
 Explanations:
@@ -31,6 +29,12 @@ Explanations:
 4. all packets to port 80 are redirected to the port 4280,
 5. a Nginx vhost listens on the port 4280, and redirects to the PirateBox web page.
 
+## Prerequisites
+
+* Debian Jessie
+* YunoHost >= 2.2.0
+* [Hotspot app for YunoHost](https://github.com/jvaubourg/hotspot_ynh)
+
 ## Limitations ##
 
 * IPv4-only because the NAT table is not available for IPv6 before the kernel 3.9.0 and iptables 1.4.18 (not in Debian stable for now)

+ 1 - 0
conf/piratebox_fakedns

@@ -25,6 +25,7 @@ sub reply_handler {
  
 my $ns = new Net::DNS::Nameserver(
   LocalPort    => 4253,
+  LocalAddr    => $ip4_addr,
   ReplyHandler => \&reply_handler,
   Verbose      => 0
   ) || die "Couldn't create fake nameserver object.\n";

+ 43 - 32
conf/init_ynh-piratebox

@@ -1,28 +1,19 @@
 #!/bin/bash
-### BEGIN INIT INFO
-# Provides: ynh-piratebox
-# Required-Start:    $network $remote_fs $syslog ynh-hotspot
-# Required-Stop:     $network $remote_fs $syslog ynh-hotspot
-# Default-Start:     2 3 4 5
-# Default-Stop:      0 1 6
-# Short-Description: Set prerequisites for wifi piratebox.
-# Description:       Set prerequisites for wifi piratebox.
-### END INIT INFO
-
-# PirateBox app for YunoHost 
+
+# PirateBox app for YunoHost
 # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
 # Contribute at https://github.com/jvaubourg/piratebox_ynh
-# 
+#
 # 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/>.
 
@@ -99,7 +90,7 @@ set_captive() {
 
   cp /etc/nginx/{,conf.d/}captive-piratebox.conf
 
-  service nginx reload
+  systemctl reload nginx
 }
 
 start_fakedns() {
@@ -128,7 +119,7 @@ unset_filt4_nofwd() {
 unset_captive() {
   rm -f /etc/nginx/conf.d/captive-piratebox.conf
 
-  service nginx reload
+  systemctl reload nginx
 }
 
 stop_fakedns() {
@@ -139,26 +130,34 @@ stop_fakedns() {
 
 moulinette_get() {
   var=${1}
+  gotcha=0
 
-  value=$(yunohost app setting piratebox "${var}")
+  while [ "${gotcha}" -eq 0 ]; do
+    value=$(yunohost app setting piratebox "${var}")
 
-  if [[ "${value}" =~ "An instance is already running" ]]; then
-    echo "${value}" >&2
-    exit 1
-  fi
+    if [[ "${value}" =~ "An instance is already running" ]]; then
+      sleep $(($((RANDOM%5)) + 1))
+    else
+      gotcha=1
+    fi
+  done
 
   echo "${value}"
 }
 
 moulinette_hotspot_get() {
   var=${1}
+  gotcha=0
 
-  value=$(yunohost app setting hotspot "${var}")
+  while [ "${gotcha}" -eq 0 ]; do
+    value=$(yunohost app setting hotspot "${var}")
 
-  if [[ "${value}" =~ "An instance is already running" ]]; then
-    echo "${value}" >&2
-    exit 1
-  fi
+    if [[ "${value}" =~ "An instance is already running" ]]; then
+      sleep $(($((RANDOM%5)) + 1))
+    else
+      gotcha=1
+    fi
+  done
 
   echo "${value}"
 }
@@ -168,15 +167,27 @@ if [ "$1" != restart ]; then
   # Restart php5-fpm at the first start (it needs to be restarted after the slapd start)
   if [ ! -e /tmp/.ynh-piratebox-boot ]; then
     touch /tmp/.ynh-piratebox-boot
-    service php5-fpm restart
+    systemctl restart php5-fpm
   fi
-  
+
+  ynh_wifi_device_id=$(moulinette_get wifi_device_id)
+
+  if [[ ! "${1}" =~ stop ]]; then
+    exitcode=0
+
+    if [ "${ynh_wifi_device_id}" -eq -1 ]; then
+      echo "[WARN] You need to select an associated wifi hotspot (you can do it through the web admin)"
+      exitcode=1
+    fi
+
+    [ "${exitcode}" -ne 0 ] && exit ${exitcode}
+  fi
+
   # Variables
-  
+
   echo -n "Retrieving Yunohost settings... "
-  
+
   ynh_service_enabled=$(moulinette_get service_enabled)
-  ynh_wifi_device_id=$(moulinette_get wifi_device_id)
   ynh_opt_renaming=$(moulinette_get opt_renaming)
   ynh_opt_deleting=$(moulinette_get opt_deleting)
   ynh_opt_chat=$(moulinette_get opt_chat)
@@ -190,7 +201,7 @@ if [ "$1" != restart ]; then
 
   IFS='|' read -a ynh_ip4_nat_prefix <<< "$(moulinette_hotspot_get ip4_nat_prefix)"
   ynh_ip4_nat_prefix=${ynh_ip4_nat_prefix[${ynh_wifi_device_id}]}
-  
+
   echo "OK"
 fi
 

+ 13 - 0
conf/ynh-piratebox.service

@@ -0,0 +1,13 @@
+[Unit]
+Description=YunoHost PirateBox.
+Requires=ynh-hotspot.service
+After=ynh-hotspot.service
+
+[Service]
+Type=oneshot
+ExecStart=/usr/local/bin/ynh-piratebox start
+ExecStop=/usr/local/bin/ynh-piratebox stop
+RemainAfterExit=yes
+
+[Install]
+WantedBy=multi-user.target

+ 10 - 9
scripts/install

@@ -57,7 +57,7 @@ sudo yunohost app setting piratebox opt_name -v "${opt_name}"
 sudo yunohost app setting piratebox opt_renaming -v "${opt_renaming}"
 sudo yunohost app setting piratebox opt_deleting -v "${opt_deleting}"
 sudo yunohost app setting piratebox opt_chat -v "${opt_chat}"
-sudo yunohost app setting piratebox wifi_device_id -v 0
+sudo yunohost app setting piratebox wifi_device_id -v -1
 
 # Install packages
 packages='php5-fpm iptables libnet-dns-perl git'
@@ -135,24 +135,25 @@ sudo sed "s|<TPL:NGINX_LOCATION>|${url_path}|g" -i /var/www/piratebox_admin/conf
 sudo install -o root -g root -m 0755 ../conf/piratebox_fakedns /usr/local/bin/
 
 # Copy init script
-sudo install -o root -g root -m 0755 ../conf/init_ynh-piratebox /etc/init.d/ynh-piratebox
+sudo install -o root -g root -m 0755 ../conf/ynh-piratebox /usr/local/bin/
+sudo install -o root -g root -m 0644 ../conf/ynh-piratebox.service /etc/systemd/system/
 
 # Update firewall
 sudo yunohost firewall allow --no-upnp UDP 4253
 sudo yunohost firewall allow --no-upnp TCP 4280
 
 # Set default inits
-sudo yunohost service add php5-fpm
-sudo yunohost service enable php5-fpm
+sudo systemctl enable php5-fpm
+sudo systemctl restart php5-fpm
 
-sudo service php5-fpm restart
-sudo service nginx reload
+sudo systemctl reload nginx
 
-sudo yunohost service add ynh-piratebox
-sudo yunohost service enable ynh-piratebox
-sudo service ynh-piratebox start
+sudo systemctl enable ynh-piratebox
+sudo systemctl start ynh-piratebox
 
 # Update SSO
 sudo yunohost app ssowatconf
 
+echo "WARNING: PirateBox is not started because you need to define an associated wifi hotspot through the web admin" >&2
+
 exit 0

+ 5 - 6
scripts/remove

@@ -21,9 +21,9 @@
 domain=$(sudo yunohost app setting piratebox domain)
 
 # The End
-sudo service ynh-piratebox stop
-sudo yunohost service remove ynh-piratebox
-sudo rm -f /etc/init.d/ynh-piratebox
+sudo systemctl stop ynh-piratebox
+sudo systemctl disable ynh-piratebox
+sudo rm -f /etc/systemd/system/ynh-piratebox.service /usr/local/bin/ynh-piratebox
 sudo rm -f /tmp/.ynh-piratebox-*
 
 # Update firewall
@@ -39,9 +39,8 @@ sudo rm -f /etc/php5/fpm/pool.d/{captive-,}piratebox.conf
 sudo rm -f /usr/local/bin/piratebox_fakedns
 
 # Restart services
-sudo yunohost service stop php5-fpm
-sudo yunohost service start php5-fpm
-sudo service nginx reload
+sudo systemctl restart php5-fpm
+sudo systemctl reload nginx
 
 # Remove tmp folder
 sudo rm -rf /var/spool/piratebox/

+ 7 - 7
sources/controller.php

@@ -31,17 +31,17 @@ function moulinette_hotspot_get($var) {
 }
 
 function stop_service() {
-  exec('sudo service ynh-piratebox stop');
+  exec('sudo systemctl stop ynh-piratebox');
 }
 
 function start_service() {
-  exec('sudo service ynh-piratebox start', $output, $retcode);
+  exec('sudo systemctl start ynh-piratebox', $output, $retcode);
 
   return $retcode;
 }
 
 function service_status() {
-  exec('sudo service ynh-piratebox status', $output);
+  exec('sudo ynh-piratebox status', $output);
 
   return $output;
 }
@@ -69,10 +69,6 @@ dispatch('/', function() {
     $wifi_ssid_list .= "<li $active data-device-id='$i'><a href='javascript:;'>".htmlentities($ssids[$i]).'</a></li>';
   }
 
-  if(empty($wifi_ssid)) {
-    $wifi_ssid = '<em>'.T_("None").'</em>';
-  }
-
   set('faststatus', service_faststatus() == 0);
   set('service_enabled', moulinette_get('service_enabled'));
   set('wifi_device_id', $wifi_device_id);
@@ -98,6 +94,10 @@ dispatch_put('/settings', function() {
         throw new Exception(T_('The name cannot be empty'));
       }
 
+      if($_POST['wifi_device_id'] == -1) {
+        throw new Exception(T_('You need to select an associated hotspot'));
+      }
+
     } catch(Exception $e) {
       flash('error', T_('PirateBox')." $id: ".$e->getMessage().' ('.T_('configuration not updated').').');
       goto redirect;

+ 8 - 1
sources/views/settings.html.php

@@ -54,11 +54,18 @@
           </div>
 
           <div class="form-group">
+            <?php if($wifi_device_id == -1): ?>
+              <div class="alert alert-dismissible alert-warning fade in" style="margin: 2px 16px 17px" role="alert">
+                <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
+                <strong><?= T_('Notice') ?>:</strong> <?= T_("You need to select an associated hotspot.") ?>
+              </div>
+            <?php endif; ?>
+
             <label for="wifi_device_id" class="col-sm-3 control-label"><?= T_('Associated Hotspot') ?></label>
             <div class="col-sm-9 input-group-btn">
               <div class="input-group">
                   <input type="text" name="wifi_device_id" id="wifi_device_id" value="<?= $wifi_device_id ?>" style="display: none" />
-                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><?= $wifi_ssid ?> <span class="caret"></span></button>
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><?= empty($wifi_ssid) ? '<em>'.T_("None").'</em>' : $wifi_ssid ?> <span class="caret"></span></button>
                   <ul class="dropdown-menu dropdown-menu-left" id="deviceidlist" role="menu">
                     <?= $wifi_ssid_list ?>
                   </ul>