orcli/src/transform_command.sh

50 lines
1.7 KiB
Bash
Raw Normal View History

2022-11-03 21:07:08 +00:00
# shellcheck shell=bash disable=SC2154
# check if stdin is present if selected
if [[ ${args[file]} == '-' ]] || [[ ${args[file]} == '"-"' ]]; then
if ! read -u 0 -t 0; then
orcli_transform_usage
exit 1
fi
fi
2022-11-06 21:39:40 +00:00
2022-11-03 21:07:08 +00:00
# catch args, convert the space delimited string to an array
files=()
eval "files=(${args[file]})"
2022-11-06 21:39:40 +00:00
2022-11-03 21:07:08 +00:00
# create tmp directory
tmpdir="$(mktemp -d)"
trap 'rm -rf "$tmpdir"' 0 2 3 15
2022-11-06 21:39:40 +00:00
2022-11-03 21:07:08 +00:00
# download files if name starts with http:// or https://
for i in "${!files[@]}"; do
if [[ ${files[$i]} == "http://"* ]] || [[ ${files[$i]} == "https://"* ]]; then
if ! curl -fs --location "${files[$i]}" >"${tmpdir}/${files[$i]//[^A-Za-z0-9._-]/_}"; then
error "download of ${files[$i]} failed!"
fi
files[$i]="${tmpdir}/${files[$i]//[^A-Za-z0-9._-]/_}"
fi
done
2022-11-06 21:39:40 +00:00
# support multiple files
for i in "${!files[@]}"; do
# read each operation into one line
mapfile -t jsonlines < <(jq -c '.[]' "${files[$i]}")
for line in "${jsonlines[@]}"; do
# parse operation into curl options
declare -A data="($(echo "$line" | jq -r 'to_entries | map("[\(.key)]=" + @sh "\(.value|tostring)") | .[]'))"
op="${data[op]#core/}"
unset "data[op]"
unset "data[description]"
mapfile -t curloptions < <(for K in "${!data[@]}"; do
echo "--data-urlencode"
echo "$K={data[$K]}"
done)
# get project id and csrf token; post data to it's individual endpoint
if ! curl -fs --data "project=$(get_id "${args[project]}")" "${curloptions[@]}" "${OPENREFINE_URL}/command/core/${op}$(get_csrf)"; then
error "applying ${op} from ${files[$i]} failed!"
fi
unset data
done
done