2018-06-12 22:11:55 +00:00
|
|
|
#!/bin/sh
|
2018-06-12 22:43:04 +00:00
|
|
|
# Updates the tlds.csv file from IANA and re-generates the native format files
|
|
|
|
#
|
|
|
|
# @author D. Bird <retran@gmail.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# script localization
|
|
|
|
#
|
2018-06-12 22:11:55 +00:00
|
|
|
ME_NAME=$(basename $0)
|
|
|
|
ME_DIR="/$0"; ME_DIR=${ME_DIR%/*}; ME_DIR=${ME_DIR:-.}; ME_DIR=${ME_DIR#/}/; ME_DIR=$(cd "$ME_DIR"; pwd)
|
|
|
|
HELPER_DIR=$ME_DIR/helpers
|
|
|
|
|
2018-06-12 22:43:04 +00:00
|
|
|
#
|
2018-06-13 00:13:24 +00:00
|
|
|
# parse options
|
2018-06-12 22:43:04 +00:00
|
|
|
#
|
2018-06-13 00:13:24 +00:00
|
|
|
OPTION_STATUS=0
|
2018-06-12 22:11:55 +00:00
|
|
|
QUIET_MODE=0
|
|
|
|
HELP_MODE=0
|
2018-06-13 00:13:24 +00:00
|
|
|
FORCE_PHP=0
|
|
|
|
SKIP_PHP=0
|
2018-06-12 22:11:55 +00:00
|
|
|
while getopts :?qhua-: arg; do { case $arg in
|
|
|
|
q) QUIET_MODE=1;;
|
|
|
|
h|u|a) HELP_MODE=1;;
|
|
|
|
-) LONG_OPTARG="${OPTARG#*=}"; case $OPTARG in
|
|
|
|
quiet) QUIET_MODE=1;;
|
2018-06-13 00:13:24 +00:00
|
|
|
force-php) FORCE_PHP=1;;
|
|
|
|
skip-php) SKIP_PHP=1;;
|
2018-06-12 22:11:55 +00:00
|
|
|
help|usage|about) HELP_MODE=1;;
|
|
|
|
*) >&2 echo "$ME_NAME: unrecognized long option --$OPTARG"; OPTION_STATUS=2;;
|
|
|
|
esac ;;
|
|
|
|
*) >&2 echo "$ME_NAME: unrecognized option -$OPTARG"; OPTION_STATUS=2;;
|
|
|
|
esac } done
|
|
|
|
shift $((OPTIND-1)) # remove parsed options and args from $@ list
|
|
|
|
[ "$OPTION_STATUS" != "0" ] && { >&2 echo "$ME_NAME: (FATAL) one or more invalid options"; exit $OPTION_STATUS; }
|
|
|
|
[ -z "$@" ] || { >&2 echo "$ME_NAME: (FATAL) one or more unrecognized positional arguments ($@)"; exit 2; }
|
|
|
|
|
2018-06-13 00:13:24 +00:00
|
|
|
#
|
|
|
|
# --skip-php --force-php sanity check
|
|
|
|
#
|
|
|
|
if ( [ "$FORCE_PHP" = "1" ] && [ "$SKIP_PHP" = "1" ] ); then
|
|
|
|
>&2 echo "$ME_NAME: --skip-php cannot be used with --force-php"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2018-06-12 22:43:04 +00:00
|
|
|
#
|
|
|
|
# display welcome message
|
|
|
|
#
|
2018-06-12 22:11:55 +00:00
|
|
|
if ( [ "$QUIET_MODE" != "1" ] || [ "$HELP_MODE" = "1" ] ); then
|
|
|
|
echo "TLD update utility"
|
|
|
|
echo ""
|
|
|
|
echo "Updates the tlds.csv file from IANA and re-generates the native format files."
|
|
|
|
echo ""
|
|
|
|
echo "(c) 2017-2018 Doug Bird, All Rights Reserved."
|
|
|
|
echo "see README.md for licensing and other information"
|
|
|
|
echo "https://github.com/katmore/tld-enum#readme"
|
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
|
2018-06-12 22:43:04 +00:00
|
|
|
#
|
|
|
|
# apply help mode
|
|
|
|
#
|
2018-06-12 22:11:55 +00:00
|
|
|
if [ "$HELP_MODE" = "1" ]; then
|
|
|
|
echo "usage:"
|
2018-06-13 00:13:24 +00:00
|
|
|
echo " $ME_NAME [-h] | [-q][--skip-php]"
|
2018-06-12 22:11:55 +00:00
|
|
|
echo ""
|
|
|
|
echo "options:"
|
|
|
|
echo " -h,--help: Print a help message and exit."
|
2018-06-12 22:43:04 +00:00
|
|
|
echo " -q,--quiet: Print less messages."
|
2018-06-13 00:13:24 +00:00
|
|
|
echo " --force-php: Creating the PHP format file is mandatory."
|
|
|
|
echo " --skip-php: Always skip creating the PHP format file."
|
2018-06-12 22:11:55 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2018-06-12 22:43:04 +00:00
|
|
|
#
|
|
|
|
# enforce dependencies
|
|
|
|
#
|
2018-06-12 22:11:55 +00:00
|
|
|
DEPENDENCY_STATUS=0
|
2018-06-13 00:13:24 +00:00
|
|
|
node -v > /dev/null 2>&1 || {
|
|
|
|
>&2 echo "$ME_NAME: failed dependency check for 'node', command is missing or inaccessible"
|
|
|
|
DEPENDENCY_STATUS=1
|
|
|
|
}
|
|
|
|
if [ "$SKIP_PHP" != "1" ]; then
|
|
|
|
php -v > /dev/null 2>&1 || {
|
|
|
|
if [ "$FORCE_PHP" = "1" ]; then
|
|
|
|
>&2 echo "$ME_NAME: failed dependency check for 'php', command is missing or inaccessible"
|
|
|
|
DEPENDENCY_STATUS=1
|
|
|
|
else
|
|
|
|
SKIP_PHP=1
|
|
|
|
>&2 echo "$ME_NAME: (NOTICE) skipping PHP format generation, 'php' command is missing or inaccessible"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
fi
|
2018-06-12 22:11:55 +00:00
|
|
|
if [ "$DEPENDENCY_STATUS" != "0" ]; then
|
2018-06-13 00:13:24 +00:00
|
|
|
>&2 echo "$ME_NAME: (FATAL) one or more required dependency checks failed"
|
2018-06-12 22:11:55 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-06-12 22:43:04 +00:00
|
|
|
#
|
|
|
|
# helper execution wrapper function
|
|
|
|
#
|
|
|
|
helper() { helper_file=$1; helper_label=$2
|
|
|
|
|
|
|
|
if [ "$QUIET_MODE" = "1" ]; then
|
|
|
|
cmd_output=$("$HELPER_DIR/$helper_file" 2>&1)
|
|
|
|
cmd_status=$?
|
|
|
|
[ "$cmd_status" != "0" ] && [ -n "$cmd_output" ] && >&2 printf "$cmd_output\n"
|
|
|
|
else
|
2018-06-13 01:46:39 +00:00
|
|
|
printf "generate new $helper_label: started\n\n"
|
2018-06-12 22:43:04 +00:00
|
|
|
"$HELPER_DIR/$helper_file" -q
|
|
|
|
cmd_status=$?
|
|
|
|
[ "$cmd_status" = "0" ] && printf "\ngenerate new $helper_label: success\n"
|
|
|
|
fi
|
|
|
|
if [ "$cmd_status" != "0" ]; then
|
|
|
|
>&2 echo "$ME_NAME: (FATAL) helper for $helper_label failed ($helper_file exit status $cmd_status)"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-06-12 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2018-06-12 22:43:04 +00:00
|
|
|
#
|
|
|
|
# execute the helpers
|
|
|
|
#
|
2018-06-13 01:46:39 +00:00
|
|
|
helper generate-tlds-csv.js "tlds.csv CSV format file"
|
|
|
|
helper generate-js-tld-enum.js "JavaScript format files"
|
|
|
|
helper generate-json-tld-enum.js "JSON format files"
|
2018-06-13 00:13:24 +00:00
|
|
|
if [ "$SKIP_PHP" != "1" ]; then
|
2018-06-13 01:46:39 +00:00
|
|
|
helper generate-php-tld-enum.php "PHP format files"
|
2018-06-13 00:13:24 +00:00
|
|
|
else
|
2018-06-13 01:39:58 +00:00
|
|
|
[ "$QUIET_MODE" = "0" ] && echo "$ME_NAME: (NOTICE) skipped PHP format files"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$QUIET_MODE" = "0" ]; then
|
2018-06-13 01:46:39 +00:00
|
|
|
echo "format file updates were successful"
|
2018-06-13 00:13:24 +00:00
|
|
|
fi
|
2018-06-12 22:43:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|