]> Sergey Matveev's repositories - zsh-autoenv.git/blob - autoenv.zsh
_dotenv_source: use 'builtin cd' and stored dir instead of 'cd -'
[zsh-autoenv.git] / autoenv.zsh
1 # Initially based on
2 # https://github.com/joshuaclayton/dotfiles/blob/master/zsh_profile.d/autoenv.zsh
3
4 # TODO: move this to DOTENV_*?!
5 export ENV_AUTHORIZATION_FILE=$HOME/.env_auth
6
7 # Name of file to look for when entering directories.
8 : ${DOTENV_FILE_ENTER:=.env}
9
10 # Name of file to look for when leaving directories.
11 # Requires DOTENV_HANDLE_LEAVE=1.
12 : ${DOTENV_FILE_LEAVE:=.env.leave}
13
14 # Look for .env in parent dirs?
15 : ${DOTENV_LOOK_UPWARDS:=0}
16
17 # Handle leave events when changing away from a subtree, where an "enter"
18 # event was handled?
19 : ${DOTENV_HANDLE_LEAVE:=1}
20
21
22 # Internal: stack of entered (and handled) directories.
23 _dotenv_stack_entered=()
24
25
26 _dotenv_hash_pair() {
27   local env_file=$1
28   env_shasum=$(shasum $env_file | cut -d' ' -f1)
29   echo "$env_file:$env_shasum"
30 }
31
32 _dotenv_authorized_env_file() {
33   local env_file=$1
34   local pair=$(_dotenv_hash_pair $env_file)
35   test -f $ENV_AUTHORIZATION_FILE \
36     && \grep -qF $pair $ENV_AUTHORIZATION_FILE
37 }
38
39 _dotenv_authorize() {
40   local env_file=$1
41   _dotenv_deauthorize $env_file
42   _dotenv_hash_pair $env_file >> $ENV_AUTHORIZATION_FILE
43 }
44
45 _dotenv_deauthorize() {
46   local env_file=$1
47   if [[ -f $ENV_AUTHORIZATION_FILE ]]; then
48     echo $(\grep -vF $env_file $ENV_AUTHORIZATION_FILE) > $ENV_AUTHORIZATION_FILE
49   fi
50 }
51
52 # This function can be mocked in tests
53 _dotenv_read_answer() {
54   local answer
55   read -q answer
56   echo $answer
57 }
58
59 _dotenv_check_authorized_env_file() {
60   if ! [[ -f $1 ]]; then
61     return 1
62   fi
63   if ! _dotenv_authorized_env_file $1; then
64     echo "Attempting to load unauthorized env file: $1"
65     echo ""
66     echo "**********************************************"
67     echo ""
68     cat $1
69     echo ""
70     echo "**********************************************"
71     echo ""
72     echo -n "Would you like to authorize it? [y/N] "
73
74     local answer=$(_dotenv_read_answer)
75     echo
76     if [[ $answer != 'y' ]]; then
77       return 1
78     fi
79
80     _dotenv_authorize $1
81   fi
82   return 0
83 }
84
85 _dotenv_source() {
86   local env_file=$1
87   _dotenv_event=$2
88   _dotenv_cwd=$PWD
89
90   builtin cd -q ${env_file:h}
91   source $env_file
92   builtin cd -q $_dotenv_cwd
93
94   unset _dotenv_event _dotenv_cwd
95 }
96
97 _dotenv_chpwd_handler() {
98   local env_file="$PWD/$DOTENV_FILE_ENTER"
99
100   # Handle leave event for previously sourced env files.
101   if [[ $DOTENV_HANDLE_LEAVE == 1 ]] && (( $#_dotenv_stack_entered )); then
102     for prev_dir in ${_dotenv_stack_entered}; do
103       if ! [[ ${PWD}/ == ${prev_dir}/* ]]; then
104         local env_file_leave=$prev_dir/$DOTENV_FILE_LEAVE
105         if _dotenv_check_authorized_env_file $env_file_leave; then
106           _dotenv_source $env_file_leave leave
107         fi
108         # Remove this entry from the stack.
109         _dotenv_stack_entered=(${_dotenv_stack_entered#$prev_dir})
110       fi
111     done
112   fi
113
114   if ! [[ -f $env_file ]] && [[ $DOTENV_LOOK_UPWARDS == 1 ]]; then
115     setopt localoptions extendedglob
116     local m
117     m=((../)#${DOTENV_FILE_ENTER}(N))
118     if (( $#m )); then
119       env_file=${${m[1]}:A}
120     else
121       return
122     fi
123   fi
124
125   if ! _dotenv_check_authorized_env_file $env_file; then
126     return
127   fi
128
129   # Load the env file only once.
130   if (( ${+_dotenv_stack_entered[(r)${env_file:A:h}]} )); then
131     return
132   fi
133
134   _dotenv_stack_entered+=(${env_file:A:h})
135
136   _dotenv_source $env_file enter
137 }
138
139 autoload -U add-zsh-hook
140 add-zsh-hook chpwd _dotenv_chpwd_handler
141
142 # Look in current directory already.
143 _dotenv_chpwd_handler