-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrun-examples.sh
executable file
·121 lines (107 loc) · 2.88 KB
/
run-examples.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/bin/bash
service_url="https://analytics.babelstreet.com/rest/v1"
retcode=0
errors=( "Exception" "processingFailure" "badRequest" )
#------------ Start Functions --------------------------
#Gets called when the user doesn't provide any args
function usage {
echo -e "\n${0} -a API_KEY -f [FILENAME] -u [ALT_URL]"
echo " API_KEY - Babel Street Analytics API key (required)"
echo " FILENAME - Shell script file (optional)"
echo " ALT_URL - Alternate URL (optional)"
exit 1
}
# strip the trailing slash off of the alt_url if necessary
function cleanURL() {
if [ ! -z "${ALT_URL}" ]; then
case ${ALT_URL} in
*/) ALT_URL=${ALT_URL::-1}
echo "Slash detected"
;;
esac
service_url=${ALT_URL}
fi
}
function checkAPIKey() {
output_file=check_key_out.log
http_status_code=$(curl -s -o "${output_file}" -w "%{http_code}" -H "X-BabelStreetAPI-Key: ${API_KEY}" "${service_url}/ping")
if [ "${http_status_code}" = "403" ]; then
echo -e "\nInvalid Analytics API key. Output is:\n"
cat "${output_file}"
rm "${output_file}"
exit 1
else
rm "${output_file}"
fi
}
function validateURL() {
output_file=validate_url_out.log
http_status_code=$(curl -s -o "${output_file}" -w "%{http_code}" -H "X-BabelStreetAPI-Key: ${API_KEY}" "${service_url}/ping")
if [ "${http_status_code}" != "200" ]; then
echo -e "\n${service_url} server not responding. Output is:\n"
cat "${output_file}"
rm "${output_file}"
exit 1
else
rm "${output_file}"
fi
}
function runExample() {
echo -e "\n---------- ${1} start -------------"
result=""
script="$(sed s/your_api_key/${API_KEY}/ < ./${1})" #replacing your_api_key with actual key
if [ ! -z ${ALT_URL} ]; then
script=$(echo "${script}" | sed "s#https://analytics.babelstreet.com/rest/v1#${service_url}#") #replacing api url with alt URL if provided
fi
script=$(echo "${script}" | sed 's~\\$~~g' )
echo $script #curl -x etc etc
result="$(echo ${script} | bash 2>&1)" #run api operation
echo "${result}"
echo -e "\n---------- ${1} end -------------"
for err in "${errors[@]}"; do
if [[ ${result} == *"${err}"* ]]; then
retcode=1
fi
done
}
#------------ End Functions ----------------------------
#Gets API_KEY, FILENAME
while getopts ":a:f:u:" arg; do
case "${arg}" in
a)
API_KEY=${OPTARG}
;;
f)
FILENAME=${OPTARG}
;;
u)
ALT_URL=${OPTARG}
echo "Using alternate URL: ${ALT_URL}"
;;
:)
echo "Option -${OPTARG} requires an argument"
usage
;;
esac
done
if [ -z ${API_KEY} ]; then
echo "-a API_KEY required"
usage
fi
cleanURL
validateURL
#Run the examples
if [ ! -z ${API_KEY} ]; then
checkAPIKey
pushd examples
if [ ! -z ${FILENAME} ]; then
runExample ${FILENAME}
else
for file in *.curl; do
runExample ${file}
done
fi
else
HELP
fi
exit ${retcode}