dotfiles/zsh/gclone.zsh

128 lines
3.7 KiB
Bash
Raw Normal View History

2018-09-28 14:04:34 +02:00
# cdg : cd to a git repo
if [ -d "$GCLONE_PATH" ]; then
gclone() {
# Check if cloning via HTTP(S) or SSH
if [[ $1 == http* ]]; then
server=`echo $1 | rev | cut -d '/' -f 3- | rev | cut -d '/' -f 3-`
name=`echo $1 | rev | cut -d '/' -f -2 | rev`
else
server=`echo $1 | cut -d ':' -f 1 | cut -d '@' -f 2-`
name=`echo $1 | cut -d ':' -f 2-`
fi
user=`echo $name | cut -d '/' -f 1`
repo=`echo $name | cut -d '/' -f 2-`
if [[ $repo == *.git ]]; then
repo=${repo%.*}
fi
2018-10-08 11:18:15 +02:00
# Final path to the repo
repo_path=$GCLONE_PATH/$server/$user
2018-10-08 13:32:39 +02:00
if [ -d $repo_path/$repo ]; then
2018-10-08 11:18:15 +02:00
echo "Repository already exists"
return 1
fi
2018-09-28 14:04:34 +02:00
tempdir=`mktemp -d`
2018-09-29 21:46:42 +02:00
git clone $1 $tempdir/$repo
2018-09-28 14:04:34 +02:00
# If the clone worked, move the repo in the good place
if [ $? -eq 0 ]; then
2018-12-10 11:05:49 +01:00
mkdir -p $repo_path
mv $tempdir/$repo $repo_path/$repo
2018-09-28 14:04:34 +02:00
2018-10-07 11:07:05 +02:00
if [ ! -f $GCLONE_PATH/.cdgcache ]; then
# If there is no cache, generate the cache manually
_cdg_refresh_cache
else
# If there is a cache, just append the current dir at the end
# and sort it back
echo $repo_path >> $GCLONE_PATH/.cdgcache
echo $repo_path/$repo >> $GCLONE_PATH/.cdgcache
cat $GCLONE_PATH/.cdgcache | sort | uniq > $GCLONE_PATH/.cdgcache.tmp
mv $GCLONE_PATH/.cdgcache.tmp $GCLONE_PATH/.cdgcache
fi
2019-01-17 13:57:34 +01:00
retval=0
2018-10-07 11:07:05 +02:00
2019-01-17 13:57:34 +01:00
else
retval=1
2018-09-28 14:04:34 +02:00
fi
# Remove the temp dir
rm -rf $tempdir
2019-01-17 13:57:34 +01:00
return $retval
2018-09-28 14:04:34 +02:00
}
cdg() {
if [ $# -ne 1 ]; then
echo "This function expects a single parameter"
return 1
else
2018-10-07 11:07:05 +02:00
found_dirs=`_cdg_existing_dirs | grep /$1$`
2018-09-28 14:04:34 +02:00
total=`echo $found_dirs | wc -l`
if [[ "" == "$found_dirs" ]]; then
2018-11-16 13:38:09 +01:00
echo "$1 not found, refreshing cache"
_cdg_refresh_cache
2018-09-28 14:04:34 +02:00
return 2
elif [ $total -gt 1 ]; then
counter=0
echo "Multiple entries for $1 found:"
echo $found_dirs | while read found_dir; do
counter=$(($counter+1))
echo "["$counter"]" $found_dir
done
read choice
if [[ "$choice" == "" ]]; then
cd `echo $found_dirs | head -1 | tail -1`
elif [[ "$choice" =~ '^[0-9]+$' ]] && [ $choice -le $total ] && [ $choice -gt 0 ]; then
cd `echo $found_dirs | head -$choice | tail -1`
else
echo "I expected a number that was less than the max..."
return 3
fi
return 3
else
2018-10-07 11:07:05 +02:00
cd $found_dirs > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "cd didn't work, refreshing cache..."
_cdg_refresh_cache
2018-11-16 13:38:09 +01:00
return 4
2018-10-07 11:07:05 +02:00
fi
2018-09-28 14:04:34 +02:00
fi
fi
}
2018-12-28 15:32:51 +01:00
cdgclone() {
2019-01-17 13:57:34 +01:00
gclone $1 && cdg `basename $1`
2018-12-28 15:32:51 +01:00
}
2018-09-28 14:04:34 +02:00
_cdg() {
2018-10-07 11:07:05 +02:00
_arguments "1: :($(_cdg_existing_dirs | rev | cut -d '/' -f 1 | rev))"
2018-09-28 14:04:34 +02:00
}
compdef _cdg cdg
2018-10-07 11:07:05 +02:00
_cdg_refresh_cache() {
tmpfile=`mktemp`
2018-10-07 11:07:05 +02:00
find $GCLONE_PATH -maxdepth 3 \
-not -name ".cdgcache" \
-not -name "git" | sort > $tmpfile
mv $tmpfile $GCLONE_PATH/.cdgcache
2018-10-07 11:07:05 +02:00
}
_cdg_existing_dirs() {
if [ ! -f $GCLONE_PATH/.cdgcache ]; then
_cdg_refresh_cache
fi
cat $GCLONE_PATH/.cdgcache
}
2018-09-28 14:04:34 +02:00
fi