corretta gestione parametro
[brisk.git] / INSTALL.sh
1 #!/bin/bash
2 #
3 # Defaults
4 #
5 n_players=3
6 brisk_debug="TRUE"
7 ftok_path="/var/lib/brisk"
8 web_path="$HOME/brisk"
9 web_only="FALSE"
10
11 if [ -f $HOME/.brisk_install ]; then
12    . $HOME/.brisk_install
13 fi
14 if [ "x$cookie_path" = "x" ]; then
15    cookie_path=$web_path
16 fi
17 function usage () {
18     echo
19     echo "$1 -h"
20     echo "$1 [-W] [-n 3|5] [-f conffile] [-p outconf] [-d TRUE|FALSE] [-w web_dir] [-k <ftok_dir>] [-l <legal_path>] [-c <cookie_path>]"
21     echo "  -h this help"
22     echo "  -f use this config file"
23     echo "  -p save preferences in the file"
24     echo "  -W web files only"
25     echo "  -n number of players            - def. $n_players"
26     echo "  -d activate dabug               - def. $brisk_debug"
27     echo "  -w dir where place the web tree - def. \"$web_path\""
28     echo "  -k dir where place ftok files   - def. \"$ftok_path\""
29     echo "  -l dir where save logs          - def. \"$legal_path\""
30     echo "  -c cookie path                  - def. \"$cookie_path\""
31     
32     echo
33 }
34
35 function get_param () {
36     echo "X$2" | grep -q "^X$1\$"
37     if [ $? -eq 0 ]; then
38         # echo "DECHE" >&2
39         echo "$3"
40         return 2
41     else
42         # echo "DELA" >&2
43         echo "$2" | cut -c 3-
44         return 1
45     fi
46     return 0
47 }
48
49 #
50 #  MAIN
51 #
52 while [ $# -gt 0 ]; do
53     # echo aa $1 xx $2 bb
54     conffile=""
55     case $1 in
56         -f*) conffile="`get_param "-f" "$1" "$2"`"; sh=$?;;
57         -p*) outconf="`get_param "-p" "$1" "$2"`"; sh=$?;;
58         -n*) n_players="`get_param "-n" "$1" "$2"`"; sh=$?;;
59         -d*) brisk_debug="`get_param "-d" "$1" "$2"`"; sh=$?;;
60         -w*) web_path="`get_param "-w" "$1" "$2"`"; sh=$?;;
61         -k*) ftok_path="`get_param "-k" "$1" "$2"`"; sh=$?;;
62         -c*) cookie_path="`get_param "-c" "$1" "$2"`"; sh=$?;;
63         -l*) legal_path="`get_param "-l" "$1" "$2"`"; sh=$?;;
64         -W) web_only="TRUE";;
65         -h) usage $0; exit 0;;
66         *) usage $0; exit 1;;
67     esac
68     if [ ! -z "$conffile" ]; then
69         if [ ! -f "$conffile" ]; then
70             echo "config file [$conffile] not found"
71             exit 1
72         fi
73         . "$conffile"
74     fi
75     shift $sh
76 done
77
78 #
79 #  Show parameters
80 #
81 echo "    outconf:    \"$outconf\""
82 echo "    n_players:   $n_players"
83 echo "    brisk_debug:\"$brisk_debug\""
84 echo "    web_path:   \"$web_path\""
85 echo "    ftok_path:  \"$ftok_path\""
86 echo "    legal_path:  \"$legal_path\""
87 echo "    cookie_path:\"$cookie_path\""
88 echo "    web_only:   \"$web_only\""
89
90 if [ ! -z "$outconf" ]; then
91   ( 
92     echo "#"
93     echo "#  Produced automatically by brisk::INSTALL.sh"
94     echo "#"
95     echo "n_players=$n_players"
96     echo "brisk_debug=\"$brisk_debug\""
97     echo "web_path=\"$web_path\""
98     echo "ftok_path=\"$ftok_path\""
99     echo "legal_path=\"$legal_path\""
100     echo "cookie_path=\"$cookie_path\""
101     echo "web_only=\"$web_only\""
102   ) > "$outconf"
103 fi
104 #
105 #  Installation
106 #
107 if [ $n_players -ne 3 -a $n_players -ne 5 ]; then
108     echo "n_players ($n_players) out of range (3|5)"
109     exit 1
110 fi
111 if [ "$web_only" = "FALSE" ]; then
112     if [ ! -d $ftok_path ]; then
113         echo "ftok_path (\"$ftok_path\") not exists"
114         exit 2
115     fi
116     touch $ftok_path/spy.txt >/dev/null 2>&1
117     if [ $? -ne 0 ]; then
118         echo "ftok_path (\"$ftok_path\") write not allow."
119         exit 3
120     fi
121     rm $ftok_path/spy.txt
122     
123     # create the fs subtree to enable ftok-ing
124     touch ${ftok_path}/main
125     chmod 666 ${ftok_path}/main
126 fi
127 install -d $web_path
128 install -m 644 web/*.{php,phh,css,js,mp3,swf} ${web_path}
129 cd web
130 find . -name '.htaccess' -exec install -m 644 {} ${web_path}/{} \;
131 cd -
132
133 if [ $n_players -eq 5 ]; then
134    send_time=250
135 else
136    send_time=10
137 fi
138
139 # .js substitutions
140 sed -i "s/PLAYERS_N *= *[0-9]\+/PLAYERS_N = $n_players/g" `find ${web_path} -type f -name '*.js' -exec grep -l 'PLAYERS_N *= *[0-9]\+' {} \;`
141
142 sed -i "s/^var G_send_time *= *[0-9]\+/var G_send_time = $send_time/g" `find ${web_path} -type f -name '*.js' -exec grep -l '^var G_send_time *= *[0-9]\+' {} \;`
143
144 # .ph[ph] substitutions
145 sed -i "s/define *( *PLAYERS_N, *[0-9]\+ *)/define(PLAYERS_N, $n_players)/g" `find ${web_path} -type f -name '*.ph*' -exec grep -l 'define *( *PLAYERS_N, *[0-9]\+ *)' {} \;`
146
147 sed -i "s@define *( *FTOK_PATH,[^)]*)@define(FTOK_PATH, \"$ftok_path\")@g" `find ${web_path} -type f -name '*.ph*' -exec grep -l 'define *( *FTOK_PATH,[^)]*)' {} \;`
148
149 sed -i "s@define *( *BRISK_DEBUG,[^)]*)@define(BRISK_DEBUG, $brisk_debug)@g" ${web_path}/brisk.phh
150
151 sed -i "s@define *( *LEGAL_PATH,[^)]*)@define(LEGAL_PATH, \"$legal_path\")@g" ${web_path}/brisk.phh
152
153 sed -i "s@var \+xhr_rd_cookiepath \+= \+\"[^\"]*\";@var xhr_rd_cookiepath = \"$cookie_path\";@g" ${web_path}/xhr.js
154
155 exit 0