From c6f2e76f7f09919f4bbbfd382ce6c42fb051d460 Mon Sep 17 00:00:00 2001 From: makefu Date: Mon, 14 Jan 2013 02:05:55 +0100 Subject: minikrebs: nfc-login - initial commit --- .../nfc-login/customfiles/usr/bin/login-manager | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager (limited to 'minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager') diff --git a/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager b/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager new file mode 100755 index 00000000..bcf2072b --- /dev/null +++ b/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager @@ -0,0 +1,18 @@ +#!/bin/sh +#LOGIN_HOST=heidi.shack +LOGIN_HOST=heidi:5000 +while sleep 1; +do + uid=$(nfc-list | grep UID | cut -d: -f 2 | sed 's/ //g') + if ! [ x"$uid" = x ];then + online=$(wget -O- http://$LOGIN_HOST/user/$uid/online 2>/dev/null) + if [ "$online" = "false" ];then + action="login" + else + action="logout" + fi + wget -O- http://$LOGIN_HOST/user/$uid/$action &>/dev/null + echo $uid $action + sleep 5 + fi +done -- cgit v1.2.3 From 2a21bde501529a5e85fe14f2c342dc967b4b7513 Mon Sep 17 00:00:00 2001 From: makefu Date: Mon, 14 Jan 2013 03:30:47 +0100 Subject: nfc-login: update --- .../nfc-login/customfiles/usr/bin/login-manager | 24 ++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager') diff --git a/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager b/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager index bcf2072b..63f35c74 100755 --- a/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager +++ b/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager @@ -1,18 +1,34 @@ #!/bin/sh +#!/bin/sh #LOGIN_HOST=heidi.shack -LOGIN_HOST=heidi:5000 -while sleep 1; -do +#LOGIN_HOST=heidi:5000 +LOGIN_HOST=10.42.10.38:5000 +all_led(){ + for i in 3g wlan lan wps;do + led $i $1 + done +} +led(){ + LED="$1" + ACTION="$2" + echo $ACTION > /sys/class/leds/tp-link:green:$LED/trigger +} +while sleep 1; do uid=$(nfc-list | grep UID | cut -d: -f 2 | sed 's/ //g') if ! [ x"$uid" = x ];then online=$(wget -O- http://$LOGIN_HOST/user/$uid/online 2>/dev/null) - if [ "$online" = "false" ];then + if [ x"$online" = "x" ];then + led lan timer + elif [ "$online" = "false" ];then action="login" + led 3g timer else action="logout" + led wlan timer fi wget -O- http://$LOGIN_HOST/user/$uid/$action &>/dev/null echo $uid $action sleep 5 + all_led none fi done -- cgit v1.2.3