diff options
author | ramon <ramongomez@us.es> | 2017-12-12 16:28:56 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2017-12-12 16:28:56 +0000 |
commit | b46042c67f764c242943be42e2fd20eb65fbd4a1 (patch) | |
tree | 56dc1d9acd31ae726791efa5ac17d09f8d3f3443 /server/bin | |
parent | 30492e97bb7855c682412d02b402881112d00ef7 (diff) |
#708: API REST guarda idioma de la sesión para adaptar los mensajes de fin de acceso remoto.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5529 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'server/bin')
-rwxr-xr-x | server/bin/ogagentqueue.cron | 96 |
1 files changed, 51 insertions, 45 deletions
diff --git a/server/bin/ogagentqueue.cron b/server/bin/ogagentqueue.cron index 54a9a2b9..0cf0dd5d 100755 --- a/server/bin/ogagentqueue.cron +++ b/server/bin/ogagentqueue.cron @@ -19,12 +19,12 @@ MYCNF=/tmp/.my.cnf.$$ # Basic error control if [ ! -r "$SERVERCONF" ]; then - echo "$PROG: Cannot access to configuration file." >&2 - exit 2 + echo "$PROG: Cannot access to configuration file." >&2 + exit 2 fi if ! touch "$LOGFILE"; then - echo "$PROG: Cannot write to the log file." >&2 - exit 2 + echo "$PROG: Cannot write to log file." >&2 + exit 2 fi # Fetching database access data. @@ -42,53 +42,59 @@ trap "rm -f $MYCNF" 0 1 2 3 6 9 15 # Reading pending operations. mysql --defaults-extra-file="$MYCNF" -D "$CATALOG" -Nse " SELECT ogagent_queue.id, ogagent_queue.exectime, ogagent_queue.operation, - ordenadores.idordenador, ordenadores.ip, ordenadores.agentkey + ordenadores.idordenador, ordenadores.ip, ordenadores.agentkey, remotepc.language FROM ogagent_queue JOIN ordenadores ON ogagent_queue.clientid=ordenadores.idordenador + JOIN remotepc ON ogagent_queue.clientid=remotepc.id WHERE exectime < NOW() ORDER BY exectime;" | \ - while read -r OPERID DATE TIME OPER CLNTID AGNTIP AGNTKEY; do - # Preparing operation data. - # TODO: preparing messages translation. - case "$OPER" in - popup-10) # Message: min. before power off. - AGNTURL=https://$AGNTIP:8000/opengnsys/popup - DATA='{"title":"Apagado en 10 min.","message":"Fin del tiempo de acceso remoto.\nEl ordenador se apagará automáticamente dentro de 10 minutos."}' - ;; - popup-5) # Message: 5 min. before power off. - AGNTURL=https://$AGNTIP:8000/opengnsys/popup - DATA='{"title":"Apagado en 5 min.","message":"El ordenador se apagará automáticamente dentro de 5 minutos.\nATENCIÓN: Este es el último aviso."}' - ;; - poweroff) # Power off client. - AGNTURL=https://$AGNTIP:8000/opengnsys/poweroff - DATA= - ;; - *) # Unknown operation. - AGNTURL= - ;; - esac - # Sending operation to OGAgent. - if [ -n "$AGNTURL" ]; then - CODE=$(curl -ksm 1 -w "%{http_code}" -o /dev/null -H "Authorization: $AGNTKEY" ${DATA:+"-d $DATA"} "$AGNTURL") - case "$CODE" in - 000) # Client does not respond may be halted). - ;; - 200) # Operation sended. - echo "$(date +"%FT%T%z"): $PROG: Operation sended to OGAgent: client=$AGNTIP, oper=$OPER, exectime=\"$DATE $TIME\"" >> $LOGFILE ;; - *) # Operation error. - echo "$(date +"%FT%T%z"): $PROG: Operation error: client=$AGNTIP, oper=$OPER, code=$CODE" >> $LOGFILE ;; - esac - else # Unknown operation. - echo "$(date +"%FT%T%z"): $PROG: Unknown operation: client=$AGNTIP, oper=$OPER" >> $LOGFILE - fi - # Deleting operation from database. - SQL="DELETE FROM ogagent_queue WHERE id='$OPERID';" - [ "$OPER" == "poweroff" ] && SQL="$SQL + while read -r OPERID DATE TIME OPER CLNTID AGNTIP AGNTKEY LANGUAGE; do + # Preparing operation data. + case "$OPER" in + popup-10) # Message: 10 min. before power off. + AGNTURL=https://$AGNTIP:8000/opengnsys/popup + case "$LANGUAGE" in + es) DATA='{"title":"Apagado en 10 min.","message":"Fin del tiempo de acceso remoto.\nEl ordenador se apagará automáticamente dentro de 10 minutos."}' ;; + *) DATA='{"title":"Shutdown after 10 min.","message":"Remote access time is ended.\nComputer will be powered off automaticly after 10 minutes."}' ;; + esac + ;; + popup-5) # Message: 5 min. before power off. + AGNTURL=https://$AGNTIP:8000/opengnsys/popup + case "$LANGUAGE" in + es) DATA='{"title":"Apagado en 5 min.","message":"El ordenador se apagará automáticamente dentro de 5 minutos.\nATENCIÓN: Este es el último aviso."}' ;; + *) DATA='{"title":"Shutdown after 5 min.","message":"The computer will be powered off automaticly after 5 minutes.\nATTENTION: This is the last warning."}' + esac + ;; + poweroff) # Power off client. + AGNTURL=https://$AGNTIP:8000/opengnsys/poweroff + DATA= + ;; + *) # Unknown operation. + AGNTURL= + ;; + esac + # Sending operation to OGAgent. + if [ -n "$AGNTURL" ]; then + CODE=$(curl -ksm 1 -w "%{http_code}" -o /dev/null -H "Authorization: $AGNTKEY" ${DATA:+"-d $DATA"} "$AGNTURL") + case "$CODE" in + 000) # Client does not respond may be halted). + ;; + 200) # Operation sended. + echo "$(date +"%FT%T%z"): $PROG: Operation sended to OGAgent: client=$AGNTIP, oper=$OPER, exectime=\"$DATE $TIME\"" >> $LOGFILE ;; + *) # Operation error. + echo "$(date +"%FT%T%z"): $PROG: Operation error: client=$AGNTIP, oper=$OPER, code=$CODE" >> $LOGFILE ;; + esac + else # Unknown operation. + echo "$(date +"%FT%T%z"): $PROG: Unknown operation: client=$AGNTIP, oper=$OPER" >> $LOGFILE + fi + # Deleting operation from database. + SQL="DELETE FROM ogagent_queue WHERE id='$OPERID';" + [ "$OPER" == "poweroff" ] && SQL="$SQL UPDATE remotepc - SET reserved = NOW() - INTERVAL 1 SECOND, urllogin=NULL, urllogout=NULL + SET reserved = NOW() - INTERVAL 1 SECOND, urllogin=NULL, urllogout=NULL, language=NULL WHERE id = '$CNLTID'; DELETE FROM acciones WHERE idordenador = '$CLNTID' AND descriaccion = 'RemotePC Session';" - mysql --defaults-extra-file="$MYCNF" -D "$CATALOG" -Nse "$SQL" - done + mysql --defaults-extra-file="$MYCNF" -D "$CATALOG" -Nse "$SQL" + done |