Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • matefun/Frontend
  • felipe.parodi/Frontend
2 results
Show changes
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
#! /bin/bash
# csv: user,liceo,anio,grupo,grado
# todas las filas tienen que terminar con enter
INPUT=grupos-referentes.csv
SERVER=https://www.fing.edu.uy/proyectos/matefun/servicios
#http://localhost:8080/servicios
# parametros del script: usuario y pass
read USER # = $1
stty -echo
read PASS # = $2
stty echo
token=$(curl --header "Content-Type: application/json" \
--request POST \
--data '{"cedula":"'$USER'","password":"'$PASS'"}' \
"$SERVER/login" | \
python3 -c "import sys, json; print(json.load(sys.stdin)['token'])")
while IFS=, read -r user liceo anio grupo grado; do
echo "user: $user"
echo "token: $token"
data='{"anio":"'$anio'","grupo":"'$grupo'","grado":"'$grado'","liceoId":"'$liceo'"}'
echo $data
curl -H "Content-Type: application/json" -H "Authorization: Bearer $token" \
--request POST \
--data "$data" \
"$SERVER/grupo/$user/add"
echo "\n"
done < $INPUT
curl -H "Content-Type: application/json" -H "Authorization: Bearer $token" \
--request POST \
"$SERVER/login/$USER/logout"
#! /bin/bash
# csv: user,nombre,apellido,pass,rol(docente,alumno)
# todas las filas tienen que terminar con enter
INPUT='users.csv'
#users.csv
SERVER=https://www.fing.edu.uy/proyectos/matefun/servicios
# http://localhost:8080/servicios
# parametros del script: usuario y pass
read USER # = $1
stty -echo
read PASS # = $2
stty echo
echo "//$USER//$PASS//"
token=$(curl --header "Content-Type: application/json" \
--request POST \
--data '{"cedula":"'$USER'","password":"'$PASS'"}' \
"$SERVER/login" | \
python3 -c "import sys, json; print(json.load(sys.stdin)['token'])")
while IFS=, read -r user name surname code role; do
echo "user: $user"
hcode=$(echo -n "$code" | sha1sum | awk '{print $1}')
echo "pass: $hcode"
echo "token: $token"
data='{ "rol": "'$role'","cedula": "'$user'", "nombre": "'$name'","apellido": "'$surname'","password": "'$hcode'","configuracion": { "themeEditor": "dracula","fontSizeEditor": 12,"argumentoI": true,"argumentoF": true}}'
echo $data
curl -H "Content-Type: application/json" -H "Authorization: Bearer $token" \
--request POST \
--data "$data" \
"$SERVER/usuario/$role/restore"
echo "\n"
done < $INPUT
curl -H "Content-Type: application/json" -H "Authorization: Bearer $token" \
--request POST \
"$SERVER/login/$USER/logout"
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Hay que asegurarse que las variables SERVER y GHCI_URL coinciden con la ruta
# en que se despliegan los servicios. Para ello, editar el archivo
# /Frontend\ Angular\ 4/src/app/shared/config.ts
#
# Los servicios y la aplicacion se despliegan en la ruta configurada en el tag
# <context-root> del archivo:
# /Frontend/Servidor JEE/WebContent/WEB-INF/jboss-web.xml
#
# Hay que asegurarse que el --base-href coincida con la ruta en la que se
# despliega la aplicacion. En otras palabras, el --base-href y el contenido
# del tag <context-root> DEBEN COINCIDIR.
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
cd Frontend\ Angular\ 4/
npx ng build --configuration production --base-href /proyectos/matefun/
cd ..
cp -R Frontend\ Angular\ 4/dist/* Servidor\ JEE/WebContent/
cd Servidor\ JEE/
mvn package
cd ..
File added
{
"lockfileVersion": 1
}