61 lines
2 KiB
Python
Executable file
61 lines
2 KiB
Python
Executable file
#!/usr/bin/python -tt
|
|
|
|
import sys, os
|
|
|
|
commands = {
|
|
"git-receive-pack": "/usr/bin/git-receive-pack",
|
|
"git-upload-pack": "/usr/bin/git-upload-pack",
|
|
"bzr": "/usr/bin/run-bzr",
|
|
"hg": "/usr/bin/run-hg",
|
|
"mtn": "/usr/bin/run-mtn",
|
|
"svnserve": "/usr/bin/run-svnserve",
|
|
"scp": "/usr/bin/scp",
|
|
}
|
|
|
|
if __name__ == '__main__':
|
|
orig_cmd = os.environ.get('SSH_ORIGINAL_COMMAND')
|
|
if not orig_cmd:
|
|
print "Need a command"
|
|
sys.exit(1)
|
|
allargs = orig_cmd.split()
|
|
try:
|
|
basecmd = os.path.basename(allargs[0])
|
|
cmd = commands[basecmd]
|
|
except:
|
|
sys.stderr.write("Invalid command %s\n" % orig_cmd)
|
|
sys.exit(2)
|
|
|
|
if basecmd in ('git-receive-pack', 'git-upload-pack'):
|
|
# git repositories need to be parsed specially
|
|
thearg = ' '.join(allargs[1:])
|
|
if thearg[0] == "'" and thearg[-1] == "'":
|
|
thearg = thearg.replace("'","")
|
|
thearg = thearg.replace("\\'", "")
|
|
if thearg[:len('/git/')] != '/git/' or not os.path.isdir(thearg):
|
|
print "Invalid repository %s" % thearg
|
|
sys.exit(3)
|
|
allargs = [thearg]
|
|
elif basecmd in ('scp'):
|
|
thearg = ' '.join(allargs[1:])
|
|
firstLetter = allargs[2][0]
|
|
secondLetter = allargs[2][1]
|
|
uploadTarget = "/srv/web/releases/%s/%s/%s/" % (firstLetter, secondLetter, allargs[2])
|
|
if thearg.find('/') != -1:
|
|
print "scp yourfile-1.2.tar.gz scm.fedorahosted.org:$YOURPROJECT # No trailing /"
|
|
sys.exit(4)
|
|
elif not os.path.isdir(uploadTarget):
|
|
print "http://fedorahosted.org/releases/%s/%s/%s does not exist!" % (firstLetter, secondLetter, allargs[2])
|
|
sys.exit(5)
|
|
else:
|
|
newargs = []
|
|
newargs.append(allargs[0])
|
|
newargs.append(allargs[1])
|
|
newargs.append(uploadTarget)
|
|
os.execv(cmd, [cmd] + newargs[1:])
|
|
sys.exit(1)
|
|
else:
|
|
allargs = allargs[1:]
|
|
os.execv(cmd, [cmd] + allargs)
|
|
sys.exit(1)
|
|
|
|
|