From df881d560c4c4c85187df2a98127721bcb547a42 Mon Sep 17 00:00:00 2001 From: lukdz <19475662+lukdz@users.noreply.github.com> Date: Tue, 22 Aug 2023 15:23:38 +0200 Subject: [PATCH] refactor pipe script and improve debug mode (#201) * refactor pipe script * fix indents --------- Co-authored-by: lukasz.dzwoniarek --- apps/scripts/pipe | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/apps/scripts/pipe b/apps/scripts/pipe index 58f3ea1..3c48fae 100755 --- a/apps/scripts/pipe +++ b/apps/scripts/pipe @@ -19,11 +19,16 @@ #main function that ends up being called by this client function do_curl() { - curlCommand="curl -u $user -s $verbose -S $opts $server$uri" if [ "$pipe_debug" ]; then - echo "$curlCommand" + set -x fi - eval "$curlCommand" + curl \ + --user $user \ + --show-error --silent \ + $verbose \ + --form "$cmd" \ + $opts \ + $server$uri } #function to generate transform arg1=val1,arg2=val2 into {"arg1":"val1","arg2":"val2"} @@ -66,8 +71,8 @@ if [ -z "$uri" ]; then uri=/apps/dx/scripts/exec.$ext fi if [ -z "$verbose" ]; then - verbose=" --fail " - pipe_debug=1 + verbose="--fail" + pipe_debug=true fi while [ $# -gt 0 ]; do @@ -89,13 +94,13 @@ while [ $# -gt 0 ]; do h) show_help; exit ;; s) server=$2; shift ;; u) user=$2; shift ;; - v) verbose=' -v '; shift ;; - d) opts="-F dryRun=true $opts";; - b) opts="-F bindings='`generate_json "$2"`' $opts"; shift ;; + v) verbose="--verbose"; shift ;; + d) opts="--form dryRun=true $opts";; + b) opts="--form bindings='$(generate_json "$2")' $opts"; shift ;; c) uri=/apps/dx/scripts/exec.csv ;; - n) opts="-F size=$2 $opts"; shift ;; - f) opts="-F pipes_inputFile=@$2"; shift ;; - o) opts="-F writer=$2 $opts"; shift ;; + n) opts="--form size=$2 $opts"; shift ;; + f) opts="--form pipes_inputFile=@$2"; shift ;; + o) opts="--form writer=$2 $opts"; shift ;; *) userfail "Unrecognized option." ;; esac done @@ -107,9 +112,9 @@ while [ $# -gt 0 ]; do done if [ -f "$cmd" ]; then - opts="-F pipe_cmdfile=@$cmd $opts" - do_curl + cmd="pipe_cmdfile=@$cmd" else - opts="-F pipe_cmd=\"$cmd\" $opts" - do_curl + cmd="pipe_cmd=$cmd" fi + +do_curl