summaryrefslogtreecommitdiffstats
path: root/scripts/wm-request
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/wm-request')
-rwxr-xr-xscripts/wm-request22
1 files changed, 9 insertions, 13 deletions
diff --git a/scripts/wm-request b/scripts/wm-request
index c98e748..c8ab188 100755
--- a/scripts/wm-request
+++ b/scripts/wm-request
@@ -13,7 +13,7 @@ then
exit 1
fi
-for i in uuidgen curl
+for i in uuidgen afb-client-demo
do
which $i 2>/dev/null 1>&2 || { echo "Program $i is missing" >&2; exit 1; }
done
@@ -41,17 +41,6 @@ fi
verb=$1
shift
-args=""
-for i in "$@"
-do
- args="$i"
-done
-
-if [ "$args" ]
-then
- args="?$args"
-fi
-
UUIDFILE=/tmp/wm-request-uuid
if ! [ -f $UUIDFILE ]
then
@@ -59,6 +48,13 @@ then
fi
UUID="`cat $UUIDFILE`"
-curl -H "x-afb-uuid: $UUID" -s http://localhost:1234/api/winman/${verb}${args} | json_pretty
+args=
+if [ "$1" ]
+then
+ args='{"drawing_name":"'"$1"'"}'
+ shift
+fi
+
+afb-client-demo -H ws://localhost:1700/api\?token=wm\&uuid=$UUID winman $verb $args
# vim:set ft=sh: