2020-03-23 11:10:06 +00:00
|
|
|
## Settings
|
|
|
|
|
|
|
|
# Filename of the dotenv file to look for
|
|
|
|
: ${ZSH_DOTENV_FILE:=.env}
|
|
|
|
|
|
|
|
# Path to the file containing allowed paths
|
|
|
|
: ${ZSH_DOTENV_ALLOWED_LIST:="${ZSH_CACHE_DIR:-$ZSH/cache}/dotenv-allowed.list"}
|
2020-07-11 15:34:24 +00:00
|
|
|
: ${ZSH_DOTENV_DISALLOWED_LIST:="${ZSH_CACHE_DIR:-$ZSH/cache}/dotenv-disallowed.list"}
|
2020-03-23 11:10:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Functions
|
|
|
|
|
2016-12-14 16:49:08 +00:00
|
|
|
source_env() {
|
2019-05-19 20:45:27 +00:00
|
|
|
if [[ -f $ZSH_DOTENV_FILE ]]; then
|
2020-03-23 11:10:06 +00:00
|
|
|
if [[ "$ZSH_DOTENV_PROMPT" != false ]]; then
|
|
|
|
local confirmation dirpath="${PWD:A}"
|
|
|
|
|
2020-07-11 15:34:24 +00:00
|
|
|
# make sure there is an (dis-)allowed file
|
2020-03-23 11:10:06 +00:00
|
|
|
touch "$ZSH_DOTENV_ALLOWED_LIST"
|
2020-07-11 15:34:24 +00:00
|
|
|
touch "$ZSH_DOTENV_DISALLOWED_LIST"
|
|
|
|
|
|
|
|
# early return if disallowed
|
|
|
|
if grep -q "$dirpath" "$ZSH_DOTENV_DISALLOWED_LIST" &>/dev/null; then
|
|
|
|
return;
|
|
|
|
fi
|
2020-03-23 11:10:06 +00:00
|
|
|
|
|
|
|
# check if current directory's .env file is allowed or ask for confirmation
|
|
|
|
if ! grep -q "$dirpath" "$ZSH_DOTENV_ALLOWED_LIST" &>/dev/null; then
|
|
|
|
# print same-line prompt and output newline character if necessary
|
2020-07-11 15:34:24 +00:00
|
|
|
echo -n "dotenv: found '$ZSH_DOTENV_FILE' file. Source it? ([Y]es/[n]o/[a]lways/n[e]ver) "
|
2020-03-23 11:10:06 +00:00
|
|
|
read -k 1 confirmation; [[ "$confirmation" != $'\n' ]] && echo
|
|
|
|
|
|
|
|
# check input
|
|
|
|
case "$confirmation" in
|
|
|
|
[nN]) return ;;
|
|
|
|
[aA]) echo "$dirpath" >> "$ZSH_DOTENV_ALLOWED_LIST" ;;
|
2020-07-11 15:34:24 +00:00
|
|
|
[eE]) echo "$dirpath" >> "$ZSH_DOTENV_DISALLOWED_LIST"; return ;;
|
2020-03-23 11:10:06 +00:00
|
|
|
*) ;; # interpret anything else as a yes
|
|
|
|
esac
|
2020-02-13 17:10:59 +00:00
|
|
|
fi
|
2020-02-12 16:51:40 +00:00
|
|
|
fi
|
|
|
|
|
2018-08-07 22:05:34 +00:00
|
|
|
# test .env syntax
|
2019-05-19 20:45:27 +00:00
|
|
|
zsh -fn $ZSH_DOTENV_FILE || echo "dotenv: error when sourcing '$ZSH_DOTENV_FILE' file" >&2
|
2018-08-07 22:05:34 +00:00
|
|
|
|
2020-03-23 11:10:06 +00:00
|
|
|
setopt localoptions allexport
|
|
|
|
source $ZSH_DOTENV_FILE
|
2016-12-14 16:49:08 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
autoload -U add-zsh-hook
|
|
|
|
add-zsh-hook chpwd source_env
|
2018-08-07 21:54:07 +00:00
|
|
|
|
|
|
|
source_env
|