* reposman can create git repository with "--scm git" option

* light refactoring

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1866 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Nicolas Chuche 2008-09-15 19:37:43 +00:00
parent 25ed19cb35
commit a07a6d4aa4
1 changed files with 53 additions and 19 deletions

View File

@ -2,15 +2,15 @@
# == Synopsis # == Synopsis
# #
# reposman: manages your svn repositories with Redmine # reposman: manages your repositories with Redmine
# #
# == Usage # == Usage
# #
# reposman [OPTIONS...] -s [DIR] -r [HOST] # reposman [OPTIONS...] -s [DIR] -r [HOST]
# #
# Examples: # Examples:
# reposman --svn-dir=/var/svn --redmine-host=redmine.example.net # reposman --svn-dir=/var/svn --redmine-host=redmine.example.net --scm subversion
# reposman -s /var/svn -r redmine.example.net -u http://svn.example.net # reposman -s /var/git -r redmine.example.net -u http://svn.example.net --scm git
# #
# == Arguments (mandatory) # == Arguments (mandatory)
# #
@ -24,7 +24,12 @@
# #
# -o, --owner=OWNER owner of the repository. using the rails login # -o, --owner=OWNER owner of the repository. using the rails login
# allow user to browse the repository within # allow user to browse the repository within
# Redmine even for private project # Redmine even for private project. If you want to share repositories
# through Redmine.pm, you need to use the apache owner.
# --scm=SCM the kind of SCM repository you want to create (and register) in
# Redmine (default: Subversion). reposman is able to create Git
# and Subversion repositories. For all other kind (Bazaar,
# Darcs, Filesystem, Mercurial) you must specify a --command option
# -u, --url=URL the base url Redmine will use to access your # -u, --url=URL the base url Redmine will use to access your
# repositories. This option is used to automatically # repositories. This option is used to automatically
# register the repositories in Redmine. The project # register the repositories in Redmine. The project
@ -35,13 +40,8 @@
# the repositories in Redmine # the repositories in Redmine
# -c, --command=COMMAND use this command instead of "svnadmin create" to # -c, --command=COMMAND use this command instead of "svnadmin create" to
# create a repository. This option can be used to # create a repository. This option can be used to
# create non-subversion repositories # create repositories other than subversion and git kind.
# --scm SCM vendor used to register the repository in # This command override the default creation for git and subversion.
# Redmine (default: Subversion). Can be one of the
# other supported SCM: Bazaar, Darcs, Filesystem,
# Git, Mercurial (case sensitive).
# This option should be used when both options --url
# and --command are used.
# -f, --force force repository creation even if the project # -f, --force force repository creation even if the project
# repository is already declared in Redmine # repository is already declared in Redmine
# -t, --test only show what should be done # -t, --test only show what should be done
@ -49,6 +49,11 @@
# -v, --verbose verbose # -v, --verbose verbose
# -V, --version print version and exit # -V, --version print version and exit
# -q, --quiet no log # -q, --quiet no log
#
# == References
#
# You can find more information on the redmine's wiki : http://www.redmine.org/wiki/redmine/HowTos
require 'getoptlong' require 'getoptlong'
require 'rdoc/usage' require 'rdoc/usage'
@ -82,7 +87,6 @@ $svn_owner = 'root'
$use_groupid = true $use_groupid = true
$svn_url = false $svn_url = false
$test = false $test = false
$command = "svnadmin create"
$force = false $force = false
$scm = 'Subversion' $scm = 'Subversion'
@ -91,6 +95,30 @@ def log(text,level=0, exit=false)
exit 1 if exit exit 1 if exit
end end
def system_or_raise(command)
raise "\"#{command}\" failed" unless system command
end
module SCM
module Subversion
def self.create(path)
system_or_raise "svnadmin create #{path}"
end
end
module Git
def self.create(path)
Dir.mkdir path
Dir.chdir(path) do
system_or_raise "git --bare init --shared"
system_or_raise "git-update-server-info"
end
end
end
end
begin begin
opts.each do |opt, arg| opts.each do |opt, arg|
case opt case opt
@ -98,7 +126,7 @@ begin
when '--redmine-host'; $redmine_host = arg.dup when '--redmine-host'; $redmine_host = arg.dup
when '--owner'; $svn_owner = arg.dup; $use_groupid = false; when '--owner'; $svn_owner = arg.dup; $use_groupid = false;
when '--url'; $svn_url = arg.dup when '--url'; $svn_url = arg.dup
when '--scm'; $scm = arg.dup; log("Invalid SCM: #{$scm}", 0, true) unless SUPPORTED_SCM.include?($scm) when '--scm'; $scm = arg.dup.capitalize; log("Invalid SCM: #{$scm}", 0, true) unless SUPPORTED_SCM.include?($scm)
when '--command'; $command = arg.dup when '--command'; $command = arg.dup
when '--verbose'; $verbose += 1 when '--verbose'; $verbose += 1
when '--test'; $test = true when '--test'; $test = true
@ -116,12 +144,15 @@ if $test
log("running in test mode") log("running in test mode")
end end
# Make sure command is overridden if SCM vendor is not Subversion # Make sure command is overridden if SCM vendor is not handled internally (for the moment Subversion and Git)
if $scm != 'Subversion' && $command == 'svnadmin create' if $command.nil?
log("Please use --command option to specify how to create a #{$scm} repository.", 0, true) begin
scm_module = SCM.const_get($scm)
rescue
log("Please use --command option to specify how to create a #{$scm} repository.", 0, true)
end
end end
$svn_url += "/" if $svn_url and not $svn_url.match(/\/$/) $svn_url += "/" if $svn_url and not $svn_url.match(/\/$/)
if ($redmine_host.empty? or $repos_base.empty?) if ($redmine_host.empty? or $repos_base.empty?)
@ -230,8 +261,11 @@ projects.each do |project|
begin begin
set_owner_and_rights(project, repos_path) do set_owner_and_rights(project, repos_path) do
command = "#{$command} #{repos_path}" if scm_module.nil?
raise "#{command} failed" unless system( command ) system_or_raise "#{$command} #{repos_path}"
else
scm_module.create(repos_path)
end
end end
rescue => e rescue => e
log("\tunable to create #{repos_path} : #{e}\n") log("\tunable to create #{repos_path} : #{e}\n")