1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

Clean up web-search plugin logic to allow easier changes

This commit is contained in:
Marc Cornellà 2014-12-26 22:33:36 +01:00
parent 13e5afe805
commit 80d856e165

View file

@ -1,42 +1,43 @@
# web_search from terminal # web_search from terminal
function web_search() { function web_search() {
# get the open command emulate -L zsh
local open_cmd
if [[ "$OSTYPE" = darwin* ]]; then # define search engine URLS
open_cmd='open' typeset -A urls
else urls=(
open_cmd='xdg-open' google "https://www.google.com/search?q="
fi bing "https://www.bing.com/search?q="
yahoo "https://www.yahoo.com/search?q="
duckduckgo "https://www.duckduckgo.com/?q="
)
# define the open command
case "$OSTYPE" in
darwin*) open_cmd="open" ;;
linux*) open_cmd="xdg-open" ;;
*) echo "Platform $OSTYPE not supported"
return 1
;;
esac
# check whether the search engine is supported # check whether the search engine is supported
if [[ ! $1 =~ '(google|bing|yahoo|duckduckgo)' ]]; if [[ -z "$urls[$1]" ]]; then
then
echo "Search engine $1 not supported." echo "Search engine $1 not supported."
return 1 return 1
fi fi
local url="http://www.$1.com" # search or go to main page depending on number of arguments passed
if [[ $# -gt 1 ]]; then
# no keyword provided, simply open the search engine homepage # build search url:
if [[ $# -le 1 ]]; then # join arguments passed with '+', then append to search engine URL
$open_cmd "$url" url="${urls[$1]}${(j:+:)@[2,-1]}"
return
fi
if [[ $1 == 'duckduckgo' ]]; then
#slightly different search syntax for DDG
url="${url}/?q="
else else
url="${url}/search?q=" # build main page url:
# split by '/', then rejoin protocol (1) and domain (2) parts with '//'
url="${(j://:)${(s:/:)urls[$1]}[1,2]}"
fi fi
shift # shift out $1
while [[ $# -gt 0 ]]; do
url="${url}$1+"
shift
done
url="${url%?}" # remove the last '+'
nohup $open_cmd "$url" >/dev/null 2&>1 nohup $open_cmd "$url" >/dev/null 2&>1
} }