conf2/zsh/.oh-my-zsh/plugins/dotenv/dotenv.plugin.zsh

47 lines
1.3 KiB
Bash
Raw Normal View History

2020-06-11 14:41:32 +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"}
## Functions
2019-01-12 15:47:23 +00:00
source_env() {
2019-10-24 19:09:05 +00:00
if [[ -f $ZSH_DOTENV_FILE ]]; then
2020-06-11 14:41:32 +00:00
if [[ "$ZSH_DOTENV_PROMPT" != false ]]; then
local confirmation dirpath="${PWD:A}"
# make sure there is an allowed file
touch "$ZSH_DOTENV_ALLOWED_LIST"
# 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
echo -n "dotenv: found '$ZSH_DOTENV_FILE' file. Source it? ([Y]es/[n]o/[a]lways) "
read -k 1 confirmation; [[ "$confirmation" != $'\n' ]] && echo
# check input
case "$confirmation" in
[nN]) return ;;
[aA]) echo "$dirpath" >> "$ZSH_DOTENV_ALLOWED_LIST" ;;
*) ;; # interpret anything else as a yes
esac
fi
fi
2019-01-12 15:47:23 +00:00
# test .env syntax
2019-10-24 19:09:05 +00:00
zsh -fn $ZSH_DOTENV_FILE || echo "dotenv: error when sourcing '$ZSH_DOTENV_FILE' file" >&2
2019-01-12 15:47:23 +00:00
2020-06-11 14:41:32 +00:00
setopt localoptions allexport
source $ZSH_DOTENV_FILE
2019-01-12 15:47:23 +00:00
fi
}
autoload -U add-zsh-hook
add-zsh-hook chpwd source_env
source_env