mirror of
https://github.com/opencultureconsulting/orcli.git
synced 2025-03-30 00:00:52 +01:00
import json/jsonl: --rename
This commit is contained in:
parent
090cdbd1d3
commit
4653af8e18
@ -12,6 +12,9 @@ Options:
|
|||||||
specify record path elements in JSON array
|
specify record path elements in JSON array
|
||||||
Default: [ "_" , "_" ]
|
Default: [ "_" , "_" ]
|
||||||
|
|
||||||
|
--rename
|
||||||
|
rename columns after import to remove record path fragments
|
||||||
|
|
||||||
--guessCellValueTypes
|
--guessCellValueTypes
|
||||||
attempt to parse cell text into numbers
|
attempt to parse cell text into numbers
|
||||||
|
|
||||||
@ -54,7 +57,8 @@ Examples:
|
|||||||
orcli import json "https://example.com/file.json"
|
orcli import json "https://example.com/file.json"
|
||||||
orcli import json "file" \
|
orcli import json "file" \
|
||||||
--recordPath '[ "_", "rows", "_" ]' \
|
--recordPath '[ "_", "rows", "_" ]' \
|
||||||
--limit 100 \
|
--rename \
|
||||||
|
--storeEmptyStrings \
|
||||||
--trimStrings \
|
--trimStrings \
|
||||||
--projectName "duplicates" \
|
--projectName "duplicates" \
|
||||||
--projectTags "test,urgent"
|
--projectTags "test,urgent"
|
||||||
|
@ -8,6 +8,9 @@ Usage:
|
|||||||
orcli import jsonl --help | -h
|
orcli import jsonl --help | -h
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
--rename
|
||||||
|
rename columns after import to remove record path fragments
|
||||||
|
|
||||||
--guessCellValueTypes
|
--guessCellValueTypes
|
||||||
attempt to parse cell text into numbers
|
attempt to parse cell text into numbers
|
||||||
|
|
||||||
@ -49,8 +52,8 @@ Examples:
|
|||||||
orcli import jsonl "file1" "file2"
|
orcli import jsonl "file1" "file2"
|
||||||
orcli import jsonl "https://example.com/file.json"
|
orcli import jsonl "https://example.com/file.json"
|
||||||
orcli import jsonl "file" \
|
orcli import jsonl "file" \
|
||||||
--recordPath '[ "_" ]' \
|
--rename \
|
||||||
--limit 100 \
|
--storeEmptyStrings \
|
||||||
--trimStrings \
|
--trimStrings \
|
||||||
--projectName "duplicates" \
|
--projectName "duplicates" \
|
||||||
--projectTags "test,urgent"
|
--projectTags "test,urgent"
|
||||||
|
45
orcli
45
orcli
@ -522,6 +522,11 @@ orcli_import_json_usage() {
|
|||||||
printf " Default: [ \"_\" , \"_\" ]\n"
|
printf " Default: [ \"_\" , \"_\" ]\n"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
|
# :flag.usage
|
||||||
|
printf " %s\n" "--rename"
|
||||||
|
printf " rename columns after import to remove record path fragments\n"
|
||||||
|
echo
|
||||||
|
|
||||||
# :flag.usage
|
# :flag.usage
|
||||||
printf " %s\n" "--guessCellValueTypes"
|
printf " %s\n" "--guessCellValueTypes"
|
||||||
printf " attempt to parse cell text into numbers\n"
|
printf " attempt to parse cell text into numbers\n"
|
||||||
@ -587,7 +592,7 @@ orcli_import_json_usage() {
|
|||||||
printf " orcli import json \"file\"\n"
|
printf " orcli import json \"file\"\n"
|
||||||
printf " orcli import json \"file1\" \"file2\"\n"
|
printf " orcli import json \"file1\" \"file2\"\n"
|
||||||
printf " orcli import json \"https://example.com/file.json\"\n"
|
printf " orcli import json \"https://example.com/file.json\"\n"
|
||||||
printf " orcli import json \"file\" \\\\\n --recordPath '[ \"_\", \"rows\", \"_\" ]' \\\\\n --limit 100 \\\\\n --trimStrings \\\\\n --projectName \"duplicates\" \\\\\n --projectTags \"test,urgent\"\n"
|
printf " orcli import json \"file\" \\\\\n --recordPath '[ \"_\", \"rows\", \"_\" ]' \\\\\n --rename \\\\\n --storeEmptyStrings \\\\\n --trimStrings \\\\\n --projectName \"duplicates\" \\\\\n --projectTags \"test,urgent\"\n"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
fi
|
fi
|
||||||
@ -615,6 +620,11 @@ orcli_import_jsonl_usage() {
|
|||||||
printf "%s\n" "Options:"
|
printf "%s\n" "Options:"
|
||||||
|
|
||||||
# :command.usage_flags
|
# :command.usage_flags
|
||||||
|
# :flag.usage
|
||||||
|
printf " %s\n" "--rename"
|
||||||
|
printf " rename columns after import to remove record path fragments\n"
|
||||||
|
echo
|
||||||
|
|
||||||
# :flag.usage
|
# :flag.usage
|
||||||
printf " %s\n" "--guessCellValueTypes"
|
printf " %s\n" "--guessCellValueTypes"
|
||||||
printf " attempt to parse cell text into numbers\n"
|
printf " attempt to parse cell text into numbers\n"
|
||||||
@ -680,7 +690,7 @@ orcli_import_jsonl_usage() {
|
|||||||
printf " orcli import jsonl \"file\"\n"
|
printf " orcli import jsonl \"file\"\n"
|
||||||
printf " orcli import jsonl \"file1\" \"file2\"\n"
|
printf " orcli import jsonl \"file1\" \"file2\"\n"
|
||||||
printf " orcli import jsonl \"https://example.com/file.json\"\n"
|
printf " orcli import jsonl \"https://example.com/file.json\"\n"
|
||||||
printf " orcli import jsonl \"file\" \\\\\n --recordPath '[ \"_\" ]' \\\\\n --limit 100 \\\\\n --trimStrings \\\\\n --projectName \"duplicates\" \\\\\n --projectTags \"test,urgent\"\n"
|
printf " orcli import jsonl \"file\" \\\\\n --rename \\\\\n --storeEmptyStrings \\\\\n --trimStrings \\\\\n --projectName \"duplicates\" \\\\\n --projectTags \"test,urgent\"\n"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
fi
|
fi
|
||||||
@ -1430,6 +1440,17 @@ function post_import() {
|
|||||||
else
|
else
|
||||||
log "imported ${args[file]}" "${redirect_url}" "name: ${projectname}" "rows: ${rows}"
|
log "imported ${args[file]}" "${redirect_url}" "name: ${projectname}" "rows: ${rows}"
|
||||||
fi
|
fi
|
||||||
|
# json / jsonl --rename
|
||||||
|
if [[ ${args[--rename]} ]]; then
|
||||||
|
csrf="$(get_csrf)"
|
||||||
|
readarray -t columns < <(curl -fs --get --data project="$projectid" "${OPENREFINE_URL}/command/core/get-columns-info" | jq -r '.[].name')
|
||||||
|
for c in "${columns[@]}"; do
|
||||||
|
if ! curl -fs -o /dev/null --data project="$projectid" --data "oldColumnName=${c}" --data "newColumnName=${c##_ - }" "${OPENREFINE_URL}/command/core/rename-column${csrf}"; then
|
||||||
|
error "renaming columns in ${projectname} failed!"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
log "renamed columns in ${projectname}"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# src/lib/send_completions.sh
|
# src/lib/send_completions.sh
|
||||||
@ -1473,7 +1494,7 @@ send_completions() {
|
|||||||
echo $' ;;'
|
echo $' ;;'
|
||||||
echo $''
|
echo $''
|
||||||
echo $' \'import jsonl\'*)'
|
echo $' \'import jsonl\'*)'
|
||||||
echo $' while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_orcli_completions_filter "--guessCellValueTypes --help --includeArchiveFileName --includeFileSources --limit --projectName --projectTags --quiet --storeEmptyStrings --trimStrings -h -q")" -- "$cur" )'
|
echo $' while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_orcli_completions_filter "--guessCellValueTypes --help --includeArchiveFileName --includeFileSources --limit --projectName --projectTags --quiet --rename --storeEmptyStrings --trimStrings -h -q")" -- "$cur" )'
|
||||||
echo $' ;;'
|
echo $' ;;'
|
||||||
echo $''
|
echo $''
|
||||||
echo $' \'completions\'*)'
|
echo $' \'completions\'*)'
|
||||||
@ -1481,7 +1502,7 @@ send_completions() {
|
|||||||
echo $' ;;'
|
echo $' ;;'
|
||||||
echo $''
|
echo $''
|
||||||
echo $' \'import json\'*)'
|
echo $' \'import json\'*)'
|
||||||
echo $' while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_orcli_completions_filter "--guessCellValueTypes --help --includeArchiveFileName --includeFileSources --limit --projectName --projectTags --quiet --recordPath --storeEmptyStrings --trimStrings -h -q")" -- "$cur" )'
|
echo $' while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_orcli_completions_filter "--guessCellValueTypes --help --includeArchiveFileName --includeFileSources --limit --projectName --projectTags --quiet --recordPath --rename --storeEmptyStrings --trimStrings -h -q")" -- "$cur" )'
|
||||||
echo $' ;;'
|
echo $' ;;'
|
||||||
echo $''
|
echo $''
|
||||||
echo $' \'import csv\'*)'
|
echo $' \'import csv\'*)'
|
||||||
@ -3289,6 +3310,14 @@ orcli_import_json_parse_requirements() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
# :flag.case
|
||||||
|
--rename)
|
||||||
|
|
||||||
|
# :flag.case_no_arg
|
||||||
|
args['--rename']=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
# :flag.case
|
# :flag.case
|
||||||
--guessCellValueTypes)
|
--guessCellValueTypes)
|
||||||
|
|
||||||
@ -3436,6 +3465,14 @@ orcli_import_jsonl_parse_requirements() {
|
|||||||
while [[ $# -gt 0 ]]; do
|
while [[ $# -gt 0 ]]; do
|
||||||
key="$1"
|
key="$1"
|
||||||
case "$key" in
|
case "$key" in
|
||||||
|
# :flag.case
|
||||||
|
--rename)
|
||||||
|
|
||||||
|
# :flag.case_no_arg
|
||||||
|
args['--rename']=1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
# :flag.case
|
# :flag.case
|
||||||
--guessCellValueTypes)
|
--guessCellValueTypes)
|
||||||
|
|
||||||
|
@ -205,6 +205,9 @@ commands:
|
|||||||
help: specify record path elements in JSON array
|
help: specify record path elements in JSON array
|
||||||
arg: json
|
arg: json
|
||||||
default: "[ \\\"_\\\" , \\\"_\\\" ]"
|
default: "[ \\\"_\\\" , \\\"_\\\" ]"
|
||||||
|
- &rename
|
||||||
|
long: --rename
|
||||||
|
help: rename columns after import to remove record path fragments
|
||||||
- *guessCellValueTypes
|
- *guessCellValueTypes
|
||||||
- *includeFileSources
|
- *includeFileSources
|
||||||
- *includeArchiveFileName
|
- *includeArchiveFileName
|
||||||
@ -223,7 +226,8 @@ commands:
|
|||||||
- |-
|
- |-
|
||||||
orcli import json "file" \\\\
|
orcli import json "file" \\\\
|
||||||
--recordPath '[ "_", "rows", "_" ]' \\\\
|
--recordPath '[ "_", "rows", "_" ]' \\\\
|
||||||
--limit 100 \\\\
|
--rename \\\\
|
||||||
|
--storeEmptyStrings \\\\
|
||||||
--trimStrings \\\\
|
--trimStrings \\\\
|
||||||
--projectName "duplicates" \\\\
|
--projectName "duplicates" \\\\
|
||||||
--projectTags "test,urgent"
|
--projectTags "test,urgent"
|
||||||
@ -233,6 +237,7 @@ commands:
|
|||||||
args:
|
args:
|
||||||
- *file
|
- *file
|
||||||
flags:
|
flags:
|
||||||
|
- *rename
|
||||||
- *guessCellValueTypes
|
- *guessCellValueTypes
|
||||||
- *includeFileSources
|
- *includeFileSources
|
||||||
- *includeArchiveFileName
|
- *includeArchiveFileName
|
||||||
@ -248,8 +253,8 @@ commands:
|
|||||||
- orcli import jsonl "https://example.com/file.json"
|
- orcli import jsonl "https://example.com/file.json"
|
||||||
- |-
|
- |-
|
||||||
orcli import jsonl "file" \\\\
|
orcli import jsonl "file" \\\\
|
||||||
--recordPath '[ "_" ]' \\\\
|
--rename \\\\
|
||||||
--limit 100 \\\\
|
--storeEmptyStrings \\\\
|
||||||
--trimStrings \\\\
|
--trimStrings \\\\
|
||||||
--projectName "duplicates" \\\\
|
--projectName "duplicates" \\\\
|
||||||
--projectTags "test,urgent"
|
--projectTags "test,urgent"
|
||||||
|
@ -42,4 +42,15 @@ function post_import() {
|
|||||||
else
|
else
|
||||||
log "imported ${args[file]}" "${redirect_url}" "name: ${projectname}" "rows: ${rows}"
|
log "imported ${args[file]}" "${redirect_url}" "name: ${projectname}" "rows: ${rows}"
|
||||||
fi
|
fi
|
||||||
|
# json / jsonl --rename
|
||||||
|
if [[ ${args[--rename]} ]]; then
|
||||||
|
csrf="$(get_csrf)"
|
||||||
|
readarray -t columns < <(curl -fs --get --data project="$projectid" "${OPENREFINE_URL}/command/core/get-columns-info" | jq -r '.[].name')
|
||||||
|
for c in "${columns[@]}"; do
|
||||||
|
if ! curl -fs -o /dev/null --data project="$projectid" --data "oldColumnName=${c}" --data "newColumnName=${c##_ - }" "${OPENREFINE_URL}/command/core/rename-column${csrf}"; then
|
||||||
|
error "renaming columns in ${projectname} failed!"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
log "renamed columns in ${projectname}"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
@ -39,7 +39,7 @@ send_completions() {
|
|||||||
echo $' ;;'
|
echo $' ;;'
|
||||||
echo $''
|
echo $''
|
||||||
echo $' \'import jsonl\'*)'
|
echo $' \'import jsonl\'*)'
|
||||||
echo $' while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_orcli_completions_filter "--guessCellValueTypes --help --includeArchiveFileName --includeFileSources --limit --projectName --projectTags --quiet --storeEmptyStrings --trimStrings -h -q")" -- "$cur" )'
|
echo $' while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_orcli_completions_filter "--guessCellValueTypes --help --includeArchiveFileName --includeFileSources --limit --projectName --projectTags --quiet --rename --storeEmptyStrings --trimStrings -h -q")" -- "$cur" )'
|
||||||
echo $' ;;'
|
echo $' ;;'
|
||||||
echo $''
|
echo $''
|
||||||
echo $' \'completions\'*)'
|
echo $' \'completions\'*)'
|
||||||
@ -47,7 +47,7 @@ send_completions() {
|
|||||||
echo $' ;;'
|
echo $' ;;'
|
||||||
echo $''
|
echo $''
|
||||||
echo $' \'import json\'*)'
|
echo $' \'import json\'*)'
|
||||||
echo $' while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_orcli_completions_filter "--guessCellValueTypes --help --includeArchiveFileName --includeFileSources --limit --projectName --projectTags --quiet --recordPath --storeEmptyStrings --trimStrings -h -q")" -- "$cur" )'
|
echo $' while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_orcli_completions_filter "--guessCellValueTypes --help --includeArchiveFileName --includeFileSources --limit --projectName --projectTags --quiet --recordPath --rename --storeEmptyStrings --trimStrings -h -q")" -- "$cur" )'
|
||||||
echo $' ;;'
|
echo $' ;;'
|
||||||
echo $''
|
echo $''
|
||||||
echo $' \'import csv\'*)'
|
echo $' \'import csv\'*)'
|
||||||
|
21
tests/import-json-rename.sh
Normal file
21
tests/import-json-rename.sh
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
t="import-json-rename"
|
||||||
|
|
||||||
|
# create tmp directory
|
||||||
|
tmpdir="$(mktemp -d)"
|
||||||
|
trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15
|
||||||
|
|
||||||
|
# input
|
||||||
|
cp data/example.json "${tmpdir}/${t}.json"
|
||||||
|
|
||||||
|
# assertion
|
||||||
|
cp data/example.tsv "${tmpdir}/${t}.assert"
|
||||||
|
|
||||||
|
# action
|
||||||
|
cd "${tmpdir}" || exit 1
|
||||||
|
orcli import json "${t}.json" --projectName "${t}" --rename
|
||||||
|
orcli export tsv "${t}" > "${t}.output"
|
||||||
|
|
||||||
|
# test
|
||||||
|
diff -u "${t}.assert" "${t}.output"
|
Loading…
x
Reference in New Issue
Block a user