mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
Extract options table transform to transform_options_table function
This commit is contained in:
parent
5e74beaa05
commit
566fdfa657
53
psu
53
psu
@ -123,28 +123,9 @@ main() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# TODO: move this stuff in a function
|
transform_options_table
|
||||||
# Set the OPTIONS variable
|
# Decode $OPTIONS_ASSOC associative array
|
||||||
# and the OPTIONS_ASSOC variable
|
eval $OPTIONS_ASSOC_ENCODED
|
||||||
declare -A OPTIONS_ASSOC
|
|
||||||
local option_table
|
|
||||||
local option_key
|
|
||||||
local flag_text
|
|
||||||
local option_text
|
|
||||||
local option_description
|
|
||||||
for option in "${OPTIONS_TABLE[@]}"; do
|
|
||||||
IFS=';' read -ra option_table <<< "$option"
|
|
||||||
option_key="${option_table[0]}"
|
|
||||||
flag_text="${option_table[1]}"
|
|
||||||
option_text="${option_table[2]}"
|
|
||||||
option_description="${option_table[3]}"
|
|
||||||
OPTIONS_ASSOC["$option_key"]="$flag_text;$option_text;$option_description"
|
|
||||||
if [ -n "$OPTIONS" ]; then
|
|
||||||
OPTIONS+=" $option_key"
|
|
||||||
else
|
|
||||||
OPTIONS="$option_key"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
export PORTAINER_AUTH_TOKEN
|
export PORTAINER_AUTH_TOKEN
|
||||||
set_globals "$@"
|
set_globals "$@"
|
||||||
@ -1288,6 +1269,34 @@ lint() {
|
|||||||
fi || true
|
fi || true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Set the OPTIONS variable who's a list of all psu options
|
||||||
|
# Set the OPTIONS_ASSOC variable who's an associative array of all psu options
|
||||||
|
transform_options_table() {
|
||||||
|
declare -A OPTIONS_ASSOC
|
||||||
|
local option_table
|
||||||
|
local option_key
|
||||||
|
local flag_text
|
||||||
|
local option_text
|
||||||
|
local option_description
|
||||||
|
for option in "${OPTIONS_TABLE[@]}"; do
|
||||||
|
IFS=';' read -ra option_table <<< "$option"
|
||||||
|
option_key="${option_table[0]}"
|
||||||
|
flag_text="${option_table[1]}"
|
||||||
|
option_text="${option_table[2]}"
|
||||||
|
option_description="${option_table[3]}"
|
||||||
|
OPTIONS_ASSOC["$option_key"]="$flag_text;$option_text;$option_description"
|
||||||
|
if [ -n "$OPTIONS" ]; then
|
||||||
|
OPTIONS+=" $option_key"
|
||||||
|
else
|
||||||
|
OPTIONS="$option_key"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Bash array variable can't be exported
|
||||||
|
# See: https://stackoverflow.com/questions/5564418/exporting-an-array-in-bash-script
|
||||||
|
OPTIONS_ASSOC_ENCODED=$(declare -p OPTIONS_ASSOC)
|
||||||
|
}
|
||||||
|
|
||||||
display_options_message() {
|
display_options_message() {
|
||||||
echo "Options:"
|
echo "Options:"
|
||||||
local table
|
local table
|
||||||
|
Loading…
Reference in New Issue
Block a user