X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=bin%2Faxzshctl;h=cd463e3ded886e9f5b4ab08bed5925d00b8e9e22;hb=49af32139e703544157bafcc95ee166be32e5aee;hp=f5b8acab994a7e387cc42ec03eaf118a86b26846;hpb=4fe1a4a69b1f525696be0c2c9df929875d06fa09;p=ax-zsh.git diff --git a/bin/axzshctl b/bin/axzshctl index f5b8aca..cd463e3 100755 --- a/bin/axzshctl +++ b/bin/axzshctl @@ -1,7 +1,7 @@ -#!/bin/zsh +#!/usr/bin/env zsh # # AX-ZSH: Alex' Modular ZSH Configuration -# Copyright (c) 2015-2016 Alexander Barton +# Copyright (c) 2015-2017 Alexander Barton # # Include "ax-common.sh", if available: @@ -12,31 +12,34 @@ for dir ("$HOME/lib" "$HOME/.ax" /usr/local /opt/ax /usr); do done if [[ -z "$ax_common_sourced" ]]; then function ax_msg { - case "$1" in - "1"|"2") echo -n "! "; ;; - *) echo -n "* "; ;; - esac shift echo "$@" } + function ax_error { + ax_msg 2 "$@" >&2 + } fi unset dir ax_common ax_common_sourced function Usage { echo "Usage: $NAME [...]" echo + echo " enable" + echo " Enable AX-ZSH altogether." + echo " disable" + echo " Disable AX-ZSH altogether." + echo echo " enable-plugin [ [...]]" echo " Enable plugin(s)." - echo echo " disable-plugin [ [...]]" echo " Disable plugin(s)." + echo " list-enabled" + echo " List enabled plugins." echo echo " reset-plugins" echo " Reset active plugins to the default set." - echo echo " enable-default-plugins" echo " Enable all default plugins." - echo echo " check-plugins" echo " Detect plugins which are \"useful\" on this system." echo @@ -45,20 +48,55 @@ function Usage { echo echo " upgrade" echo " Upgrade AX-ZSH installation (requires Git)." + echo " update-caches" + echo " Force rebuild of all cache files." echo - exit 2 + exit 0 +} + +function UpdatePluginCache { + [[ -r "$AXZSH/cache" ]] || return 0 + + ax_msg - "Updating plugin cache ..." + rm -rf \ + $AXZSH/cache/zlogin.cache \ + $AXZSH/cache/zlogout.cache \ + $AXZSH/cache/zprofile.cache \ + $AXZSH/cache/zshrc.cache \ + || return 1 + echo "Regenerating cache files ..." + zsh -ilc '' >/dev/null } function NormalizedPluginName { if [[ "$1" =~ "^[[:alnum:]-]+/[[:alnum:]_-]+$" ]]; then - echo "$1" | sed -e 's|/|#|g' + echo "${1:gs/\//#}" elif [[ "$1" =~ "/" ]]; then - basename "$1" + echo "${1:t}" else echo "$1" fi } +function EnableAXZSH { + for f (~/.zlogin ~/.zlogout ~/.zprofile ~/.zshrc); do + ln -sv "$AXZSH/ax.zsh" "$f" \ + || ax_error "Failed to create symbolic link for \"$f\"!" + done +} + +function DisableAXZSH { + for f (~/.zlogin ~/.zlogout ~/.zprofile ~/.zshrc); do + if [ -h "$f" ]; then + rm -v "$f" || ax_msg 2 "Failed to remove \"$f\"!" + elif [ -e "$f" ]; then + ax_error "Error: Not removing \"$f\", it is not a symbolic link!" + else + ax_msg 1 "Warning: \"$f\" already does not exist. Ok." + fi + done +} + function EnablePlugin { local plugin=$(NormalizedPluginName "$1") local dir="$AXZSH/active_plugins" @@ -72,10 +110,20 @@ function EnablePlugin { # GitHub plugin mkdir -p "$AXZSH/repos" if [[ ! -e "$AXZSH/repos/$plugin" ]]; then - ax_msg - "Cloning plugin from GitHub ..." - git clone "https://github.com/$1.git" \ + ax_msg - "Cloning module from GitHub ..." + git clone --depth=1 "https://github.com/$1.git" \ "$AXZSH/repos/$plugin" fi + # Try to enable a theme in this "foreign module", but ignore + # errors: we don't know if this module provides a theme or is + # a "regular" plugin ... + if SetTheme "${plugin#*#}" 2>/dev/null; then + ax_msg 1 "Module \"$1\" was enabled as theme \"${plugin#*#}\"." + # A theme was enabled: So assume that this is a theme + # and don't enable it as plugin. + return 0 + fi + echo "Module \"$1\" will be enabled as plugin ..." fi for dname ( @@ -97,24 +145,46 @@ function EnablePlugin { return $? done - ax_msg 2 "Plugin \"$1\" not found!" + ax_error "Plugin \"$1\" not found!" return 1 } function DisablePlugin { local plugin=$(NormalizedPluginName "$1") local dir="$AXZSH/active_plugins" + local r=-1 - if [[ ! -h "$dir/$plugin" ]]; then - ax_msg 1 "Plugin \"$1\" not active?" - return 1 + # Active theme? + if [[ $(readlink "$AXZSH/active_theme") = "$AXZSH/repos/$plugin/"* ]]; then + rm "$AXZSH/active_theme"; r=$? + fi + + # Active plugin? + if [[ -h "$dir/$plugin" ]]; then + rm "$dir/$plugin"; r=$? + fi + + if [[ $r -eq -1 ]]; then + ax_msg 1 "Plugin \"$1\" not active, nothing to do?" + r=1 + fi + + if [[ "$plugin" = *"#"* ]]; then + # Name matches a cloned repository, try to clean up! + echo "Cleaning up cloned repository ..." + rm -fr "$AXZSH/repos/$plugin" fi - rm -v "$dir/$plugin"; r=$? - [ $r -eq 0 ] && rm -fr "$AXZSH/repos/$plugin" return $r } +function ListEnabledPlugins { + for plugin ($AXZSH/active_plugins/*(N)); do + print ${plugin:t:s/#/\//} + done + return 0 +} + function ResetPlugins { local dir="$AXZSH/active_plugins" local r1=0, r2=0 @@ -145,15 +215,9 @@ function EnableDefaultPlugins { function SetTheme { local link_name="$AXZSH/active_theme" - if [ $# -ne 1 ]; then - echo "Usage: axzsh_set_theme " - return 1 - fi - - rm -f "$link_name" || return 1 - if [ "$1" = "-" ]; then - echo "Theme settings have been reset." + rm -f "$link_name" || return 1 + ax_msg 0 "Theme settings have been reset." return 0 fi @@ -164,20 +228,36 @@ function SetTheme { elif [ -r "$AXZSH/themes/$1.axzshtheme" ]; then theme="$AXZSH/themes/$1.axzshtheme" else - echo "Theme \"$1\" not found!" - return 1 + # Look for theme inside of installed plugins: + for dname ( + "$AXZSH/custom_themes" + "$AXZSH/custom_plugins/"*(N) + "$AXZSH/repos/"*(N) + ); do + if [[ -r "$dname/$1.axzshtheme" ]]; then + theme="$dname/$1.axzshtheme" + break + elif [[ -r "$dname/$1.zsh-theme" ]]; then + theme="$dname/$1.zsh-theme" + break + fi + done + if [[ -z "$theme" ]]; then + ax_error "Theme \"$1\" not found!" + return 1 + fi fi - ln -sv "$theme" "$link_name" || return 1 + ln -fsv "$theme" "$link_name" || return 1 return $? } function UpgradeAXZSH { if [[ $+commands[git] -eq 0 ]]; then - ax_msg 2 "The git(1) command is not available!" + ax_error "The git(1) command is not available!" return 1 fi if [[ ! -d "$AXZSH/.git" ]]; then - ax_msg 2 "AX-ZSH seems not to be installed using Git. Can't upgrade!" + ax_error "AX-ZSH seems not to be installed using Git. Can't upgrade!" return 1 fi @@ -187,20 +267,20 @@ function UpgradeAXZSH { function UpgradeForeignPlugins { if [[ $+commands[git] -eq 0 ]]; then - ax_msg 2 "The git(1) command is not available!" + ax_error "The git(1) command is not available!" return 1 fi for dir ($AXZSH/repos/*(N)); do - name=$(basename "$dir" | sed -e 's|#|/|g') + name=${dir:t:s/#/\//} if [ -d "$dir/.git" ]; then ax_msg - "Upgrading \"$name\" [git] ..." ( cd "$dir" - git pull --ff-only || ax_msg 2 "Pull failed!" + git pull --ff-only || ax_error "Pull failed!" ) else - ax_msg 2 "Unknown repository type!" + ax_error "Unknown repository type!" fi done } @@ -211,14 +291,7 @@ function CheckPlugins { ax_msg - "Checking plugins ..." for dir ($AXZSH/plugins/*(N)); do - plugin=$(basename "$dir") - - # Check plugin blacklist - case "$plugin" in - "ssh_secure"|"zkbd") - continue - ;; - esac + plugin=${dir:t} # Test if plugin is already enabled [[ -e "$AXZSH/active_plugins/$plugin" ]] \ @@ -230,7 +303,7 @@ function CheckPlugins { new_plugin="" for script ($AXZSH/plugins/$plugin/$plugin.{zshrc,zprofile}); do [[ -r "$script" ]] || continue - zsh -i -c "source $script"; r=$? + AXZSH_PLUGIN_CHECK=1 zsh -i -c "source $script"; r=$? if [[ $r -eq 0 ]]; then new_plugin=$plugin break @@ -240,6 +313,10 @@ function CheckPlugins { detected_plugins+=($new_plugin) [[ -n "$enabled" ]] || missing_plugins+=($new_plugin) ax_msg 0 "OK." + elif [[ $r -eq 91 ]]; then + ax_msg 1 "ignored." + elif [[ $r -eq 92 ]]; then + ax_msg 1 "optional." else [[ -n "$enabled" ]] && invalid_plugins+=($plugin) ax_msg 2 "failed." @@ -273,35 +350,53 @@ NAME="$0:t" [[ $# -gt 0 ]] || Usage -if [[ -z "$AXZSH" || ! -d "$AXZSH" ]]; then - ax_msg 2 "Oops, \"AXZSH\" is not set or invalid!" - exit 3 +if [[ -z "$AXZSH" || ! -r "$AXZSH/ax.zsh" ]]; then + [[ -r "$HOME/.axzsh/ax.zsh" ]] && AXZSH="$HOME/.axzsh" + if [[ ! -r "$AXZSH/ax.zsh" ]]; then + ax_error "Oops, \"AXZSH\" is not set or invalid and can't be autodetected!" + exit 3 + fi fi cmd="$1" shift case "$cmd" in + "enable") + [[ $# -eq 0 ]] || Usage + EnableAXZSH + ;; + "disable") + [[ $# -eq 0 ]] || Usage + DisableAXZSH + ;; "enable-plugin") [[ $# -gt 0 ]] || Usage for plugin in "$@"; do EnablePlugin "$plugin" done + UpdatePluginCache ;; "disable-plugin") [[ $# -gt 0 ]] || Usage for plugin in "$@"; do DisablePlugin "$plugin" done + UpdatePluginCache + ;; + "list-enabled") + [[ $# -eq 0 ]] || Usage + ListEnabledPlugins ;; "reset-plugins") [[ $# -eq 0 ]] || Usage ResetPlugins EnableDefaultPlugins + UpdatePluginCache ;; "enable-default-plugins") [[ $# -eq 0 ]] || Usage - EnableDefaultPlugins + EnableDefaultPlugins && UpdatePluginCache ;; "check-plugins") [[ $# -eq 0 ]] || Usage @@ -315,7 +410,17 @@ case "$cmd" in [[ $# -eq 0 ]] || Usage UpgradeAXZSH UpgradeForeignPlugins + UpdatePluginCache ;; - *) + "update-caches") + [[ $# -eq 0 ]] || Usage + UpdatePluginCache + ;; + "--help") Usage + ;; + *) + ax_error "Invalid command \"$cmd\"!" + ax_error "Try \"$0 --help\" for more information." + exit 2 esac