summaryrefslogtreecommitdiff
path: root/files/common/www/cgi-bin/splash_click
blob: d08af6a3dd2c8f0358d301a9ef0f4a88ef19cffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/sh
echo -en "Status: 200 OK\r\n"
echo -en "Content-Type: text/html\r\n"
echo -en "\r\n"
TEST=`cat `
TEST=`echo $TEST | sed 's/'target_url='/''/g'`
TEST=`/bin/urldecode "$TEST"`
TEST=`echo $TEST | sed 's/%2F/\//g'`
USER_MAC=`cat /proc/net/arp | grep $REMOTE_HOST | awk 'BEGIN { FS = " " } ; { print $4 }'`

. $IPKG_INSTROOT/etc/functions.sh
ISSPLASHED=0
config_load splash_users
is_mac() {
   config_get mac "$1" mac
   if [ "$mac" == "$USER_MAC" ]; then
   	ISSPLASHED=1
   fi
}
#check if user is alredy splashed
config_foreach is_mac user
sed 's/targeturl/'"$(echo $TEST| sed 's#/#\\/#g')"'/g' /www/iframe.html

if [ $ISSPLASHED -eq 1 ]; then
	exit
fi
#User is now free to go
iptables -t nat -I ffj_splash 1 -m --mac-source $USER_MAC -j ACCEPT

uci -q add splash_users user
uci -q set splash_users.@user[-1].mac=$USER_MAC
uci -q set splash_users.@user[-1].time=`date +%s`

exit 0


                                               

contact: Jan Huwald // Impressum