From 2f864ac5289e8426f1d0c91c264a6a274047245b Mon Sep 17 00:00:00 2001 From: Marcus Fritzsch Date: Tue, 12 Sep 2017 11:29:30 +0200 Subject: [PATCH] scripts: wm-request uses afb-client-demo Signed-off-by: Marcus Fritzsch --- scripts/wm-request | 22 +++++++++------------- 1 file 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: -- 2.16.6