forked from npm/npm-registry-couchapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
load-views.sh
executable file
·44 lines (37 loc) · 1.05 KB
/
load-views.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
#!/bin/bash
c=${npm_package_config_couch}
if [ "$c" == "" ]; then
cat >&2 <<-ERR
Please set a valid 'npmjs.org:couch' npm config.
You can put PASSWORD in the setting somewhere to
have it prompt you for a password each time, so
it doesn't get dropped in your config file.
If you have PASSWORD in there, it'll also be read
from the PASSWORD environment variable, so you
can set it in the env and not have to enter it
each time.
ERR
exit 1
fi
case $c in
*PASSWORD*)
if [ "$PASSWORD" == "" ]; then
echo -n "Password: "
read -s PASSWORD
fi
;;
*);;
esac
host="$(node -pe 'require("url").parse(process.argv[1]).host' "$c")"
hostname="$(node -pe 'require("url").parse(process.argv[1]).hostname' "$c")"
ips=($(dig +short "$hostname" | egrep '^[0-9]'))
for ip in "${ips[@]}"; do
ipurl="${c/$hostname/$ip}"
echo $ip
DEPLOY_VERSION=test \
node -pe 'Object.keys(require("./registry/app.js").views).join("\n")' \
| while read view; do
echo "LOADING: $view"
curl -Ik "$ipurl/_design/scratch/_view/$view" -H "host:$host"
done
done