2021-02-15 01:03:38 -05:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
PATH=$PATH:/usr/local/bin
|
|
|
|
set -e
|
|
|
|
|
|
|
|
auth_usr=$(head -1 $1)
|
2022-12-30 09:25:21 -05:00
|
|
|
auth_secret=$(tail -1 $1)
|
2021-02-15 01:03:38 -05:00
|
|
|
|
2022-07-21 11:17:53 -04:00
|
|
|
if [ $common_name = $auth_usr ]; then
|
2022-12-30 09:25:21 -05:00
|
|
|
curl -s --fail --data-raw 'username='${auth_usr} --data-raw 'secret='${auth_secret} localhost:8080/api/auth/check
|
2021-02-15 01:03:38 -05:00
|
|
|
else
|
2022-12-30 09:25:21 -05:00
|
|
|
echo "$(date) Authorization for user $common_name failed"
|
2021-02-15 01:03:38 -05:00
|
|
|
exit 1
|
2022-07-21 11:17:53 -04:00
|
|
|
fi
|