2010-06-01 12:57:33 +02:00
|
|
|
#!/bin/sh
|
2010-04-24 19:30:38 +02:00
|
|
|
|
|
|
|
# please make sure this file is NOT chmod +x
|
|
|
|
|
2010-10-21 19:06:15 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# settings for various ADCs, collected in one place for ease of keeping local
|
|
|
|
# settings intact during upgrades (you only have to worry about this file
|
|
|
|
# now). Documentation for the variables, however, is in the respective ADC
|
|
|
|
|
|
|
|
# settings for 'rm' ADC
|
|
|
|
ARE_YOU_SURE=1
|
|
|
|
USE_LOCK_UNLOCK=1
|
|
|
|
|
|
|
|
# settings for 'trash' ADC
|
|
|
|
TRASH_CAN=$GL_REPO_BASE_ABS/deleted
|
|
|
|
TRASH_SUFFIX=`date +%Y-%m-%d_%H:%M:%S`
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# test an option value more concisely
|
|
|
|
opt() {
|
|
|
|
[ "$1" = "1" ] && return 0
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
valid_owned_repo() {
|
|
|
|
# check that an arg passed is a valid repo and the current user owns it
|
|
|
|
[ -z "$1" ] && die need a repo name
|
2010-10-27 19:38:58 +02:00
|
|
|
get_rights_and_owner $1
|
2010-10-21 19:06:15 +02:00
|
|
|
[ "$owner" = "$GL_USER" ] || die "$repo does not exist or is not yours!"
|
|
|
|
|
|
|
|
# and we sneak this in too, quietly :)
|
|
|
|
cd $GL_REPO_BASE_ABS
|
|
|
|
}
|
|
|
|
|
2010-04-24 19:30:38 +02:00
|
|
|
die() { echo "$@"; exit 1; }
|
|
|
|
|
2010-10-27 19:38:58 +02:00
|
|
|
# NOTE: this also sets $repo to the normalised (without .git suffix) reponame
|
2010-04-24 19:30:38 +02:00
|
|
|
get_rights_and_owner() {
|
|
|
|
local ans
|
2010-10-27 19:38:58 +02:00
|
|
|
repo=${1%.git}
|
|
|
|
ans=$(perl -I$GL_BINDIR -Mgitolite -e 'cli_repo_rights("'$repo'")')
|
2010-04-24 19:30:38 +02:00
|
|
|
|
|
|
|
# set shell variables as needed
|
|
|
|
owner=${ans#* }
|
|
|
|
rights=${ans% *}
|
2010-06-01 12:57:33 +02:00
|
|
|
echo $rights | grep C >/dev/null 2>&1 && perm_create=yes || perm_create=
|
|
|
|
echo $rights | grep R >/dev/null 2>&1 && perm_read=yes || perm_read=
|
|
|
|
echo $rights | grep W >/dev/null 2>&1 && perm_write=yes || perm_write=
|
2010-04-24 19:30:38 +02:00
|
|
|
}
|