Added Gitlab

This commit is contained in:
Marcus Noble 2020-12-09 13:08:16 +00:00
parent 7b8e227d8a
commit bc4b79dab2
1 changed files with 12 additions and 11 deletions

23
sync.sh
View File

@ -6,11 +6,11 @@ FAILED_MESSAGE=""
GITEA_TOKEN=${GITEA_TOKEN:?is not set} GITEA_TOKEN=${GITEA_TOKEN:?is not set}
GITHUB_TOKEN=${GITHUB_TOKEN:?is not set} GITHUB_TOKEN=${GITHUB_TOKEN:?is not set}
# BITBUCKET_TOKEN=${BITBUCKET_TOKEN:?is not set} # BITBUCKET_TOKEN=${BITBUCKET_TOKEN:?is not set}
# GITLAB_TOKEN=${GITLAB_TOKEN:?is not set} GITLAB_TOKEN=${GITLAB_TOKEN:?is not set}
GITEA_BASE="https://averagemarcus:${GITEA_TOKEN}@git.cluster.fun/AverageMarcus/" GITEA_BASE="https://averagemarcus:${GITEA_TOKEN}@git.cluster.fun/AverageMarcus/"
GITHUB_BASE="https://averagemarcus:${GITHUB_TOKEN}@github.com/AverageMarcus/" GITHUB_BASE="https://averagemarcus:${GITHUB_TOKEN}@github.com/AverageMarcus/"
BITBUCKET_BASE="https://bitbucket.org/marcusnoble/" BITBUCKET_BASE="https://bitbucket.org/AverageMarcus/"
GITLAB_BASE="https://gitlab.com/AverageMarcus/" GITLAB_BASE="https://gitlab.com/AverageMarcus/"
REPOS=$(curl -X GET "https://git.cluster.fun/api/v1/user/repos?page=1&limit=50&access_token=${GITEA_TOKEN}" -H "accept: application/json" --silent | jq -r '.[] | select(.private!=true) | .name') REPOS=$(curl -X GET "https://git.cluster.fun/api/v1/user/repos?page=1&limit=50&access_token=${GITEA_TOKEN}" -H "accept: application/json" --silent | jq -r '.[] | select(.private!=true) | .name')
@ -33,12 +33,12 @@ githubMakeRepo() {
# } # }
# gitlabGetRepo() { gitlabGetRepo() {
curl -f --silent "https://gitlab.com/api/v4/projects/averagemarcus/${1}?access_token=${GITLAB_TOKEN}"
# } }
# gitlabMakeRepo() { gitlabMakeRepo() {
curl -X POST -f "https://gitlab.com/api/v4/projects?access_token=${GITLAB_TOKEN}" -d '{"name": "'${1}'", "visibility": "public"}' --silent
# } }
for REPO in ${REPOS}; do for REPO in ${REPOS}; do
echo "Syncing ${REPO}" echo "Syncing ${REPO}"
@ -53,7 +53,7 @@ for REPO in ${REPOS}; do
git remote add gitea "${GITEA_BASE}${REPO}" git remote add gitea "${GITEA_BASE}${REPO}"
git remote add github "${GITHUB_BASE}${REPO}" git remote add github "${GITHUB_BASE}${REPO}"
# git remote add bitbucket "${BITBUCKET_BASE}${REPO}" # git remote add bitbucket "${BITBUCKET_BASE}${REPO}"
# git remote add gitlab "${GITLAB_BASE}${REPO}" git remote add gitlab "${GITLAB_BASE}${REPO}"
failed() { failed() {
EXIT_CODE=1 EXIT_CODE=1
@ -65,16 +65,17 @@ for REPO in ${REPOS}; do
} }
githubGetRepo ${REPO} || githubMakeRepo ${REPO} githubGetRepo ${REPO} || githubMakeRepo ${REPO}
gitlabGetRepo ${REPO} || gitlabMakeRepo ${REPO}
git pull --ff-only gitea ${BRANCH} || failed git pull --ff-only gitea ${BRANCH} || failed
git pull --ff-only github ${BRANCH} || printf "\n Unable to pull from GitHub\n\n" git pull --ff-only github ${BRANCH} || printf "\n Unable to pull from GitHub\n\n"
# git pull --ff-only bitbucket ${BRANCH} || printf "\n Unable to pull from BitBucket\n\n" # git pull --ff-only bitbucket ${BRANCH} || printf "\n Unable to pull from BitBucket\n\n"
# git pull --ff-only gitlab ${BRANCH} || printf "\n Unable to pull from Gitlab\n\n" git pull --ff-only gitlab ${BRANCH} || printf "\n Unable to pull from Gitlab\n\n"
git push gitea ${BRANCH} || failed git push gitea ${BRANCH} || failed
git push github ${BRANCH} || failed git push github ${BRANCH} || failed
# git push bitbucket ${BRANCH} || failed # git push bitbucket ${BRANCH} || failed
# git push gitlab ${BRANCH} || failed git push gitlab ${BRANCH} || failed
cd .. cd ..
rm -rf ${REPO} rm -rf ${REPO}