Skip to content

Instantly share code, notes, and snippets.

@yuuan
Last active December 27, 2022 07:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuuan/248389dc3cb15e6c825834eeae7208c9 to your computer and use it in GitHub Desktop.
Save yuuan/248389dc3cb15e6c825834eeae7208c9 to your computer and use it in GitHub Desktop.
Zsh で Laravel の artisan コマンドを補完
#compdef artisan
function __older_than_laravel54() {
local version=$(cat composer.lock | jq '.packages[] | select(.name == "laravel/framework").version')
echo $version | grep -e 'v5\.[0-3]\.' &> /dev/null
}
function __laravel5_get_command_list() {
local PHP
if which php74 &> /dev/null; then
PHP=php74
elif which php &> /dev/null; then
PHP=php
else
return
fi
which perl &> /dev/null || return
if [[ -f artisan ]]; then
$PHP artisan list --raw | perl -pe 's/:/\\:/g;s/([a-z\\:-]+)(?:\s+(.*))?/$1:$2/ig;'
fi
}
function __laravel5_get_seeder_list() {
local dir="$PWD/database/seeds"
if [[ -d "$dir" ]]; then
\ls "$dir" | \grep '\.php$' | \sed -e 's/\.php$//'
fi
}
function __laravel5_get_migration_list() {
local dir="$PWD/database/migrations"
if [[ -d "$dir" ]]; then
\ls "$dir" | perl -pe 's/^\d{4}_\d{2}_\d{2}_\d{6}_//g;s/\.php$//'
fi
}
function __artisan_commands() {
local -a cmds
cmds=( ${(@f)"$(__laravel5_get_command_list)"} )
_describe -t commands "commands" cmds
}
function __options() {
_arguments -C \
'(-h --help)'{-h,--help}'[Display help message]' \
'(-v -vv -vvv --verbose)'{-q,--quiet}'[Do not output any message]' \
{-V,--version}'[Display this application version]' \
--ansi'[Force ANSI output]' \
--no-ansi'[Disable ANSI output]' \
{-n,--no-interaction}'[Do not ask any interactive question]' \
'(-v -vv -vvv --verbose)'-v'[Increase the verbosity of messages for normal output]' \
'(-v -vv -vvv --verbose)'{-vv,--verbose}'[Increase the verbosity of messages for verbose output]' \
'(-v -vv -vvv --verbose)'-vvv'[Increase the verbosity of messages for debug output]' \
$* \
&& return 0
}
function __seeders() {
local -a seeders
seeders=( $(__laravel5_get_seeder_list) )
_describe -t seeders 'seeder classes' seeders
}
function __migrations() {
local -a migrations
migrations=( $(__laravel5_get_migration_list) )
_describe -t migrations 'migrations' migrations
}
function _artisan() {
local context curcontext=$curcontext state line
declare -A opt_args
local ret=1
local dir
_arguments -C \
'(-h --help)'{-h,--help}'[Display help message]' \
'1: :__artisan_commands' \
'*:: :->args' \
&& ret=0
case $state in
(args)
case $words[1] in
(make:auth)
__options \
'--views[Only scaffold the authentication views]' \
&& ret=0
;;
(make:channel)
dir='app/Broadcasting/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:console|make:command)
dir='app/Console/Commands/'
__options \
'--command=[The terminal command that should be assigned. \[default: "command:name"\]]:: :__artisan_commands' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:controller)
dir='app/Http/Controllers/'
__options \
'--resource[Generate a resource controller class.]' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:event)
dir='app/Events/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:exception)
dir='app/Exceptions/'
__options \
'--render[Create the exception with an empty render method.]' \
'--report[Create the exception with an empty report method.]' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:factory)
dir='database/factories/'
__options \
{-m=,--model=}'[The name of the model]:: :' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:job)
dir='app/Jobs/'
__options \
'--sync[Indicates that job should be synchronous.]' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:listener)
dir='app/Listeners/'
__options \
{-e=,--event=}'[The event class being listened for.]:: :' \
'--queued[Indicates the event listener should be queued.]' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:mail)
dir='app/Mail/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:middleware)
dir='app/Http/Middleware/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:migration)
dir=''
__options \
'--create=[The table to be created.]' \
'--table=[The table to migrate.]' \
'--path=[The location where the migration file should be created.]' \
'*:migrations:__migrations' \
&& ret=0
;;
(make:model)
dir='app/'
__options \
{-m,--migration}'[Create a new migration file for the model]' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:notification)
dir='app/Notifications/'
__options \
{-f,--force}'[Create the class even if the notification already exists.]' \
{-m=,--markdown=}'[Create a new Markdown template for the notification.]' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:observer)
dir='app/Observers/'
__options \
{-m=,--model=}'[The model that the observer applies to.]' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:policy)
dir='app/Policies/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:provider)
dir='app/Providers/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:request)
dir='app/Http/Requests/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:resource)
dir='app/Http/Resources/'
__options \
{-c,--collection}'Create a resource collection.'
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:rule)
dir='app/Rules/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:seeder)
dir='database/seeds/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
;;
(make:test)
if __older_than_laravel54 &> /dev/null; then
dir='tests/'
__options \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
else
if (( ${words[(I)--unit]} )); then
dir='tests/Unit/'
else
dir='tests/Feature/'
fi
__options \
'--unit[Create a unit test]' \
'*:files ('$dir'):_files -W '"$PWD/$dir" \
&& ret=0
fi
;;
(db:seed)
__options \
'--class=[The class name of the root seeder \[default: "DatabaseSeeder"\]]:: :__seeders' \
'--database=[The database connection to seed]' \
'--force[Force the operation to run when in production.]' \
&& ret=0
;;
(*)
__options \
'*:files:_files' \
&& ret=0
;;
esac
;;
esac
return ret
}
_artisan "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment