66 lines
1.9 KiB
Bash
Executable File
66 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Migrate (mirror) a remote repository
|
|
#
|
|
# migrate-repo.sh <reponame> <organisation> [<traget organisation>]
|
|
#
|
|
inifilename=$(echo ~)"/.smegit/config"
|
|
if [ -z $inifilename ] ; then
|
|
# Not here, look a bit further up
|
|
echo "No ini file found $inifilename"
|
|
echo "git-mirror-org.sh <source organisation> <target organisation> [<target organisation>]"
|
|
exit 1
|
|
fi
|
|
|
|
while read -r line || [[ -n "$line" ]]; do
|
|
if [[ $line =~ ^\[.*\]$ ]]
|
|
then
|
|
section=${line#*[}
|
|
section=${section%]*}
|
|
else
|
|
if [[ $line =~ ^[^#]*= ]]
|
|
then
|
|
key=${line%=*}
|
|
value=${line#*=}
|
|
declare "${section}_${key}=$value"
|
|
fi
|
|
fi
|
|
done < "$inifilename"
|
|
|
|
if [[ -z $1 ]] ; then
|
|
echo "migrate-org.sh <source organisation> [<target organisation>]"
|
|
echo "<target organisation> is optional and will default to the gitea user"
|
|
exit 0
|
|
fi
|
|
DEBUG=
|
|
if [ ${smegit_DEBUG} == true ] ; then DEBUG=true ; fi
|
|
if [ $DEBUG ] ; then echo "found ini file: $inifilename" ; fi
|
|
|
|
curlsilent="-s"
|
|
if [ $DEBUG ] ; then curlsilent= ; fi
|
|
|
|
REMOTEACCESSTOKEN=${remote_GITEAACCESSTOKEN}
|
|
LOCALACCESSTOKEN=${local_GITEAACCESSTOKEN}
|
|
REMOTEGITEAHOST=${remote_GITEAHOST}
|
|
LOCALGITEAHOST=${local_GITEAHOST}
|
|
TARGETORG=
|
|
if [ $2 ] ; then TARGETORG=$2 ; fi
|
|
|
|
# check that the target organisation exists locally
|
|
RESPONSE=$(curl $curlsilent -o /dev/null -w "%{http_code}" $LOCALGITEAHOST/$TARGETORG)
|
|
if [[ "$RESPONSE" != "200" ]] ; then
|
|
echo "$TARGETORG does not exist on $LOCALGITEAHOST"
|
|
exit 1
|
|
fi
|
|
|
|
# get a list of repositories in the source organisation
|
|
RESPONSE=$(curl $curlsilent -X 'GET' \
|
|
"$REMOTEGITEAHOST/api/v1/orgs/$1/repos?limit=1000?per_page=200" \
|
|
-H 'accept: application/json' \
|
|
-H "Authorization: token $REMOTEACCESSTOKEN"
|
|
)
|
|
|
|
echo $RESPONSE | grep -oP '(?<="name":").+?(?=")' | while read repo; do
|
|
echo "git-mirror-repo.sh ${repo} $1 $TARGETORG"
|
|
done
|