6 CONFIG_FILE="$HOME/.brisk_install"
8 apache_conf="/etc/apache2/sites-available/default"
13 brisk_auth_conf="brisk_spu_auth.conf.pho"
15 # brisk_debug="0xffff"
16 web_path="/home/nastasi/web/brisk"
17 ftok_path="/home/nastasi/brisk-priv/ftok/brisk"
18 proxy_path="/home/nastasi/brisk-priv/proxy/brisk"
19 usock_path="/home/nastasi/brisk-priv/brisk.sock"
21 legal_path="/home/nastasi/brisk-priv/brisk"
23 brisk_conf="brisk_spu.conf.pho"
31 echo "$1 chk - run lintian on all ph* files."
32 echo "$1 pkg - build brisk packages."
33 echo "$1 [-W] [-n 3|5] [-c 3|8] [-t <(n>=4)>] [-T <auth_tab>] [-A <apache-conf>] [-a <auth_file_name>] [-f <conffile>] [-p <outconf>] [-U <usock_path>] [-u <sys_user>] [-d <TRUE|FALSE>] [-w <web_dir>] [-k <ftok_dir>] [-l <legal_path>] [-y <proxy_path>] [-P <prefix_path>]"
35 echo " -f use this config file"
36 echo " -p save preferences in the file"
37 echo " -W web files only"
38 echo " -A apache_conf - def. $apache_conf"
39 echo " -c number cards in hand - def. $card_hand"
40 echo " -n number of players - def. $players_n"
41 echo " -t number of tables - def. $tables_n"
42 echo " -T number of auth-only tables - def. $tables_auth_n"
43 echo " -a authorization file name - def. \"$brisk_auth_conf\""
44 echo " -d activate dabug - def. $brisk_debug"
45 echo " -w dir where place the web tree - def. \"$web_path\""
46 echo " -k dir where place ftok files - def. \"$ftok_path\""
47 echo " -l dir where save logs - def. \"$legal_path\""
48 echo " -y dir where place proxy files - def. \"$proxy_path\""
49 echo " -P prefix path - def. \"$prefix_path\""
50 echo " -C config filename - def. \"$brisk_conf\""
51 echo " -U unix socket path - def. \"$usock_path\""
52 echo " -u system user to run brisk dae - def. \"$sys_user\""
56 function get_param () {
57 echo "X$2" | grep -q "^X$1\$"
70 function searchetc() {
76 while [ "$pp" != "/" ]; do
77 if [ -d "$pp/$dname" ]; then
90 if [ "$1" = "chk" ]; then
95 for i in $(find -name '*.pho' -o -name '*.phh' -o -name '*.php'); do
101 # before all check errors on the sources
104 if [ "$1" = "pkg" ]; then
105 if [ "$2" != "" ]; then
108 tag="$(git describe)"
110 nam1="brisk_${tag}.tgz"
111 nam2="brisk-img_${tag}.tgz"
112 echo "Build packages ${nam1} and ${nam2}."
113 read -p "Proceed [y/n]: " a
114 if [ "$a" != "y" -a "$a" != "Y" ]; then
117 git archive --format=tar --prefix=brisk-${tag}/brisk/ $tag | gzip > ../$nam1
119 git archive --format=tar --prefix=brisk-${tag}/brisk-img/ $tag | gzip > ../$nam2
124 if [ -f "$CONFIG_FILE" ]; then
125 source "$CONFIG_FILE"
128 if [ "x$prefix_path" = "x" ]; then
129 prefix_path="$web_path"
133 while [ $# -gt 0 ]; do
134 # echo aa $1 xx $2 bb
137 -A*) apache_conf="$(get_param "-A" "$1" "$2")"; sh=$?;;
138 -f*) conffile="$(get_param "-f" "$1" "$2")"; sh=$?;;
139 -p*) outconf="$(get_param "-p" "$1" "$2")"; sh=$?;;
140 -c*) card_hand="$(get_param "-c" "$1" "$2")"; sh=$?;;
141 -n*) players_n="$(get_param "-n" "$1" "$2")"; sh=$?;;
142 -t*) tables_n="$(get_param "-t" "$1" "$2")"; sh=$?;;
143 -T*) tables_auth_n="$(get_param "-T" "$1" "$2")"; sh=$?;;
144 -a*) brisk_auth_conf="$(get_param "-a" "$1" "$2")"; sh=$?;;
145 -d*) brisk_debug="$(get_param "-d" "$1" "$2")"; sh=$?;;
146 -w*) web_path="$(get_param "-w" "$1" "$2")"; sh=$?;;
147 -k*) ftok_path="$(get_param "-k" "$1" "$2")"; sh=$?;;
148 -y*) proxy_path="$(get_param "-y" "$1" "$2")"; sh=$?;;
149 -P*) prefix_path="$(get_param "-P" "$1" "$2")"; sh=$?;;
150 -C*) brisk_conf="$(get_param "-C" "$1" "$2")"; sh=$?;;
151 -l*) legal_path="$(get_param "-l" "$1" "$2")"; sh=$?;;
152 -U*) usock_path="$(get_param "-U" "$1" "$2")"; sh=$?;;
153 -u*) sys_user="$(get_param "-u" "$1" "$2")"; sh=$?;;
154 system) action=system;;
155 -W) web_only="TRUE";;
156 -h) usage $0; exit 0;;
157 *) usage $0; exit 1;;
159 if [ ! -z "$conffile" ]; then
160 if [ ! -f "$conffile" ]; then
161 echo "config file [$conffile] not found"
172 echo " outconf: \"$outconf\""
173 echo " apache_conf:\"$apache_conf\""
174 echo " card_hand: $card_hand"
175 echo " players_n: $players_n"
176 echo " tables_n: $tables_n"
177 echo " tables_auth_n: $tables_auth_n"
178 echo " brisk_auth_conf: \"$brisk_auth_conf\""
179 echo " brisk_debug:\"$brisk_debug\""
180 echo " web_path: \"$web_path\""
181 echo " ftok_path: \"$ftok_path\""
182 echo " legal_path: \"$legal_path\""
183 echo " proxy_path: \"$proxy_path\""
184 echo " prefix_path:\"$prefix_path\""
185 echo " brisk_conf: \"$brisk_conf\""
186 echo " usock_path: \"$usock_path\""
187 echo " sys_user: \"$sys_user\""
188 echo " web_only: \"$web_only\""
190 if [ ! -z "$outconf" ]; then
193 echo "# Produced automatically by brisk::INSTALL.sh"
195 echo "apache_conf=$apache_conf"
196 echo "card_hand=$card_hand"
197 echo "players_n=$players_n"
198 echo "tables_n=$tables_n"
199 echo "tables_auth_n=$tables_auth_n"
200 echo "brisk_auth_conf=\"$brisk_auth_conf\""
201 echo "brisk_debug=\"$brisk_debug\""
202 echo "web_path=\"$web_path\""
203 echo "ftok_path=\"$ftok_path\""
204 echo "proxy_path=\"$proxy_path\""
205 echo "legal_path=\"$legal_path\""
206 echo "prefix_path=\"$prefix_path\""
207 echo "brisk_conf=\"$brisk_conf\""
208 echo "usock_path=\"$usock_path\""
209 echo "sys_user=\"$sys_user\""
210 echo "web_only=\"$web_only\""
214 max_players=$((40 + players_n * tables_n))
216 if [ "$action" = "system" ]; then
217 scrname="$(echo "$prefix_path" | sed 's@^/@@g;s@/$@@g;s@/@_@g;')"
219 echo "script name: [$scrname]"
220 echo "brisk path: [$web_path]"
221 echo "private path: [$legal_path]"
222 echo "system user: [$sys_user]"
224 read -p "press enter to continue" sure
225 cp bin/brisk-init.sh brisk-init.sh.wrk
226 sed -i "s@^BPATH=.*@BPATH=\"${web_path}\"@g;s@^PPATH=.*@PPATH=\"${legal_path}\"@g;s@^SSUFF=.*@SSUFF=\"${scrname}\"@g;s@^BUSER=.*@BUSER=\"${sys_user}\"@g" brisk-init.sh.wrk
228 su -c "cp brisk-init.sh.wrk /etc/init.d/${scrname}"
233 echo "DON'T FORGET: after the first installation you MUST configure your run-levels accordingly"
235 echo "Example: su -c 'update-rc.d $scrname defaults'"
242 # check for etc path existence
243 dsta="$(dirname "$web_path")"
244 etc_path="$(searchetc "$dsta" Etc)"
245 if [ $? -ne 0 ]; then
246 echo "Etc directory not found"
255 ftokk_path="${ftok_path}k"
257 if [ $card_hand -lt 3 -o $card_hand -gt 8 ]; then
258 echo "card_hand ($card_hand) out of range (3 <= c <= 8)"
262 if [ $players_n -ne 3 -a $players_n -ne 5 ]; then
263 echo "players_n ($players_n) out of range (3|5)"
267 if [ "$web_only" = "FALSE" ]; then
268 if [ ! -d "$ftok_path" -a ! -d "$ftokk_path" ]; then
269 echo "ftok_path (\"$ftok_path\") not exists"
272 if [ -d "$ftok_path" -a -d "$ftokk_path" ]; then
273 echo "ftok_path (\"$ftok_path\") and ftokk_path (\"$ftokk_path\") exist, cannot continue"
276 if [ -d "$ftok_path" ]; then
277 mv "$ftok_path" "$ftokk_path"
279 touch $ftokk_path/spy.txt >/dev/null 2>&1
280 if [ $? -ne 0 ]; then
281 echo "ftokk_path (\"$ftokk_path\") write not allowed."
284 rm $ftokk_path/spy.txt
286 # create the fs subtree to enable ftok-ing
287 touch ${ftokk_path}/main
288 chmod 666 ${ftokk_path}/main
289 touch ${ftokk_path}/challenges
290 chmod 666 ${ftokk_path}/challenges
291 touch ${ftokk_path}/hardbans
292 chmod 666 ${ftokk_path}/hardbans
293 touch ${ftokk_path}/warrant
294 chmod 666 ${ftokk_path}/warrant
295 touch ${ftokk_path}/poll
296 chmod 666 ${ftokk_path}/poll
297 for i in $(seq 0 $max_players); do
298 touch ${ftokk_path}/user$i
299 chmod 666 ${ftokk_path}/user$i
302 if [ ! -d ${ftokk_path}/bin5 ]; then
303 mkdir ${ftokk_path}/bin5
304 chmod 777 ${ftokk_path}/bin5
307 for i in $(seq 0 $((tables_n - 1))); do
308 if [ ! -d ${ftokk_path}/bin5/table$i ]; then
309 mkdir ${ftokk_path}/bin5/table$i
311 chmod 777 ${ftokk_path}/bin5/table$i
312 touch ${ftokk_path}/bin5/table$i/table
313 chmod 666 ${ftokk_path}/bin5/table$i/table
314 for e in $(seq 0 4); do
315 touch ${ftokk_path}/bin5/table$i/user$e
316 chmod 666 ${ftokk_path}/bin5/table$i/user$e
318 # create subdirectories in proxy path
319 if [ ! -d ${proxy_path}/bin5/table$i ]; then
320 mkdir -p ${proxy_path}/bin5/table$i
323 chmod -R 777 ${proxy_path}/bin5
326 install -d ${web_path}__
327 for i in $(find web -type d | sed 's/^....//g'); do
328 install -d ${web_path}__/$i
331 for i in $(find web -name '.htaccess' -o -name '*.php' -o -name '*.phh' -o -name '*.pho' -o -name '*.css' -o -name '*.js' -o -name '*.mp3' -o -name '*.swf' | sed 's/^....//g'); do
332 install -m 644 "web/$i" "${web_path}__/$i"
334 chmod 755 "${web_path}__/spush/brisk-spush.php"
336 prefix_path_len=$(echo -n "$prefix_path" | wc -c)
338 if [ $players_n -eq 5 ]; then
345 sed -i "s/CARD_HAND *= *[0-9]\+/CARD_HAND = $card_hand/g" $(find ${web_path}__ -type f -name '*.js' -exec grep -l 'CARD_HAND *= *[0-9]\+' {} \;)
346 sed -i "s/PLAYERS_N *= *[0-9]\+/PLAYERS_N = $players_n/g" $(find ${web_path}__ -type f -name '*.js' -exec grep -l 'PLAYERS_N *= *[0-9]\+' {} \;)
348 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]\+' {} \;)
350 # .ph[pho] substitutions
351 sed -i "s/define *( *'PLAYERS_N', *[0-9]\+ *)/define('PLAYERS_N', $players_n)/g" $(find ${web_path}__ -type f -name '*.ph*' -exec grep -l "define *( *'PLAYERS_N', *[0-9]\+ *)" {} \;)
353 sed -i "s/define *( *'BIN5_CARD_HAND', *[0-9]\+ *)/define('BIN5_CARD_HAND', $card_hand)/g" $(find ${web_path}__ -type f -name '*.ph*' -exec grep -l "define *( *'BIN5_CARD_HAND', *[0-9]\+ *)" {} \;)
355 sed -i "s/define *( *'BIN5_PLAYERS_N', *[0-9]\+ *)/define('BIN5_PLAYERS_N', $players_n)/g" $(find ${web_path}__ -type f -name '*.ph*' -exec grep -l "define *( *'BIN5_PLAYERS_N', *[0-9]\+ *)" {} \;)
357 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',[^)]*)" {} \;)
359 sed -i "s@define *( *'SITE_PREFIX',[^)]*)@define('SITE_PREFIX', \"$prefix_path\")@g" ${web_path}__/Obj/sac-a-push.phh
361 sed -i "s@define *( *'SITE_PREFIX_LEN',[^)]*)@define('SITE_PREFIX_LEN', $prefix_path_len)@g" ${web_path}__/Obj/sac-a-push.phh
363 sed -i "s@define *( *'USOCK_PATH',[^)]*)@define('USOCK_PATH', \"$usock_path\")@g" ${web_path}__/spush/brisk-spush.phh
365 sed -i "s@define *( *'TABLES_N',[^)]*)@define('TABLES_N', $tables_n)@g" ${web_path}__/Obj/brisk.phh
367 sed -i "s@define *( *'TABLES_AUTH_N',[^)]*)@define('TABLES_AUTH_N', $tables_auth_n)@g" ${web_path}__/Obj/brisk.phh
369 sed -i "s@define *( *'BRISK_DEBUG',[^)]*)@define('BRISK_DEBUG', $brisk_debug)@g" ${web_path}__/Obj/brisk.phh
371 sed -i "s@define *( *'LEGAL_PATH',[^)]*)@define('LEGAL_PATH', \"$legal_path\")@g" ${web_path}__/Obj/brisk.phh
373 sed -i "s@define *( *'PROXY_PATH',[^)]*)@define('PROXY_PATH', \"$proxy_path\")@g" ${web_path}__/Obj/brisk.phh
375 sed -i "s@define *( *'BRISK_CONF',[^)]*)@define('BRISK_CONF', \"$brisk_conf\")@g" ${web_path}__/Obj/brisk.phh
377 sed -i "s@define *( *'BRISK_AUTH_CONF',[^)]*)@define('BRISK_AUTH_CONF', \"$brisk_auth_conf\")@g" ${web_path}__/Obj/auth.phh
379 sed -i "s@var \+cookiepath \+= \+\"[^\"]*\";@var cookiepath = \"$prefix_path\";@g" ${web_path}__/commons.js
381 sed -i "s@\( \+cookiepath *: *\)\"[^\"]*\" *,@\1 \"$prefix_path\",@g" ${web_path}__/xynt-streaming.js
383 document_root="$(grep DocumentRoot "${apache_conf}" | grep -v '^[ ]*#' | awk '{ print $2 }')"
384 sed -i "s@^\(\$DOCUMENT_ROOT *= *[\"']\)[^\"']*\([\"']\)@\1$document_root\2@g" ${web_path}__/spush/*.ph*
386 if [ -d ${web_path} ]; then
387 mv ${web_path} ${web_path}.old
390 if [ -d ../brisk-img ]; then
392 ./INSTALL.sh -w ${web_path}__
396 # config file installation or diff
397 if [ -f "$etc_path/$brisk_conf" ]; then
398 echo "Config file $etc_path/$brisk_conf exists."
399 echo "=== Dump the diff. ==="
400 # diff -u "$etc_path/$brisk_conf" "${web_path}__""/Obj/brisk.conf-templ.pho"
401 diff -u <(cat "$etc_path/$brisk_conf" | grep '\$[a-zA-Z_ ]\+=' | sed 's/ = .*/ = /g' | sort | uniq) <(cat "${web_path}__""/Obj/brisk.conf-templ.pho" | grep '\$[a-zA-Z_ ]\+=' | sed 's/ = .*/ = /g' | sort | uniq )
402 echo "=== End dump. ==="
404 echo "Config file $etc_path/$brisk_conf not exists."
405 echo "Install a template."
406 cp "${web_path}__""/Obj/brisk.conf-templ.pho" "$etc_path/$brisk_conf"
409 mv ${web_path}__ ${web_path}
410 if [ -d ${web_path}.old ]; then
411 rm -rf ${web_path}.old
413 if [ "$web_only" = "FALSE" ]; then
414 mv "$ftokk_path" "$ftok_path"