]> git.llucax.com Git - z.facultad/75.08/llamadas.git/blob - afinstal
a5b58f3e6aafed7a0c981ced9b035ed0cdc09ef4
[z.facultad/75.08/llamadas.git] / afinstal
1 #!/bin/bash 
2 # vim: set softtabstop=4 tabstop=4 
3
4 . inst/util.sh
5
6 ################# Funciones ###########################
7
8 # Devuelve 0 si la ruta fue cambiada y 1 si quedo por defecto
9 function askDir() {
10         leer ">> Ingrese la ruta para los archivos $1" "$2" DIRSELECTED
11         if [ -n "$DIRSELECTED" ]; then return 1
12         else return 0
13         fi
14 }
15
16 # Devuelve 0 si el script y el OS matchean, 1 otherwise
17 function checkOS() {
18         CURSIS="$1"
19         SCRIPTOS="un sistema desconocido"
20         case "$0" in
21                 *afinstal)
22                         SCRIPTOS="Linux"
23                         ;;
24                 *afinsmac)
25                         SCRIPTOS="Mac"
26                         ;;
27                 *afinstaw)
28                         SCRIPTOS="Windows"
29                         ;;
30         esac
31         if [ "$CURSIS" != "$SCRIPTOS" ]; then
32                 cat<<MARCA
33 ERROR!
34
35 Este proceso de instalacion es para $SCRIPTOS
36 y su sistema operativo es $CURSIS
37 Solicite a su proveedor la version adecuada
38 e inicie nuevamente el proceso de instalacion.
39
40 MARCA
41         return 1
42         else return 0
43         fi
44 }
45
46 # Devuelve 0 si se encuentra Perl instalado, 1 otherwise
47 function checkPerl() {
48         if [ "perl" = "`type perl | sed s/\"perl is .*\"/\"perl\"/`" ]; then 
49                 return 0;
50         else
51         cat <<MARCA
52 ERROR!
53
54 Este proceso de instalación solo puede ser
55 ejecutado si Perl 5 o superior ya esta instalado
56
57 Efectúe a instalación de Perl
58 Inicie nuevamente el procedimiento de instalación.
59
60 MARCA
61         return 1
62         fi
63 }
64
65 # Modifica una linea dada de un archivo dado
66 function changeLine() {
67         cat "$1" | sed "${2}s%.*%$3%" > "$1"
68 }
69
70 # Mensaje generico de abort
71 function abortMessage {
72         echo ">> Proceso de instalacion cancelado"
73 }
74
75 # Muestra los componentes instalados, usando vars ya definidas previamente
76 function showInstalled {
77 cat <<MARCA
78 **********************************************************************
79 *  $1
80 *  Se encuentran instalados los siguientes componentes :
81 MARCA
82         if [ "$havefraude" -eq 1 ]; then
83                 echo "*  Antifraude.pl instalado el $fechafraude por $userfraude"
84         fi
85         if [ "$haveconf" -eq 1 ]; then
86                 echo "*  Aficonf instalado el $fechaconf por $userconf"
87         fi
88         if [ "$havemonio" -eq 1 ]; then
89                 echo "*  Afimonio instalado el $fechaconf por $usermonio"
90         fi
91 cat <<MARCA
92 *
93 *                    Copyleft TPSistemasOp (c) 2004
94 **********************************************************************
95 MARCA
96 }
97
98 # Permite seleccionar que componentes se instalaran
99 function selectModules() {
100         PS3="Seleccione un componente:"
101         key="S"
102         toinstall=""
103         while [ "$key" = "S" ] && [ -n "$choices" ]
104         do
105                 clear
106                 cat <<MARCA
107
108 ***********************************************************
109 *  SELECCION de COMPONENTES                               *
110 *  Por favor seleecione los componentes a ser instalados  *
111 *  de a uno por vez, a traves del siguiente menu:         *
112 ***********************************************************
113 >> Se instalaran: $toinstall
114
115 MARCA
116                 select REPLY in $choices
117                 do
118                         case $REPLY in
119                         "AFIMONIO" ) selected="afimonio";;
120                         "AFICONF" ) selected="aficonf";;
121                         "ANTIFRAUDE" ) selected="antifraude.pl";;
122                         * ) selected="INVALID";;
123                         esac
124                 break
125                 done
126
127                 if [ $selected != "INVALID" ]; then
128                         choices=`echo $choices | sed s/$REPLY//`
129                         if [ -z "$toinstall" ]; then toinstall=$selected
130                         else toinstall="$toinstall,$selected"
131                         fi
132                         
133                 if [ -n "$choices" ]; then
134                                 echo
135                                 echo "Se instalará [$selected]"
136
137                                 preguntar "¿Desea agregar otro componente para instalar?" "SsNn" key
138                                 if [ "$key" = "s" ]; then
139                                         key="S"
140                                 fi
141                         fi
142                 fi
143         done
144         if [ -n "$key" ]; then echo
145         fi
146 cat <<MARCA
147 ***********************************************************
148 * La seleccion de componentes ha finalizado. Se procedera *
149 * con la instalacion.                                     *
150 ***********************************************************
151 Componentes a instalar: [ $toinstall ]
152
153 < Presione una tecla para continuar >
154 MARCA
155 read key
156 }
157
158 ################### MAIN SCRIPT CODE ###################
159 clear
160 SISOPTP=$(uname)
161 CURRDIR=`echo ${0%/*} | sed s%'\.'%$PWD%`
162 CONFDIR="${CURRDIR}/conf"
163 INSTDIR="${CURRDIR}/inst"
164 CONFFILE="${CONFDIR}/afinstal.conf"
165 DEFAULTDIR=$CURRDIR
166 havemonio=0
167 haveconf=0
168 havefraude=0
169
170 # [STEP1] Verifico el OS vs SCRIPT y la presencia de PERL
171 echo -n ">> Verificando version del software contra el OS... "
172 checkOS "$SISOPTP"
173 if [ "$?" -ne 0 ]; then 
174         abortMessage
175         exit 1
176 fi
177 echo 'OK!'
178 echo -n ">> Verificando la existencia de PERL... "
179 checkPerl
180 if [ "$?" -ne 0 ]; then
181         abortMessage
182         exit 1
183 fi
184 echo 'OK!'
185 echo ">> Proceso de instalacion para $SISOPTP iniciado."
186 echo ">> Presione ENTER para continuar"
187 read key
188
189 # [STEP2] License Agreements
190 cat <<MARCA
191 ***************************************************************
192 *                                                             *
193 *            Proceso de instalacion de "Antifraude"           *
194 *               Copyleft TPSistemasOp (c) 2004                *
195 *                                                             *
196 ***************************************************************
197  A T E N C I O N: Al instalar Antifraude UD. expresa estar
198  en un todo de acuerdo con los terminos y condiciones del 
199  ACUERDO DE LICENCIA DE SOFTWARE incluido en este paquete.
200  
201  Si desea cancelar este proceso oprima 'F' y luego ENTER.
202  Para continuar oprima ENTER.
203 MARCA
204 key="something"
205 while [ "$key" != "" ]; do
206         read key
207         if [ "$key" = "F" ]; then
208                 abortMessage
209                 exit 0
210         fi
211 done
212
213 # [STEP3] Chequeamos si hay componentes ya instalados
214 if [ -f "$CONFFILE" ] && [ -s "$CONFFILE" ]; then
215         #Busco los nombres de los binarios
216         binfraude=`grep -n "Comando" "$CONFFILE" | grep 10 | sed s%.*Comando.%%`
217         binconf=`grep -n "Comando" "$CONFFILE" | grep 20 | sed s%.*Comando.%%`
218         binmonio=`grep -n "Comando" "$CONFFILE" | grep 30 | sed s%.*Comando.%%`
219         #Busco donde deberian estar instalados
220         dirfraude=`grep -n "BINDIR" "$CONFFILE" | grep 11 | sed 's%.*= %%'`
221         dirconf=`grep -n "BINDIR" "$CONFFILE" | grep 21 | sed 's%.*= %%'`
222         dirmonio=`grep -n "BINDIR" "$CONFFILE" | grep 31 | sed 's%.*= %%'`
223         # Verifico finalmente si esta alli el archivo, en caso negativo, habilito
224         # la posibilidad de instalar ese componente
225         if [ ! -f "${dirmonio}/$binmonio" ]; then
226                 choices="AFIMONIO"
227         else
228                 havemonio=1
229                 usermonio=`grep -n "USERID" "$CONFFILE" | grep 35 | sed 's%.*= %%'`
230                 fechamonio=`grep -n "FECINS" "$CONFFILE" | grep 36 | sed 's%.*= %%'`
231         fi
232         if [ ! -f "${dirconf}/$binconf" ]; then
233                 choices="${choices} AFICONF"
234         else
235                 haveconf=1
236                 userconf=`grep -n "USERID" "$CONFFILE" | grep 25 | sed 's%.*= %%'`
237                 fechaconf=`grep -n "FECINS" "$CONFFILE" | grep 26 | sed 's%.*= %%'`
238         fi
239         if [ ! -f "${dirfraude}/$binfraude" ]; then
240                 choices="${choices} ANTIFRAUDE"
241         else
242                 havefraude=1
243                 userfraude=`grep -n "USERID" "$CONFFILE" | grep 17 | sed 's%.*= %%'`
244                 fechafraude=`grep -n "FECINS" "$CONFFILE" | grep 18 | sed 's%.*= %%'`
245         fi
246         choices=${choices% }
247         choices=${choices# }
248 else
249         choices="AFIMONIO AFICONF ANTIFRAUDE"
250 fi
251
252 # [STEP4] Seleecion de los componentes a instalar
253 # TODO: tener en cuenta los que ya estan y no permitir elegirlos
254 if [ -z "$choices" ]; then
255         showInstalled
256         abortMessage
257         exit 0
258 fi
259 selectModules
260
261 # [STEP5] Definir paths de cada componente e instalarlo guardando
262 #         la informacion pertinente en el afinstal.conf
263 if [ ! -f "$CONFFILE" ] || [ ! -s "$CONFFILE" ]; then
264         touch "$CONFFILE"
265         echo "INSTDIR = $INSTDIR" >> $CONFFILE
266         echo "CONFDIR = $CONFDIR" >> $CONFFILE
267         for n in `seq 3 51`; do
268                 echo "" >> $CONFFILE
269         done            
270 fi
271
272 # Comienzo la instalacion de cada componente
273 comandos=`echo $toinstall | sed s%,%" "%g`
274 for comando in $comandos
275 do
276         choice='something'
277         while [ -n "$choice" ]; do
278         
279         # Directorios FIJOS para todos los componentes
280         clear
281         cat <<MARCA
282
283 ** Iniciando instalacion del componente <$comando>.
284 ** A continuacion se le permitira establecer la estructura de
285 ** directorios donde se instalara el mismo.
286
287 >> Nombre del directorio de instalacion: ($INSTDIR)
288 >> Nombre del directorio de configuracion: ($CONFDIR)
289
290 MARCA
291
292         # Le pido un rootpath donde se instalara este comando en particular
293         leer ">> Ingrese la ruta de instalación" "$CURRDIR" userpath
294         if [ -n "$userpath" ]; then     ROOTPATH=$userpath
295         else ROOTPATH=$CURRDIR
296         fi
297
298         # preparlos los dirs que voy a sugerir
299         BINDIR="${ROOTPATH}/bin"
300         LOGDIR="${ROOTPATH}/log"
301         DATADIR=""
302                 
303         # Le muestro el directorio sugerido para los binarios 
304         askDir "ejecutables" "bin" $BINDIR
305         if [ "$?" -ne 0 ]; then BINDIR="${ROOTPATH}/$DIRSELECTED"
306         fi
307
308         # Si estoy con antifraude.pl muestro el sugerido para los datos
309         if [ "$comando" = "antifraude.pl" ]; then
310                 DATADIR="${ROOTPATH}/llamadas"
311                 askDir "datos" "llamadas" $DATADIR
312                 if [ "$?" -ne 0 ]; then DATADIR="${ROOTPATH}/$DIRSELECTED"
313                 fi
314         fi
315
316         # Le muestro el directorio para los logs
317         askDir "de datos" "log" $LOGDIR
318         if [ "$?" -ne 0 ]; then LOGDIR="${ROOTPATH}/$DIRSELECTED"
319         fi
320
321         # Le sugiero el archivo de log
322         leer ">> Nombre del archivo de log" "${comando%.pl}.log" LOGFILE
323         if [ -z "$LOGFILE" ]; then
324                 LOGFILE="${comando%.pl}.log"
325         fi
326
327         # Le sugiero un size para el logfile
328         leer ">> Tamaño máximo para el archivo ($LOGFILE) en MB" "200" LOGSIZE
329         if [ -z "$LOGSIZE" ]; then
330                 LOGSIZE=200
331         fi
332
333         cat <<MARCA
334
335 >>  Parametros de instalacion de $comando
336 >>  ===================================================================
337 >>  Directorio de instalación: $INSTDIR
338 >>  Directorio de configuración: $CONFDIR
339 >>  Directorio de ejecutables: $BINDIR
340 >>  Directorio de datos: $DATADIR
341 >>  Archivo de log: $LOGDIR/$LOGFILE
342 >>  Tamaño máximo para el archivo de log: $LOGSIZE
343
344 Si los datos ingresados son correctos oprima solamente ENTER, si desea
345 modificar alguno de ellos oprima cualquier otra tecla y luego ENTER.
346 MARCA
347         read choice
348         done
349         
350         cat <<MARCA
351 Si desea iniciar la instalación de <$comando>, oprima ENTER, si desea
352 cancelar el proceso oprima cualquier otra tecla y luego ENTER.
353 MARCA
354         read choice
355         if [ -n "$choice" ]; then
356                 abortMessage
357                 exit 1
358         fi
359
360         # Comienzo a crear la estructura de directorios definida (Check permisos!!)
361         echo ">> Creando Estructura de Directorio...."
362         mkdir -p "$BINDIR"
363         mkdir -p "$LOGDIR"
364         mkdir -p "$CONFDIR/lock"
365
366         touch "$LOGDIR/$LOGFILE"
367         if [ $comando = "antifraude.pl" ]; then
368                 mkdir -p $DATADIR
369                 mkdir -p $DATADIR/{aprocesar,enproceso,rechazadas,procesadas}
370                 mkdir -p $DATADIR/alarmas
371         fi
372         echo ">> Moviendo Archivos....."
373         cp "$INSTDIR/$comando" "$BINDIR"
374
375         # TODO : no se debe copiar solo 1 vez?
376         cp "$INSTDIR/oridesti.txt" "$CONFDIR"
377
378         # Guardo los datos en el archivo de configuracion
379         userid=$LOGNAME
380         fecha=$(date +%d/%m/%Y)
381         case $comando in
382                 "afimonio" ) numline=30;
383                         havemonio=1;
384                         usermonio=$userid;
385                         fechamonio=$fecha;;
386                 "aficonf" ) numline=20;
387                         haveconf=1;
388                         userconf=$userid;
389                         fechaconf=$fecha;;
390                 "antifraude.pl" ) numline=10;
391                         havefraude=1;
392                         userfraude=$userid;
393                         fechafraude=$fecha;;
394         esac    
395                 
396         changeLine "$CONFFILE" "$numline" "Comando $comando"
397         numline=$(($numline+1))
398         changeLine "$CONFFILE" "$numline" "BINDIR = $BINDIR"
399         numline=$(($numline+1))
400         changeLine "$CONFFILE" "$numline" "LOGDIR = $LOGDIR"
401         numline=$(($numline+1))
402         changeLine "$CONFFILE" "$numline" "LOGFILE = $LOGFILE"
403         numline=$(($numline+1))
404         changeLine "$CONFFILE" "$numline" "LOGSIZE = $LOGSIZE"
405         numline=$(($numline+1))
406         if [ "$comando" = "antifraude.pl" ]; then
407                 changeLine "$CONFFILE" "$numline" "DATADIR = $DATADIR"
408                 numline=$(($numline+1))
409                 changeLine "$CONFFILE" "$numline" "DATASIZE = "
410                 numline=$(($numline+1))
411         fi
412         changeLine "$CONFFILE" "$numline" "USERID = $userid"
413         numline=$(($numline+1))
414         changeLine "$CONFFILE" "$numline" "FECINS = $fecha"
415 done
416
417 # Creacion de archivos auxiliares
418 echo "0" > "$CONFDIR/umbrales.id"
419
420 # [STEP6] Ofrecer arrancar el Afimonio si estan los tres paquetes instalados
421
422 # [STEP7] Mostrar en un recuadro que se encuentra instalado en el sistema
423 showInstalled