]> Sergey Matveev's repositories - zsh-autoenv.git/blob - autoenv.zsh
Encapsulate the file name in the hash pair for stricter matching
[zsh-autoenv.git] / autoenv.zsh
1 # Initially based on
2 # https://github.com/joshuaclayton/dotfiles/blob/master/zsh_profile.d/autoenv.zsh
3
4 export AUTOENV_ENV_FILENAME=$HOME/.env_auth
5
6 # Name of file to look for when entering directories.
7 : ${AUTOENV_FILE_ENTER:=.env}
8
9 # Name of file to look for when leaving directories.
10 # Requires AUTOENV_HANDLE_LEAVE=1.
11 : ${AUTOENV_FILE_LEAVE:=.env.leave}
12
13 # Look for .env in parent dirs?
14 : ${AUTOENV_LOOK_UPWARDS:=1}
15
16 # Handle leave events when changing away from a subtree, where an "enter"
17 # event was handled?
18 : ${AUTOENV_HANDLE_LEAVE:=1}
19
20 # Enable debugging. Multiple levels are supported (max 2).
21 : ${AUTOENV_DEBUG:=0}
22
23 # Public helper functions, which can be used from your .env files:
24 #
25 # Source the next .env file from parent directories.
26 # This is useful if you want to use a base .env file for a directory subtree.
27 autoenv_source_parent() {
28   local parent_env_file=$(_autoenv_get_file_upwards $PWD)
29
30   if [[ -n $parent_env_file ]] \
31     && _autoenv_check_authorized_env_file $parent_env_file; then
32     _autoenv_debug "Calling autoenv_source_parent: parent_env_file:$parent_env_file"
33
34     local parent_env_dir=${parent_env_file:A:h}
35
36     _autoenv_stack_entered_add $parent_env_file
37
38     _autoenv_source $parent_env_file enter $parent_env_dir
39   fi
40 }
41
42 # Internal functions. {{{
43 # Internal: stack of entered (and handled) directories. {{{
44 _autoenv_stack_entered=()
45 typeset -A _autoenv_stack_entered_mtime
46 _autoenv_stack_entered_mtime=()
47
48 # Add an entry to the stack, and remember its mtime.
49 _autoenv_stack_entered_add() {
50   local env_file=$1
51
52   _autoenv_debug "[stack] adding: $env_file" 2
53
54   # Remove any existing entry.
55   _autoenv_stack_entered_remove $env_file
56
57   # Append it to the stack, and remember its mtime.
58   _autoenv_stack_entered+=($env_file)
59   _autoenv_stack_entered_mtime[$env_file]=$(_autoenv_get_file_mtime $env_file)
60 }
61
62 _autoenv_get_file_mtime() {
63   if [[ -f $1 ]]; then
64     zstat +mtime $1
65   else
66     echo 0
67   fi
68 }
69
70 # Remove an entry from the stack.
71 _autoenv_stack_entered_remove() {
72   local env_file=$1
73   _autoenv_debug "[stack] removing: $env_file" 2
74   _autoenv_stack_entered[$_autoenv_stack_entered[(i)$env_file]]=()
75   _autoenv_stack_entered_mtime[$env_file]=
76 }
77
78 # Is the given entry already in the stack?
79 _autoenv_stack_entered_contains() {
80   local env_file=$1
81   if (( ${+_autoenv_stack_entered[(r)${env_file}]} )); then
82     # Entry is in stack.
83     if [[ $_autoenv_stack_entered_mtime[$env_file] == $(_autoenv_get_file_mtime $env_file) ]]; then
84       # Entry has the expected mtime.
85       return
86     fi
87   fi
88   return 1
89 }
90 # }}}
91
92 # Internal function for debug output. {{{
93 _autoenv_debug() {
94   local msg=$1
95   local level=${2:-1}
96   if [[ $AUTOENV_DEBUG -lt $level ]]; then
97     return
98   fi
99   # Load zsh color support.
100   if [[ -z $colors ]]; then
101     autoload colors
102     colors
103   fi
104   # Build $indent prefix.
105   local indent=
106   if [[ $_autoenv_debug_indent -gt 0 ]]; then
107     for i in {1..${_autoenv_debug_indent}}; do
108       indent="  $indent"
109     done
110   fi
111
112   # Split $msg by \n (not newline).
113   lines=(${(ps:\\n:)msg})
114   for line in $lines; do
115     echo -n "${fg_bold[blue]}[autoenv]${fg_no_bold[default]} " >&2
116     echo ${indent}${line} >&2
117   done
118 }
119 # }}}
120
121 # Load zstat module, but only its builtin `zstat`.
122 zmodload -F zsh/stat b:zstat
123
124
125 # Generate hash pair for a given file ($1).
126 # A fixed hash value can be given as 2nd arg, but is used with tests only.
127 _autoenv_hash_pair() {
128   local env_file=${1:A}
129   local env_shasum
130   if [[ -n $2 ]]; then
131     env_shasum=$2
132   else
133     if ! [[ -e $env_file ]]; then
134       echo "Missing file argument for _autoenv_hash_pair!" >&2
135       return 1
136     fi
137     env_shasum=$(shasum $env_file | cut -d' ' -f1)
138   fi
139   echo ":${env_file}:${env_shasum}:1"
140 }
141
142 _autoenv_authorized_env_file() {
143   local env_file=$1
144   local pair=$(_autoenv_hash_pair $env_file)
145   test -f $AUTOENV_ENV_FILENAME \
146     && \grep -qF $pair $AUTOENV_ENV_FILENAME
147 }
148
149 _autoenv_authorize() {
150   local env_file=${1:A}
151   _autoenv_deauthorize $env_file
152   _autoenv_hash_pair $env_file >> $AUTOENV_ENV_FILENAME
153 }
154
155 _autoenv_deauthorize() {
156   local env_file=${1:A}
157   if [[ -s $AUTOENV_ENV_FILENAME ]]; then
158     echo "$(\grep -vF :${env_file}: $AUTOENV_ENV_FILENAME)" > $AUTOENV_ENV_FILENAME
159   fi
160 }
161
162 # This function can be mocked in tests
163 _autoenv_ask_for_yes() {
164   local answer
165   read answer
166   if [[ $answer == "yes" ]]; then
167     return 0
168   else
169     return 1
170   fi
171 }
172
173 # Args: 1: absolute path to env file (resolved symlinks).
174 _autoenv_check_authorized_env_file() {
175   if ! [[ -f $1 ]]; then
176     return 1
177   fi
178   if ! _autoenv_authorized_env_file $1; then
179     echo "Attempting to load unauthorized env file!"
180     command ls -l $1
181     echo ""
182     echo "**********************************************"
183     echo ""
184     cat $1
185     echo ""
186     echo "**********************************************"
187     echo ""
188     echo -n "Would you like to authorize it? (type 'yes') "
189
190     if ! _autoenv_ask_for_yes; then
191       return 1
192     fi
193
194     _autoenv_authorize $1
195   fi
196   return 0
197 }
198
199 # Get directory of this file (absolute, with resolved symlinks).
200 _autoenv_source_dir=${0:A:h}
201
202 _autoenv_source() {
203   local env_file=$1
204   autoenv_event=$2
205   local _autoenv_envfile_dir=${3:-${1:A:h}}
206
207   autoenv_from_dir=$_autoenv_chpwd_prev_dir
208   autoenv_to_dir=$PWD
209
210   # Source varstash library once.
211   if [[ -z "$functions[(I)autostash]" ]]; then
212     source $_autoenv_source_dir/lib/varstash
213     # NOTE: Varstash uses $PWD as default for varstash_dir, we might set it to
214     # ${env_file:h}.
215   fi
216
217   # Change to directory of env file, source it and cd back.
218   local new_dir=$PWD
219   builtin cd -q $_autoenv_envfile_dir
220   _autoenv_debug "== SOURCE: ${bold_color}$env_file${reset_color}\n      PWD: $PWD"
221   (( _autoenv_debug_indent++ ))
222   source $env_file
223   (( _autoenv_debug_indent-- ))
224   _autoenv_debug "== END SOURCE =="
225   builtin cd -q $new_dir
226
227   # Unset vars set for enter/leave scripts.
228   # This should not get done for recursion (via autoenv_source_parent),
229   # and can be useful to have in general after autoenv was used.
230   # unset autoenv_event autoenv_from_dir autoenv_to_dir
231 }
232
233 _autoenv_get_file_upwards() {
234   local look_from=${1:-$PWD}
235   local look_for=${2:-$AUTOENV_FILE_ENTER}
236
237   # Manually look in parent dirs. An extended Zsh glob should use Y1 for
238   # performance reasons, which is only available in zsh-5.0.5-146-g9381bb6.
239   local last
240   local parent_dir="$look_from/.."
241   while true; do
242     parent_dir=${parent_dir:A}
243     if [[ $parent_dir == $last ]]; then
244       break
245     fi
246     parent_file="${parent_dir}/${look_for}"
247
248     if [[ -f $parent_file ]]; then
249       echo $parent_file
250       break
251     fi
252
253     last=$parent_dir
254     parent_dir="${parent_dir}/.."
255   done
256 }
257
258
259 _autoenv_chpwd_prev_dir=$PWD
260 _autoenv_chpwd_handler() {
261   local env_file="$PWD/$AUTOENV_FILE_ENTER"
262
263   _autoenv_debug "Calling chpwd handler: PWD=$PWD"
264
265   # Handle leave event for previously sourced env files.
266   if [[ $AUTOENV_HANDLE_LEAVE == 1 ]] && (( $#_autoenv_stack_entered )); then
267     local prev_file prev_dir
268     for prev_file in ${_autoenv_stack_entered}; do
269       prev_dir=${prev_file:A:h}
270       if ! [[ ${PWD:A}/ == ${prev_dir}/* ]]; then
271         local env_file_leave=$prev_dir/$AUTOENV_FILE_LEAVE
272         if _autoenv_check_authorized_env_file $env_file_leave; then
273           _autoenv_source $env_file_leave leave $prev_dir
274         fi
275         _autoenv_stack_entered_remove $prev_file
276       fi
277     done
278   fi
279
280   if ! [[ -f $env_file ]] && [[ $AUTOENV_LOOK_UPWARDS == 1 ]]; then
281     env_file=$(_autoenv_get_file_upwards $PWD)
282     if [[ -z $env_file ]]; then
283       _autoenv_chpwd_prev_dir=$PWD
284       return
285     fi
286   fi
287
288   # Load the env file only once: check if $env_file is in the stack of entered
289   # directories.
290   if _autoenv_stack_entered_contains $env_file; then
291     _autoenv_debug "Already in stack: $env_file"
292     _autoenv_chpwd_prev_dir=$PWD
293     return
294   fi
295
296   if ! _autoenv_check_authorized_env_file $env_file; then
297     _autoenv_chpwd_prev_dir=$PWD
298     return
299   fi
300
301   _autoenv_stack_entered_add $env_file
302
303   # Source the enter env file.
304   _autoenv_debug "Sourcing from chpwd handler: $env_file"
305   _autoenv_source $env_file enter
306
307   _autoenv_chpwd_prev_dir=$PWD
308
309   (( _autoenv_debug_indent++ ))
310 }
311 # }}}
312
313 autoload -U add-zsh-hook
314 add-zsh-hook chpwd _autoenv_chpwd_handler
315
316 # Look in current directory already.
317 _autoenv_chpwd_handler