]> git.llucax.com Git - z.facultad/75.08/llamadas.git/blobdiff - aficonf
Alta de umbrales andando. Mucha metida de mano, hay que empezar a redondear el insta...
[z.facultad/75.08/llamadas.git] / aficonf
diff --git a/aficonf b/aficonf
index 68e5baef875515a1f89e6916693985683160e48d..93854a301fe8f27ad0bf11c6cd023034f9470ed7 100755 (executable)
--- a/aficonf
+++ b/aficonf
@@ -7,7 +7,7 @@
 #trap "echo ; echo 'No use CTRL+C para salir. Tome la opción 4 en el menú.' ; echo" INT
 
 # TODO : esto lo debe modificar el instalador, no?
-INST_DIR="/home/gazer/prog/7508/inst"
+INST_DIR="$PWD/inst"
 
 . "/$INST_DIR/util.sh"
 
@@ -32,6 +32,23 @@ menu () {
        preguntar "Su opción" "1234" $1
 }
 
+existe_umbral () {
+       EXISTE=`cat "$INST_DIR/umbrales.param" | egrep "$1"`;
+       if [ "$EXISTE" == "" ] ; then
+               #No existe
+               return 1
+       fi
+       #Ya existe un umbral!
+       return 0
+}
+       
+buscar_id_umbral () {
+       ID=`cat "$INST_DIR/umbrales.id"`;
+       eval "$1=$ID"
+       let ID=$ID+1
+       echo "$ID" > "$INST_DIR/umbrales.id"
+}
+
 case_altas () {
        DONE=0
        while [ $DONE == 0 ] ; do
@@ -51,40 +68,38 @@ case_altas () {
 
        DONE=0
        while [ $DONE == 0 ] ; do
-               leer "Origen (código de 2 letras)" "" ORIGEN
-               if ! existe_pais "$ORIGEN" ; then
-                       echo "No existe el país de código $ORIGEN"
+               leer "Cuidad (código de 2 letras)" "" CIUDAD
+               if ! existe_pais "$CIUDAD" ; then
+                       echo "No existe el país de código $CIUDAD"
                else
                        DONE=1
                fi
-               if [ "$ORIGEN" == "" ] ; then
+               if [ "$CIUDAD" == "" ] ; then
                        DONE=0
                fi
        done
 
-       DONE=0
-       while [ $DONE == 0 ] ; do
-               leer "Destino (código de 2 letras)" "" DESTINO
-               if ! existe_pais "$DESTINO" ; then
-                       echo "No existe el país de código $DESTINO"
-               else
-                       DONE=1
-               fi
-               if [ "$DESTINO" == "" ] ; then
-                       DONE=0
-               fi
-       done
-       # Grabo
-       # TODO
-       echo
-       cat << MARCA
-Su entrada
-==========
-   Línea           : $LINEA
-   Tipo de llamada : $TIPO
-   Origon          : $ORIGEN
-   Destino         : $DESTINO
-MARCA
+       # Verifico que el umbral no exista
+       FECHA=`date +"%Y%m%d"`
+       HORA=`date +"%H%M%S"`
+       UMBRAL="$LINEA;$CIUDAD;$TIPO;A;*;*;*"
+
+       if existe_umbral "$UMBRAL" ; then
+               echo "Ya existe un umbral con los datos ingresados."
+               echo "Abortando..."
+               return
+       fi
+       
+       # Genero el umbral
+       buscar_id_umbral ID
+       UMBRAL="$ID;$LINEA;$CIUDAD;$TIPO;A;$USER;$FECHA;$HORA"
+
+       # Lo guardo
+       echo "$UMBRAL" >> "$INST_DIR/umbrales.param"
+
+       echo ""
+       echo "El Umbral fue grabado con éxito"
+       echo ""
 }
 
 OPT="0"