##// END OF EJS Templates
remove trailing white-spaces and empty lines from extra/svn/reposman.rb....
Toshi MARUYAMA -
r5705:574511fcedee
parent child
Show More
@@ -1,312 +1,308
1 1 #!/usr/bin/env ruby
2 2
3 3 # == Synopsis
4 4 #
5 5 # reposman: manages your repositories with Redmine
6 6 #
7 7 # == Usage
8 8 #
9 9 # reposman [OPTIONS...] -s [DIR] -r [HOST]
10 #
10 #
11 11 # Examples:
12 12 # reposman --svn-dir=/var/svn --redmine-host=redmine.example.net --scm subversion
13 13 # reposman -s /var/git -r redmine.example.net -u http://svn.example.net --scm git
14 14 #
15 15 # == Arguments (mandatory)
16 16 #
17 17 # -s, --svn-dir=DIR use DIR as base directory for svn repositories
18 18 # -r, --redmine-host=HOST assume Redmine is hosted on HOST. Examples:
19 19 # -r redmine.example.net
20 20 # -r http://redmine.example.net
21 21 # -r https://example.net/redmine
22 22 # -k, --key=KEY use KEY as the Redmine API key
23 23 #
24 24 # == Options
25 25 #
26 26 # -o, --owner=OWNER owner of the repository. using the rails login
27 27 # allow user to browse the repository within
28 28 # Redmine even for private project. If you want to
29 29 # share repositories through Redmine.pm, you need
30 30 # to use the apache owner.
31 31 # -g, --group=GROUP group of the repository. (default: root)
32 32 # --scm=SCM the kind of SCM repository you want to create (and
33 33 # register) in Redmine (default: Subversion).
34 34 # reposman is able to create Git and Subversion
35 35 # repositories. For all other kind, you must specify
36 36 # a --command option
37 37 # -u, --url=URL the base url Redmine will use to access your
38 38 # repositories. This option is used to automatically
39 39 # register the repositories in Redmine. The project
40 40 # identifier will be appended to this url. Examples:
41 41 # -u https://example.net/svn
42 42 # -u file:///var/svn/
43 43 # if this option isn't set, reposman won't register
44 44 # the repositories in Redmine
45 45 # -c, --command=COMMAND use this command instead of "svnadmin create" to
46 46 # create a repository. This option can be used to
47 47 # create repositories other than subversion and git
48 48 # kind.
49 49 # This command override the default creation for git
50 50 # and subversion.
51 51 # -f, --force force repository creation even if the project
52 52 # repository is already declared in Redmine
53 53 # -t, --test only show what should be done
54 54 # -h, --help show help and exit
55 55 # -v, --verbose verbose
56 56 # -V, --version print version and exit
57 57 # -q, --quiet no log
58 58 #
59 59 # == References
60 #
60 #
61 61 # You can find more information on the redmine's wiki : http://www.redmine.org/wiki/redmine/HowTos
62 62
63 63
64 64 require 'getoptlong'
65 65 require 'rdoc/usage'
66 66 require 'find'
67 67 require 'etc'
68 68
69 69 Version = "1.3"
70 70 SUPPORTED_SCM = %w( Subversion Darcs Mercurial Bazaar Git Filesystem )
71 71
72 72 opts = GetoptLong.new(
73 73 ['--svn-dir', '-s', GetoptLong::REQUIRED_ARGUMENT],
74 74 ['--redmine-host', '-r', GetoptLong::REQUIRED_ARGUMENT],
75 75 ['--key', '-k', GetoptLong::REQUIRED_ARGUMENT],
76 76 ['--owner', '-o', GetoptLong::REQUIRED_ARGUMENT],
77 77 ['--group', '-g', GetoptLong::REQUIRED_ARGUMENT],
78 78 ['--url', '-u', GetoptLong::REQUIRED_ARGUMENT],
79 79 ['--command' , '-c', GetoptLong::REQUIRED_ARGUMENT],
80 80 ['--scm', GetoptLong::REQUIRED_ARGUMENT],
81 81 ['--test', '-t', GetoptLong::NO_ARGUMENT],
82 82 ['--force', '-f', GetoptLong::NO_ARGUMENT],
83 83 ['--verbose', '-v', GetoptLong::NO_ARGUMENT],
84 84 ['--version', '-V', GetoptLong::NO_ARGUMENT],
85 85 ['--help' , '-h', GetoptLong::NO_ARGUMENT],
86 86 ['--quiet' , '-q', GetoptLong::NO_ARGUMENT]
87 87 )
88 88
89 89 $verbose = 0
90 90 $quiet = false
91 91 $redmine_host = ''
92 92 $repos_base = ''
93 93 $svn_owner = 'root'
94 94 $svn_group = 'root'
95 95 $use_groupid = true
96 96 $svn_url = false
97 97 $test = false
98 98 $force = false
99 99 $scm = 'Subversion'
100 100
101 101 def log(text, options={})
102 102 level = options[:level] || 0
103 103 puts text unless $quiet or level > $verbose
104 104 exit 1 if options[:exit]
105 105 end
106 106
107 107 def system_or_raise(command)
108 108 raise "\"#{command}\" failed" unless system command
109 109 end
110 110
111 111 module SCM
112 112
113 113 module Subversion
114 114 def self.create(path)
115 115 system_or_raise "svnadmin create #{path}"
116 116 end
117 117 end
118 118
119 119 module Git
120 120 def self.create(path)
121 121 Dir.mkdir path
122 122 Dir.chdir(path) do
123 123 system_or_raise "git --bare init --shared"
124 124 system_or_raise "git update-server-info"
125 125 end
126 126 end
127 127 end
128 128
129 129 end
130 130
131 131 begin
132 132 opts.each do |opt, arg|
133 133 case opt
134 134 when '--svn-dir'; $repos_base = arg.dup
135 135 when '--redmine-host'; $redmine_host = arg.dup
136 136 when '--key'; $api_key = arg.dup
137 137 when '--owner'; $svn_owner = arg.dup; $use_groupid = false;
138 138 when '--group'; $svn_group = arg.dup; $use_groupid = false;
139 139 when '--url'; $svn_url = arg.dup
140 140 when '--scm'; $scm = arg.dup.capitalize; log("Invalid SCM: #{$scm}", :exit => true) unless SUPPORTED_SCM.include?($scm)
141 141 when '--command'; $command = arg.dup
142 142 when '--verbose'; $verbose += 1
143 143 when '--test'; $test = true
144 144 when '--force'; $force = true
145 145 when '--version'; puts Version; exit
146 146 when '--help'; RDoc::usage
147 147 when '--quiet'; $quiet = true
148 148 end
149 149 end
150 150 rescue
151 151 exit 1
152 152 end
153 153
154 154 if $test
155 155 log("running in test mode")
156 156 end
157 157
158 158 # Make sure command is overridden if SCM vendor is not handled internally (for the moment Subversion and Git)
159 159 if $command.nil?
160 160 begin
161 161 scm_module = SCM.const_get($scm)
162 162 rescue
163 163 log("Please use --command option to specify how to create a #{$scm} repository.", :exit => true)
164 164 end
165 165 end
166 166
167 167 $svn_url += "/" if $svn_url and not $svn_url.match(/\/$/)
168 168
169 169 if ($redmine_host.empty? or $repos_base.empty?)
170 170 RDoc::usage
171 171 end
172 172
173 173 unless File.directory?($repos_base)
174 174 log("directory '#{$repos_base}' doesn't exists", :exit => true)
175 175 end
176 176
177 177 begin
178 178 require 'active_resource'
179 179 rescue LoadError
180 180 log("This script requires activeresource.\nRun 'gem install activeresource' to install it.", :exit => true)
181 181 end
182 182
183 183 class Project < ActiveResource::Base
184 184 self.headers["User-agent"] = "Redmine repository manager/#{Version}"
185 185 end
186 186
187 187 log("querying Redmine for projects...", :level => 1);
188 188
189 189 $redmine_host.gsub!(/^/, "http://") unless $redmine_host.match("^https?://")
190 190 $redmine_host.gsub!(/\/$/, '')
191 191
192 192 Project.site = "#{$redmine_host}/sys";
193 193
194 194 begin
195 195 # Get all active projects that have the Repository module enabled
196 196 projects = Project.find(:all, :params => {:key => $api_key})
197 197 rescue => e
198 198 log("Unable to connect to #{Project.site}: #{e}", :exit => true)
199 199 end
200 200
201 201 if projects.nil?
202 202 log('no project found, perhaps you forgot to "Enable WS for repository management"', :exit => true)
203 203 end
204 204
205 205 log("retrieved #{projects.size} projects", :level => 1)
206 206
207 207 def set_owner_and_rights(project, repos_path, &block)
208 208 if mswin?
209 209 yield if block_given?
210 210 else
211 211 uid, gid = Etc.getpwnam($svn_owner).uid, ($use_groupid ? Etc.getgrnam(project.identifier).gid : Etc.getgrnam($svn_group).gid)
212 212 right = project.is_public ? 0775 : 0770
213 213 yield if block_given?
214 214 Find.find(repos_path) do |f|
215 215 File.chmod right, f
216 216 File.chown uid, gid, f
217 217 end
218 218 end
219 219 end
220 220
221 221 def other_read_right?(file)
222 222 (File.stat(file).mode & 0007).zero? ? false : true
223 223 end
224 224
225 225 def owner_name(file)
226 226 mswin? ?
227 227 $svn_owner :
228 Etc.getpwuid( File.stat(file).uid ).name
228 Etc.getpwuid( File.stat(file).uid ).name
229 229 end
230
230
231 231 def mswin?
232 232 (RUBY_PLATFORM =~ /(:?mswin|mingw)/) || (RUBY_PLATFORM == 'java' && (ENV['OS'] || ENV['os']) =~ /windows/i)
233 233 end
234 234
235 235 projects.each do |project|
236 236 log("treating project #{project.name}", :level => 1)
237 237
238 238 if project.identifier.empty?
239 239 log("\tno identifier for project #{project.name}")
240 240 next
241 241 elsif not project.identifier.match(/^[a-z0-9\-]+$/)
242 242 log("\tinvalid identifier for project #{project.name} : #{project.identifier}");
243 243 next;
244 244 end
245 245
246 246 repos_path = File.join($repos_base, project.identifier).gsub(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR)
247 247
248 248 if File.directory?(repos_path)
249
250 249 # we must verify that repository has the good owner and the good
251 250 # rights before leaving
252 251 other_read = other_read_right?(repos_path)
253 252 owner = owner_name(repos_path)
254 253 next if project.is_public == other_read and owner == $svn_owner
255 254
256 255 if $test
257 256 log("\tchange mode on #{repos_path}")
258 257 next
259 258 end
260 259
261 260 begin
262 261 set_owner_and_rights(project, repos_path)
263 262 rescue Errno::EPERM => e
264 263 log("\tunable to change mode on #{repos_path} : #{e}\n")
265 264 next
266 265 end
267 266
268 267 log("\tmode change on #{repos_path}");
269 268
270 269 else
271 270 # if repository is already declared in redmine, we don't create
272 271 # unless user use -f with reposman
273 272 if $force == false and project.respond_to?(:repository)
274 273 log("\trepository for project #{project.identifier} already exists in Redmine", :level => 1)
275 274 next
276 275 end
277 276
278 277 project.is_public ? File.umask(0002) : File.umask(0007)
279 278
280 279 if $test
281 280 log("\tcreate repository #{repos_path}")
282 281 log("\trepository #{repos_path} registered in Redmine with url #{$svn_url}#{project.identifier}") if $svn_url;
283 282 next
284 283 end
285 284
286 285 begin
287 286 set_owner_and_rights(project, repos_path) do
288 287 if scm_module.nil?
289 288 system_or_raise "#{$command} #{repos_path}"
290 289 else
291 290 scm_module.create(repos_path)
292 291 end
293 292 end
294 293 rescue => e
295 294 log("\tunable to create #{repos_path} : #{e}\n")
296 295 next
297 296 end
298 297
299 298 if $svn_url
300 299 begin
301 300 project.post(:repository, :vendor => $scm, :repository => {:url => "#{$svn_url}#{project.identifier}"}, :key => $api_key)
302 301 log("\trepository #{repos_path} registered in Redmine with url #{$svn_url}#{project.identifier}");
303 302 rescue => e
304 303 log("\trepository #{repos_path} not registered in Redmine: #{e.message}");
305 304 end
306 305 end
307
308 306 log("\trepository #{repos_path} created");
309 307 end
310
311 308 end
312 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now