diff options
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/archlinux/archlinux.plugin.zsh | 68 | ||||
| -rw-r--r-- | plugins/cake/cake.plugin.zsh | 32 | ||||
| -rw-r--r-- | plugins/django/django.plugin.zsh | 222 | ||||
| -rw-r--r-- | plugins/knife/_knife | 174 | ||||
| -rw-r--r-- | plugins/redis-cli/_redis-cli | 2 | ||||
| -rw-r--r-- | plugins/ssh-agent/ssh-agent.plugin.zsh | 65 | 
6 files changed, 549 insertions, 14 deletions
| diff --git a/plugins/archlinux/archlinux.plugin.zsh b/plugins/archlinux/archlinux.plugin.zsh new file mode 100644 index 000000000..8ed291fcf --- /dev/null +++ b/plugins/archlinux/archlinux.plugin.zsh @@ -0,0 +1,68 @@ +# Archlinux zsh aliases and functions for zsh + +# Aliases ################################################################### + +# Look for yaourt, and add some useful functions if we have it. +if [[ -x `which yaourt` ]]; then +  upgrade () { +    yaourt -Syu -C +  } +  # Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips +  alias yaupg='sudo yaourt -Syu'        # Synchronize with repositories before upgrading packages that are out of date on the local system. +  alias yain='sudo yaourt -S'           # Install specific package(s) from the repositories +  alias yains='sudo yaourt -U'          # Install specific package not from the repositories but from a file  +  alias yare='sudo yaourt -R'           # Remove the specified package(s), retaining its configuration(s) and required dependencies +  alias yarem='sudo yaourt -Rns'        # Remove the specified package(s), its configuration(s) and unneeded dependencies +  alias yarep='yaourt -Si'              # Display information about a given package in the repositories +  alias yareps='yaourt -Ss'             # Search for package(s) in the repositories +  alias yaloc='yaourt -Qi'              # Display information about a given package in the local database +  alias yalocs='yaourt -Qs'             # Search for package(s) in the local database +  # Additional yaourt alias examples +  alias yaupd='sudo yaourt -Sy && sudo abs'     # Update and refresh the local package and ABS databases against repositories +  alias yainsd='sudo yaourt -S --asdeps'        # Install given package(s) as dependencies of another package +  alias yamir='sudo yaourt -Syy'                # Force refresh of all package lists after updating /etc/pacman.d/mirrorlist +else + upgrade() { +   sudo pacman -Syu + } +fi + +# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips +alias pacupg='sudo pacman -Syu'        # Synchronize with repositories before upgrading packages that are out of date on the local system. +alias pacin='sudo pacman -S'           # Install specific package(s) from the repositories +alias pacins='sudo pacman -U'          # Install specific package not from the repositories but from a file  +alias pacre='sudo pacman -R'           # Remove the specified package(s), retaining its configuration(s) and required dependencies +alias pacrem='sudo pacman -Rns'        # Remove the specified package(s), its configuration(s) and unneeded dependencies +alias pacrep='pacman -Si'              # Display information about a given package in the repositories +alias pacreps='pacman -Ss'             # Search for package(s) in the repositories +alias pacloc='pacman -Qi'              # Display information about a given package in the local database +alias paclocs='pacman -Qs'             # Search for package(s) in the local database +# Additional pacman alias examples +alias pacupd='sudo pacman -Sy && sudo abs'     # Update and refresh the local package and ABS databases against repositories +alias pacinsd='sudo pacman -S --asdeps'        # Install given package(s) as dependencies of another package +alias pacmir='sudo pacman -Syy'                # Force refresh of all package lists after updating /etc/pacman.d/mirrorlist + +# https://bbs.archlinux.org/viewtopic.php?id=93683 +paclist() { +  sudo pacman -Qei $(pacman -Qu|cut -d" " -f 1)|awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}' +} + +alias paclsorphans='sudo pacman -Qdt' +alias pacrmorphans='sudo pacman -Rs $(pacman -Qtdq)' + +pacdisowned() { +  tmp=${TMPDIR-/tmp}/pacman-disowned-$UID-$$ +  db=$tmp/db +  fs=$tmp/fs + +  mkdir "$tmp" +  trap  'rm -rf "$tmp"' EXIT + +  pacman -Qlq | sort -u > "$db" + +  find /bin /etc /lib /sbin /usr \ +      ! -name lost+found \ +        \( -type d -printf '%p/\n' -o -print \) | sort > "$fs" + +  comm -23 "$fs" "$db" +} diff --git a/plugins/cake/cake.plugin.zsh b/plugins/cake/cake.plugin.zsh new file mode 100644 index 000000000..f968c71d5 --- /dev/null +++ b/plugins/cake/cake.plugin.zsh @@ -0,0 +1,32 @@ +# Set this to 1 if you want to cache the tasks +cache_task_list=1 + +# Cache filename +cache_file='.cake_task_cache' + +_cake_does_target_list_need_generating () { + +	if [ $cache_task_list -eq 0 ]; then +		return 1; +	fi + +	if [ ! -f $cache_file ]; then return 0; +	else +		accurate=$(stat -f%m $cache_file) +		changed=$(stat -f%m Cakefile) +		return $(expr $accurate '>=' $changed) +	fi +} + +_cake () { +	if [ -f Cakefile ]; then +		if _cake_does_target_list_need_generating; then +			cake | sed -e "s/cake \([^ ]*\) .*/\1/" | grep -v '^$' > $cache_file +			compadd `cat $cache_file` +		else +			compadd `cake | sed -e "s/cake \([^ ]*\) .*/\1/" | grep -v '^$'` +		fi +	fi +} + +compdef _cake cake diff --git a/plugins/django/django.plugin.zsh b/plugins/django/django.plugin.zsh new file mode 100644 index 000000000..1d72a2f2c --- /dev/null +++ b/plugins/django/django.plugin.zsh @@ -0,0 +1,222 @@ +#compdef manage.py + +typeset -ga nul_args +nul_args=( +  '--settings=-[the Python path to a settings module.]:file:_files' +  '--pythonpath=-[a directory to add to the Python path.]::directory:_directories' +  '--traceback[print traceback on exception.]' +  "--version[show program's version number and exit.]" +  {-h,--help}'[show this help message and exit.]' +) + +_managepy-adminindex(){ +  _arguments -s : \ +    $nul_args \ +    '*::directory:_directories' && ret=0 +} + +_managepy-createcachetable(){ +  _arguments -s : \ +    $nul_args && ret=0 +} + +_managepy-dbshell(){ +  _arguments -s : \ +    $nul_args && ret=0 +} + +_managepy-diffsettings(){ +  _arguments -s : \ +    $nul_args && ret=0 +} + +_managepy-dumpdata(){ +  _arguments -s : \ +    '--format=-[specifies the output serialization format for fixtures.]:format:(json yaml xml)' \ +    '--indent=-[specifies the indent level to use when pretty-printing output.]:' \ +    $nul_args \ +    '*::appname:_applist' && ret=0 +} + +_managepy-flush(){ +  _arguments -s : \ +    '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ +    '--noinput[tells Django to NOT prompt the user for input of any kind.]' \ +    $nul_args && ret=0 +} + +_managepy-help(){ +  _arguments -s : \ +    '*:command:_managepy_cmds' \ +    $nul_args && ret=0 +} + +_managepy_cmds(){ +    local line +    local -a cmd +    _call_program help-command ./manage.py help \ +      |& sed -n '/^ /s/[(), ]/ /gp' \ +      | while read -A line; do cmd=($line $cmd) done +    _describe -t managepy-command 'manage.py command' cmd +} + +_managepy-inspectdb(){ +  _arguments -s : \ +    $nul_args && ret=0 +} + +_managepy-loaddata(){ +  _arguments -s : \ +    '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ +    '*::file:_files' \ +    $nul_args && ret=0 +} + +_managepy-reset(){ +  _arguments -s : \ +    '--noinput[tells Django to NOT prompt the user for input of any kind.]' \ +    '*::appname:_applist' \ +    $nul_args && ret=0 +} + +_managepy-runfcgi(){ +  local state +   +  local fcgi_opts +  fcgi_opts=( +    'protocol[fcgi, scgi, ajp, ... (default fcgi)]:protocol:(fcgi scgi ajp)' +    'host[hostname to listen on..]:' +    'port[port to listen on.]:' +    'socket[UNIX socket to listen on.]::file:_files' +    'method[prefork or threaded (default prefork)]:method:(prefork threaded)' +    'maxrequests[number of requests a child handles before it is killed and a new child is forked (0 = no limit).]:' +    'maxspare[max number of spare processes / threads.]:' +    'minspare[min number of spare processes / threads.]:' +    'maxchildren[hard limit number of processes / threads.]:' +    'daemonize[whether to detach from terminal.]:boolean:(False True)' +    'pidfile[write the spawned process-id to this file.]:file:_files' +    'workdir[change to this directory when daemonizing.]:directory:_files' +    'outlog[write stdout to this file.]:file:_files' +    'errlog[write stderr to this file.]:file:_files' +  ) +   +  _arguments -s : \ +    $nul_args \ +    '*: :_values "FCGI Setting" $fcgi_opts' && ret=0 +} + +_managepy-runserver(){ +  _arguments -s : \ +    '--noreload[tells Django to NOT use the auto-reloader.]' \ +    '--adminmedia[specifies the directory from which to serve admin media.]:directory:_files' \ +    $nul_args && ret=0 +} + +_managepy-shell(){ +  _arguments -s : \ +    '--plain[tells Django to use plain Python, not IPython.]' \ +    $nul_args && ret=0 +} + +_managepy-sql(){} +_managepy-sqlall(){} +_managepy-sqlclear(){} +_managepy-sqlcustom(){} +_managepy-sqlflush(){} +_managepy-sqlindexes(){} +_managepy-sqlinitialdata(){} +_managepy-sqlreset(){} +_managepy-sqlsequencereset(){} +_managepy-startapp(){} + +_managepy-syncdb() { +  _arguments -s : \ +    '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ +    '--noinput[tells Django to NOT prompt the user for input of any kind.]' \ +    $nul_args && ret=0 +} + +_managepy-test() { +  _arguments -s : \ +    '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ +    '--noinput[tells Django to NOT prompt the user for input of any kind.]' \ +    '*::appname:_applist' \ +    $nul_args && ret=0 +} + +_managepy-testserver() { +  _arguments -s : \ +    '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ +    '--addrport=-[port number or ipaddr:port to run the server on.]' \ +    '*::fixture:_files' \ +    $nul_args && ret=0 +} + +_managepy-validate() { +  _arguments -s : \ +    $nul_args && ret=0 +} + +_managepy-commands() { +  local -a commands +   +  commands=( +    'adminindex:prints the admin-index template snippet for the given app name(s).' +    'createcachetable:creates the table needed to use the SQL cache backend.' +    'dbshell:runs the command-line client for the current DATABASE_ENGINE.' +    "diffsettings:displays differences between the current settings.py and Django's default settings." +    'dumpdata:Output the contents of the database as a fixture of the given format.' +    'flush:Executes ``sqlflush`` on the current database.' +    'help:manage.py help.' +    'inspectdb:Introspects the database tables in the given database and outputs a Django model module.' +    'loaddata:Installs the named fixture(s) in the database.' +    'reset:Executes ``sqlreset`` for the given app(s) in the current database.' +    'runfcgi:Run this project as a fastcgi (or some other protocol supported by flup) application,' +    'runserver:Starts a lightweight Web server for development.' +    'shell:Runs a Python interactive interpreter.' +    'sql:Prints the CREATE TABLE SQL statements for the given app name(s).' +    'sqlall:Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s).' +    'sqlclear:Prints the DROP TABLE SQL statements for the given app name(s).' +    'sqlcustom:Prints the custom table modifying SQL statements for the given app name(s).' +    'sqlflush:Returns a list of the SQL statements required to return all tables in the database to the state they were in just after they were installed.' +    'sqlindexes:Prints the CREATE INDEX SQL statements for the given model module name(s).' +    "sqlinitialdata:RENAMED: see 'sqlcustom'" +    'sqlreset:Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given app name(s).' +    'sqlsequencereset:Prints the SQL statements for resetting sequences for the given app name(s).' +    "startapp:Creates a Django app directory structure for the given app name in this project's directory." +    "syncdb:Create the database tables for all apps in INSTALLED_APPS whose tables haven't already been created." +    'test:Runs the test suite for the specified applications, or the entire site if no apps are specified.' +    'testserver:Runs a development server with data from the given fixture(s).' +    'validate:Validates all installed models.' +  ) +   +  _describe -t commands 'manage.py command' commands && ret=0 +} + +_applist() { +  local line +  local -a apps +  _call_program help-command "python -c \"import os.path as op, re, django.conf, sys;\\ +                                          bn=op.basename(op.abspath(op.curdir));[sys\\ +                                          .stdout.write(str(re.sub(r'^%s\.(.*?)$' % +                                          bn, r'\1', i)) + '\n') for i in django.conf.settings.\\ +                                          INSTALLED_APPS if re.match(r'^%s' % bn, i)]\"" \ +                             | while read -A line; do apps=($line $apps) done +  _values 'Application' $apps && ret=0 +} + +_managepy() { +  local curcontext=$curcontext ret=1 +   +  if ((CURRENT == 2)); then +    _managepy-commands +  else +    shift words +    (( CURRENT -- )) +    curcontext="${curcontext%:*:*}:managepy-$words[1]:" +    _call_function ret _managepy-$words[1] +  fi +} + +compdef _managepy manage.py +compdef _managepy django diff --git a/plugins/knife/_knife b/plugins/knife/_knife new file mode 100644 index 000000000..7f8c95ee5 --- /dev/null +++ b/plugins/knife/_knife @@ -0,0 +1,174 @@ +#compdef knife + +# These flags should be available everywhere according to man knife +knife_general_flags=( --help --server-url --key --config --editor --format --log_level --logfile --no-editor --user --print-after --version --yes ) + +# knife has a very special syntax, some example calls are: +# knife status +# knife cookbook list +# knife role show ROLENAME +# knife data bag show DATABAGNAME +# knife role show ROLENAME --attribute ATTRIBUTENAME +# knife cookbook show COOKBOOKNAME COOKBOOKVERSION recipes + +# The -Q switch in compadd allow for completions of things like "data bag" without having to go through two rounds of completion and avoids zsh inserting a \ for escaping spaces +_knife() { +  local curcontext="$curcontext" state line +  typeset -A opt_args +  cloudproviders=(bluebox ec2 rackspace slicehost terremark) +  _arguments \ +    '1: :->knifecmd'\ +    '2: :->knifesubcmd'\ +    '3: :->knifesubcmd2' \ +    '4: :->knifesubcmd3' \ +    '5: :->knifesubcmd4' \ +    '6: :->knifesubcmd5' +   +  case $state in +  knifecmd) +    compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" exec index node recipe role search ssh status windows $cloudproviders +  ;; +  knifesubcmd) +    case $words[2] in +    (bluebox|ec2|rackspace|slicehost|terremark) +      compadd "$@" server images +    ;; +    client) +      compadd -Q "$@" "bulk delete" list create show delete edit reregister +    ;; +    configure) +      compadd "$@" client +    ;; +    cookbook) +      compadd -Q "$@" test list create download delete "metadata from" show "bulk delete" metadata upload +    ;; +    node) +     compadd -Q "$@" "from file" create show edit delete list run_list "bulk delete" +    ;; +    recipe) +     compadd "$@" list +    ;; +    role) +      compadd -Q "$@" "bulk delete" create delete edit "from file" list show +    ;;  +    windows) +      compadd "$@" bootstrap +    ;; +    *) +    _arguments '2:Subsubcommands:($(_knife_options1))' +    esac +   ;; +   knifesubcmd2) +    case $words[3] in +     server) +      compadd "$@" list create delete +    ;; +     images) +      compadd "$@" list +    ;; +     site) +      compadd "$@" vendor show share search download list unshare +    ;; +     (show|delete|edit) +     _arguments '3:Subsubcommands:($(_chef_$words[2]s_remote))' +    ;; +    (upload|test) +     _arguments '3:Subsubcommands:($(_chef_$words[2]s_local) --all)' +    ;; +    list) +     compadd -a "$@" knife_general_flags +    ;; +    bag) +      compadd -Q "$@" show edit list "from file" create delete +    ;; +    *) +      _arguments '3:Subsubcommands:($(_knife_options2))' +    esac +   ;; +   knifesubcmd3) +     case $words[3] in +      show) +       case $words[2] in +       cookbook) +          versioncomp=1 +          _arguments '4:Cookbookversions:($(_cookbook_versions) latest)' +       ;; +       (node|client|role) +         compadd "$@" --attribute +       esac +     esac +     case $words[4] in +     (show|edit) +     _arguments '4:Subsubsubcommands:($(_chef_$words[2]_$words[3]s_remote))' +    ;; +     file) +     _arguments '*:file or directory:_files -g "*.(rb|json)"' +    ;; +      list) +     compadd -a "$@" knife_general_flags +    ;; +        *) +       _arguments '*:Subsubcommands:($(_knife_options3))' +    esac +    ;; +    knifesubcmd4) +      if (( versioncomp > 0 )); then +        compadd "$@" attributes definitions files libraries providers recipes resources templates +      else +       _arguments '*:Subsubcommands:($(_knife_options2))' +      fi +    ;;  +    knifesubcmd5)  +      _arguments '*:Subsubcommands:($(_knife_options3))' +   esac +} + +# Helper functions to provide the argument completion for several depths of commands +_knife_options1() { + ( for line in $( knife $words[2] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) +} + +_knife_options2() { + ( for line in $( knife $words[2] $words[3] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) +} + +_knife_options3() { + ( for line in $( knife $words[2] $words[3] $words[4] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) +} + +# The chef_x_remote functions use knife to get a list of objects of type x on the server +_chef_roles_remote() { + (knife role list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') +} + +_chef_clients_remote() { + (knife client list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') +} + +_chef_nodes_remote() { + (knife node list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') +} + +_chef_cookbooks_remote() { + (knife cookbook list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') +} + +_chef_sitecookbooks_remote() { + (knife cookbook site list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') +} + +_chef_data_bags_remote() { + (knife data bag list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') +} + +# The chef_x_local functions use the knife config to find the paths of relevant objects x to be uploaded to the server +_chef_cookbooks_local() { + (for i in $( grep cookbook_path $HOME/.chef/knife.rb | awk 'BEGIN {FS = "[" }; {print $2}' | sed 's/\,//g' | sed "s/'//g" | sed 's/\(.*\)]/\1/' ); do ls $i; done) +} + +# This function extracts the available cookbook versions on the chef server +_cookbook_versions() { +  (knife cookbook show $words[4] | grep -v $words[4] | grep -v -E '\]|\[|\{|\}' | sed 's/ //g' | sed 's/"//g') +} + +_knife "$@" diff --git a/plugins/redis-cli/_redis-cli b/plugins/redis-cli/_redis-cli index 3789add18..1569f2916 100644 --- a/plugins/redis-cli/_redis-cli +++ b/plugins/redis-cli/_redis-cli @@ -51,7 +51,7 @@ _1st_arguments=(    'keys:find all keys matching the given pattern'    'lastsave:get the UNIX timestamp of the last successful save to disk'    'lindex:get an element from a list by its index' -  'linset:insert an element before or after another element in a list' +  'linsert:insert an element before or after another element in a list'    'llen:get the length of a list'    'lpop:remove and get the first element in a list'    'lpush:prepend a value to a list' diff --git a/plugins/ssh-agent/ssh-agent.plugin.zsh b/plugins/ssh-agent/ssh-agent.plugin.zsh index 0efc4546f..c4e92a1fe 100644 --- a/plugins/ssh-agent/ssh-agent.plugin.zsh +++ b/plugins/ssh-agent/ssh-agent.plugin.zsh @@ -1,23 +1,62 @@ -# Based on code from Joseph M. Reagle -# http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html +# +# INSTRUCTIONS +# +#   To enabled agent forwarding support add the following to +#   your .zshrc file: +# +#     zstyle :omz:plugins:ssh-agent agent-forwarding on +# +#   To load multiple identies use the identities style, For +#   example: +# +#     zstyle :omz:plugins:ssh-agent id_rsa id_rsa2 id_github +# +# +# CREDITS +# +#   Based on code from Joseph M. Reagle +#   http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html +# +#   Agent forwarding support based on ideas from +#   Florent Thoumie and Jonas Pfenniger +# -local SSH_ENV=$HOME/.ssh/environment-$HOST +local _plugin__ssh_env=$HOME/.ssh/environment-$HOST +local _plugin__forwarding -function start_agent { -  /usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV} -  chmod 600 ${SSH_ENV} -  . ${SSH_ENV} > /dev/null -  /usr/bin/ssh-add; +function _plugin__start_agent() +{ +  local -a identities + +  # start ssh-agent and setup environment +  /usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${_plugin__ssh_env} +  chmod 600 ${_plugin__ssh_env} +  . ${_plugin__ssh_env} > /dev/null + +  # load identies +  zstyle -a :omz:plugins:ssh-agent identities identities  +  echo starting... +  /usr/bin/ssh-add $HOME/.ssh/${^identities}  } -# Source SSH settings, if applicable +# test if agent-forwarding is enabled +zstyle -b :omz:plugins:ssh-agent agent-forwarding _plugin__forwarding +if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then +  # Add a nifty symlink for screen/tmux if agent forwarding +  [[ -L $SSH_AUTH_SOCK ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen -if [ -f "${SSH_ENV}" ]; then -  . ${SSH_ENV} > /dev/null +elif [ -f "${_plugin__ssh_env}" ]; then +  # Source SSH settings, if applicable +  . ${_plugin__ssh_env} > /dev/null    ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || { -    start_agent; +    _plugin__start_agent;    }  else -  start_agent; +  _plugin__start_agent;  fi +# tidy up after ourselves +unfunction _plugin__start_agent +unset _plugin__forwarding +unset _plugin__ssh_env + | 
