scripts: wm-request uses afb-client-demo
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 12 Sep 2017 09:29:30 +0000 (11:29 +0200)
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 12 Sep 2017 09:29:30 +0000 (11:29 +0200)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
scripts/wm-request

index c98e748..c8ab188 100755 (executable)
@@ -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: