2017-07-14 21:20:20 +02:00
|
|
|
#!/usr/bin/env zsh
|
2020-02-14 16:37:44 +01:00
|
|
|
# brethil, brutally copied from https://github.com/robbyrussell/oh-my-zsh/blob/master/tools/check_for_upgrade.sh
|
2020-12-08 14:47:55 +01:00
|
|
|
# This also runs antibody update"
|
|
|
|
# First version: 14 July 2017
|
|
|
|
# Rebased on upstream: 08 December 2020
|
2017-07-14 21:20:20 +02:00
|
|
|
|
2021-04-12 09:58:36 +02:00
|
|
|
|
|
|
|
local DOTFILES_UPDATEFILE=${DOTFILES}/.dotfiles-update
|
2020-12-08 14:47:55 +01:00
|
|
|
# Migrate .dotfiles-update file to $DOTFILES
|
2021-04-12 09:58:36 +02:00
|
|
|
if [[ -f ~/.dotfiles-update && ! -f "${DOTFILES_UPDATEFILE}" ]]; then
|
|
|
|
mv ~/.dotfiles-update "${DOTFILES_UPDATEFILE}"
|
2020-12-08 14:47:55 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Cancel update if:
|
|
|
|
# - the automatic update is disabled.
|
|
|
|
# - git is unavailable on the system.
|
2024-01-03 15:44:15 +01:00
|
|
|
if [[ -n $DISABLE_DOTFILES_AUTOUPDATE ]] || ! command -v git &>/dev/null; then
|
2020-12-08 14:47:55 +01:00
|
|
|
return
|
|
|
|
fi
|
2017-07-14 21:20:20 +02:00
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
|
|
|
|
function current_epoch() {
|
|
|
|
zmodload zsh/datetime
|
|
|
|
echo $(( EPOCHSECONDS / 60 / 60 / 24 ))
|
2017-07-14 21:20:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function _update_dotfiles_update() {
|
2021-04-12 09:58:57 +02:00
|
|
|
echo "LAST_EPOCH=$(current_epoch)" >! "${DOTFILES_UPDATEFILE}"
|
2017-07-14 21:20:20 +02:00
|
|
|
}
|
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
function update_dotfiles() {
|
2020-02-14 16:37:44 +01:00
|
|
|
(cd $DOTFILES; git pull -q --rebase && echo "Succesfully upgraded dotfiles" || echo "Could not upgrade dotfiles.")
|
2024-04-22 09:50:05 +02:00
|
|
|
(cd $DOTFILES/antidote && git pull --rebase || echo "Could not upgrade antidote")
|
2021-04-12 09:58:57 +02:00
|
|
|
vim -c 'PlugUpdate|PlugClean|qa!'
|
2020-02-14 16:37:45 +01:00
|
|
|
# update the zsh file
|
|
|
|
_update_dotfiles_update
|
2017-07-14 21:20:20 +02:00
|
|
|
}
|
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
() {
|
2022-02-16 10:33:01 +01:00
|
|
|
if [[ -n $DOTFILES_FORCEUPDATE ]]; then
|
|
|
|
update_dotfiles;
|
|
|
|
return;
|
|
|
|
fi
|
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
local epoch_target mtime option LAST_EPOCH
|
2017-07-14 21:20:20 +02:00
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
# Remove lock directory if older than a day
|
|
|
|
zmodload zsh/datetime
|
|
|
|
zmodload -F zsh/stat b:zstat
|
|
|
|
if mtime=$(zstat +mtime "$DOTFILES/update.lock" 2>/dev/null); then
|
|
|
|
if (( (mtime + 3600 * 24) < EPOCHSECONDS )); then
|
2023-09-14 22:38:57 +02:00
|
|
|
command rm -f "$DOTFILES/update.lock"
|
2020-12-08 14:47:55 +01:00
|
|
|
fi
|
|
|
|
fi
|
2020-02-27 18:34:50 +01:00
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
# Check for lock directory
|
|
|
|
if ! command mkdir "$DOTFILES/update.lock" 2>/dev/null; then
|
|
|
|
return
|
|
|
|
fi
|
2017-07-14 21:20:20 +02:00
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
# Remove lock directory on exit. `return 1` is important for when trapping a SIGINT:
|
|
|
|
# The return status from the function is handled specially. If it is zero, the signal is
|
|
|
|
# assumed to have been handled, and execution continues normally. Otherwise, the shell
|
|
|
|
# will behave as interrupted except that the return status of the trap is retained.
|
|
|
|
trap "
|
2022-11-26 00:48:21 +01:00
|
|
|
unset -f current_epoch _update_dotfiles_update update_dotfiles &>/dev/null
|
|
|
|
command rmdir '$DOTFILES/update.lock' &>/dev/null
|
2020-12-08 14:47:55 +01:00
|
|
|
return 1
|
|
|
|
" EXIT INT QUIT
|
2017-07-14 21:20:20 +02:00
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
# Create or update .zsh-update file if missing or malformed
|
2021-04-12 09:58:36 +02:00
|
|
|
if ! source "${DOTFILES_UPDATEFILE}" 2>/dev/null || [[ -z "$LAST_EPOCH" ]]; then
|
2017-07-14 21:20:20 +02:00
|
|
|
_update_dotfiles_update
|
2020-12-08 14:47:55 +01:00
|
|
|
return
|
2017-07-14 21:20:20 +02:00
|
|
|
fi
|
|
|
|
|
2020-12-08 14:47:55 +01:00
|
|
|
# Number of days before trying to update again
|
|
|
|
epoch_target=${UPDATE_DOTFILES_DAYS:-5}
|
|
|
|
# Test if enough time has passed until the next update
|
|
|
|
if (( ( $(current_epoch) - $LAST_EPOCH ) < $epoch_target )); then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Ask for confirmation before updating unless disabled
|
|
|
|
if [[ "$DISABLE_UPDATE_PROMPT" = true ]]; then
|
|
|
|
update_dotfiles
|
|
|
|
else
|
|
|
|
echo -n "[brethil-dotfiles] Would you like to update? [Y/n] "
|
|
|
|
read -r -k 1 option
|
|
|
|
case "$option" in
|
|
|
|
[yY$'\n']) update_dotfiles ;;
|
|
|
|
[nN]) _update_dotfiles_update ;;
|
2022-11-26 00:48:21 +01:00
|
|
|
*) echo -n "[brethil dotfiles] Skipping. Update using \`dotfiles_selfupdate\`" && echo ;;
|
2020-12-08 14:47:55 +01:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
2022-11-26 00:48:21 +01:00
|
|
|
unset -f current_epoch update_dotfiles _update_dotfiles_update
|