49 lines
901 B
Bash
49 lines
901 B
Bash
#!/bin/bash
|
|
source exprash.sh;
|
|
|
|
redirectStdout 'log';
|
|
|
|
declare -A cats;
|
|
cats[calico]="Calico";
|
|
cats[sphynx]="Sphynx";
|
|
cats[ragdoll]="Ragdoll";
|
|
cats[holland_lop]="Holland Lop";
|
|
cats[scottish_fold]="Scottish Fold";
|
|
cats[orange]="Orange";
|
|
|
|
get '/' && {
|
|
html='<h1>Cats</h1><ul>';
|
|
for key in "${!cats[@]}"; do
|
|
html+="<li><a href=\"cats/${key}\">${cats[$key]}</a></li>";
|
|
done
|
|
html+='</ul>';
|
|
|
|
printf '%s' "$html" | send;
|
|
}
|
|
|
|
get '/cats/:cat' && {
|
|
key=$(param 'cat');
|
|
|
|
if [[ -v "cats[$key]" ]]; then
|
|
if [ "$key" == 'holland_lop' ]; then
|
|
next "That's not a cat!";
|
|
else
|
|
printf '<h1>Your Cat: %s</h1>\n' "${cats[$key]}" | send;
|
|
fi;
|
|
else
|
|
next;
|
|
fi;
|
|
}
|
|
|
|
get '/cats/*' && {
|
|
printf '<h1>Error: Cannot find that cat</h1>\n' | send;
|
|
}
|
|
|
|
getError '/cats/*' && {
|
|
printf '<h1>%s</h1>' "$(errorMessage)" | send;
|
|
}
|
|
|
|
(use || useError) && {
|
|
printf '<h1>404</h1>' | send;
|
|
}
|