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