server/qa-fill-view.sh

19 lines
881 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2023-07-25 07:21:11 +00:00
source qa-common.sh
# Register Teams association betweeen "FIC Groupe X" and X, the theme directory prefix
2023-07-25 07:21:11 +00:00
`curl -s http://${HOST_FICADMIN}/api/teams | jq -r '.[] | [(.id | tostring), " ", .name] | add' | while read ID TEAM; do if echo $TEAM | grep "${TEAM_PREFIX}" > /dev/null 2> /dev/null; then echo export TEAM_$TEAM=$ID | sed -r "s/${TEAM_PREFIX} //"; fi; done`
# Add their themes and exercices
2023-07-25 07:21:11 +00:00
curl -s http://${HOST_FICADMIN}/api/themes | jq '.[].id' | while read tid
do
2023-07-25 07:21:11 +00:00
TEAM="TEAM_$(curl -s http://${HOST_FICADMIN}/api/themes/$tid | jq -r .path | sed -r 's/^[^0-9]*([0-9]+)-.*$/\1/')"
curl -s http://${HOST_FICADMIN}/api/themes/$tid/exercices | jq .[].id | while read ex
do
2023-07-25 07:21:11 +00:00
[ -z "${!TEAM}" ] || curl -X POST -d @- -H "X-FIC-Team: ${QA_ADMIN}" http://${HOST_FICQA}/api/qa_my_exercices.json <<EOF
{"id_team": ${!TEAM}, "id_exercice": $ex}
EOF
done
done