mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-01 21:40:18 +00:00
5dc1eea953
+ Add the ability to install plugins from Gists. You can distribute a very simple, one-single function plugin in the form of a Gist. Your users can install it using fisher install url and Fisherman will query the Gist using the GitHub API to get a list of the Gist files and use the name of the first identified *.fish file to name the plugin in your system. Since there is no formal way to name a Gist, and you may prefer to keep the "description" field for the actual description and not a name, Fisherman supports only one fish file per Gist. Closes #75. + Use command(1) when calling non-builtins. Thanks @daenney. Closes #79. + Add __fisher_plugin_can_enable to detect installing a prompt that is not the current one. Closes #78. + Remove the ability to install a plugin in a parent directory using .. or ../ or even worse, ../../ as well as other combinations that navigate to a parent directory. I find the use case odd at best, and more dangerous that useful. If you want to install a local plugin use the full path or a relative path, always top down. fisher install . or fisher install my/plugin or fisher install /Users/$USER/path/to/plugin. Closes #81.
120 lines
3.7 KiB
Fish
120 lines
3.7 KiB
Fish
function fisher_update -d "Update Plugins/Fisherman"
|
|
set -l plugins
|
|
set -l option self
|
|
set -l stdout /dev/stdout
|
|
set -l stderr /dev/stderr
|
|
|
|
getopts $argv | while read -l 1 2
|
|
switch "$1"
|
|
case _
|
|
set option
|
|
|
|
if test "$2" != -
|
|
set plugins $plugins $2
|
|
end
|
|
|
|
case q quiet
|
|
set stdout /dev/null
|
|
set stderr /dev/null
|
|
|
|
case h
|
|
printf "usage: fisher update [<plugins>] [--quiet] [--help]\n\n"
|
|
printf " -q --quiet Enable quiet mode\n"
|
|
printf " -h --help Show usage help\n"
|
|
return
|
|
|
|
case \*
|
|
printf "fisher: '%s' is not a valid option.\n" $1 > /dev/stderr
|
|
fisher_update -h > /dev/stderr
|
|
return 1
|
|
end
|
|
end
|
|
|
|
switch "$option"
|
|
case self
|
|
set -l time (date +%s)
|
|
|
|
printf "Updating >> Fisherman\n" > $stderr
|
|
|
|
if not wait "__fisher_index_update; __fisher_path_update $fisher_home"
|
|
printf "fisher: Arrr! Could not update Fisherman.\n" > $stderr
|
|
sed -E 's/.*error: (.*)/\1/' $fisher_cache/.debug > $stderr
|
|
return 1
|
|
end
|
|
|
|
#############################
|
|
## Remove before 1.0
|
|
set -g fisher_file $fisher_config/fishfile
|
|
if test ! -e $fisher_file
|
|
touch $fisher_file
|
|
end
|
|
## Remove before 1.0
|
|
#############################
|
|
|
|
printf "Aye! Fisherman updated to version %s (%0.fs)\n" (
|
|
cat $fisher_home/VERSION) (math (date +%s) - $time) > $stderr
|
|
|
|
case \*
|
|
set -l time (date +%s)
|
|
set -l count 0
|
|
set -l index 1
|
|
set -l total (count $plugins)
|
|
set -l skipped
|
|
|
|
if set -q plugins[1]
|
|
printf "%s\n" $plugins
|
|
else
|
|
__fisher_file
|
|
|
|
end | while read -l item path
|
|
|
|
if not set item (__fisher_plugin_validate $item)
|
|
printf "fisher: '%s' is not a valid name, path or url.\n" $item > $stderr
|
|
continue
|
|
end
|
|
|
|
if not set path (__fisher_path_from_plugin $item)
|
|
set total (math $total - 1)
|
|
printf "fisher: '%s' not found.\n" $item > $stderr
|
|
continue
|
|
end
|
|
|
|
set -l name (printf "%s\n" $path | __fisher_name)
|
|
|
|
printf "Updating " > $stderr
|
|
|
|
switch $total
|
|
case 0 1
|
|
printf ">> %s\n" $name > $stderr
|
|
|
|
case \*
|
|
printf "(%s of %s) >> %s\n" $index $total $name > $stderr
|
|
set index (math $index + 1)
|
|
end
|
|
|
|
if not wait "__fisher_path_update $path" --log=$fisher_cache/.debug
|
|
if test ! -L $path
|
|
sed -nE 's/.*(error|fatal): (.*)/error: \2/p
|
|
' $fisher_cache/.debug > $stderr
|
|
continue
|
|
end
|
|
end
|
|
|
|
if __fisher_plugin_can_enable "$name" "$path"
|
|
fisher_install --quiet --force -- $name
|
|
end
|
|
|
|
set count (math $count + 1)
|
|
end
|
|
|
|
set time (math (date +%s) - $time)
|
|
|
|
if test $count -le 0
|
|
printf "No plugins were updated.\n" > $stdout
|
|
return 1
|
|
end
|
|
|
|
printf "Aye! %d plugin/s updated in %0.fs\n" $count $time > $stdout
|
|
end
|
|
end
|