2012-03-30 15:45:37 +00:00
|
|
|
#
|
|
|
|
# Shortens GitHub URLs.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2017-07-06 23:01:26 +00:00
|
|
|
# function git-hub-shorten-url {
|
|
|
|
|
2017-07-07 22:04:30 +00:00
|
|
|
local url="$1" code="$2"
|
2012-03-30 15:45:37 +00:00
|
|
|
|
|
|
|
if [[ "$url" == '-' ]]; then
|
|
|
|
read url <&0
|
|
|
|
fi
|
|
|
|
|
2017-07-07 05:02:13 +00:00
|
|
|
if [[ -z "$url" || ! "$url" =~ ^https?:\/\/.*github.com\/ ]]; then
|
2017-07-07 22:04:30 +00:00
|
|
|
print "usage: $0 [ url | - ] [code] ; url must be a github.com URL" >&2
|
|
|
|
return 1
|
2012-03-30 15:45:37 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if (( $+commands[curl] )); then
|
2017-07-07 22:04:30 +00:00
|
|
|
curl -s -i 'https://git.io' -F "url=$url" ${(s: :)code:+ -F "code=$code"} | sed -n 's/^Location: //p'
|
2012-03-30 15:45:37 +00:00
|
|
|
else
|
|
|
|
print "$0: command not found: curl" >&2
|
2017-07-07 22:04:30 +00:00
|
|
|
return 1
|
2012-03-30 15:45:37 +00:00
|
|
|
fi
|
2017-07-06 23:01:26 +00:00
|
|
|
|
|
|
|
# }
|