Chris@0
|
1 # Redmine - project management software
|
Chris@0
|
2 # Copyright (C) 2006-2009 Jean-Philippe Lang
|
Chris@0
|
3 #
|
Chris@0
|
4 # This program is free software; you can redistribute it and/or
|
Chris@0
|
5 # modify it under the terms of the GNU General Public License
|
Chris@0
|
6 # as published by the Free Software Foundation; either version 2
|
Chris@0
|
7 # of the License, or (at your option) any later version.
|
Chris@0
|
8 #
|
Chris@0
|
9 # This program is distributed in the hope that it will be useful,
|
Chris@0
|
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Chris@0
|
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Chris@0
|
12 # GNU General Public License for more details.
|
Chris@0
|
13 #
|
Chris@0
|
14 # You should have received a copy of the GNU General Public License
|
Chris@0
|
15 # along with this program; if not, write to the Free Software
|
Chris@0
|
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
Chris@0
|
17
|
Chris@0
|
18 require 'SVG/Graph/Bar'
|
Chris@0
|
19 require 'SVG/Graph/BarHorizontal'
|
Chris@0
|
20 require 'digest/sha1'
|
Chris@0
|
21
|
Chris@0
|
22 class ChangesetNotFound < Exception; end
|
Chris@0
|
23 class InvalidRevisionParam < Exception; end
|
Chris@0
|
24
|
Chris@0
|
25 class RepositoriesController < ApplicationController
|
Chris@0
|
26 menu_item :repository
|
Chris@0
|
27 menu_item :settings, :only => :edit
|
Chris@0
|
28 default_search_scope :changesets
|
Chris@0
|
29
|
Chris@0
|
30 before_filter :find_repository, :except => :edit
|
Chris@0
|
31 before_filter :find_project, :only => :edit
|
Chris@0
|
32 before_filter :authorize
|
Chris@0
|
33 accept_key_auth :revisions
|
Chris@0
|
34
|
Chris@0
|
35 rescue_from Redmine::Scm::Adapters::CommandFailed, :with => :show_error_command_failed
|
Chris@0
|
36
|
Chris@0
|
37 def edit
|
Chris@0
|
38 @repository = @project.repository
|
luis@213
|
39
|
Chris@0
|
40 if !@repository
|
Chris@0
|
41 @repository = Repository.factory(params[:repository_scm])
|
Chris@0
|
42 @repository.project = @project if @repository
|
Chris@0
|
43 end
|
Chris@0
|
44 if request.post? && @repository
|
Chris@0
|
45 @repository.attributes = params[:repository]
|
Chris@0
|
46 @repository.save
|
Chris@0
|
47 end
|
luis@272
|
48
|
Chris@0
|
49 render(:update) do |page|
|
Chris@0
|
50 page.replace_html "tab-content-repository", :partial => 'projects/settings/repository'
|
Chris@0
|
51 if @repository && !@project.repository
|
Chris@0
|
52 @project.reload #needed to reload association
|
Chris@0
|
53 page.replace_html "main-menu", render_main_menu(@project)
|
Chris@0
|
54 end
|
Chris@0
|
55 end
|
Chris@0
|
56 end
|
Chris@0
|
57
|
Chris@0
|
58 def committers
|
Chris@0
|
59 @committers = @repository.committers
|
Chris@0
|
60 @users = @project.users
|
Chris@0
|
61 additional_user_ids = @committers.collect(&:last).collect(&:to_i) - @users.collect(&:id)
|
Chris@0
|
62 @users += User.find_all_by_id(additional_user_ids) unless additional_user_ids.empty?
|
Chris@0
|
63 @users.compact!
|
Chris@0
|
64 @users.sort!
|
Chris@0
|
65 if request.post? && params[:committers].is_a?(Hash)
|
Chris@0
|
66 # Build a hash with repository usernames as keys and corresponding user ids as values
|
Chris@0
|
67 @repository.committer_ids = params[:committers].values.inject({}) {|h, c| h[c.first] = c.last; h}
|
Chris@0
|
68 flash[:notice] = l(:notice_successful_update)
|
Chris@0
|
69 redirect_to :action => 'committers', :id => @project
|
Chris@0
|
70 end
|
Chris@0
|
71 end
|
Chris@0
|
72
|
Chris@0
|
73 def destroy
|
Chris@0
|
74 @repository.destroy
|
Chris@0
|
75 redirect_to :controller => 'projects', :action => 'settings', :id => @project, :tab => 'repository'
|
Chris@0
|
76 end
|
Chris@0
|
77
|
Chris@0
|
78 def show
|
Chris@0
|
79 @repository.fetch_changesets if Setting.autofetch_changesets? && @path.empty?
|
Chris@0
|
80
|
Chris@0
|
81 @entries = @repository.entries(@path, @rev)
|
Chris@0
|
82 if request.xhr?
|
Chris@0
|
83 @entries ? render(:partial => 'dir_list_content') : render(:nothing => true)
|
Chris@0
|
84 else
|
Chris@0
|
85 (show_error_not_found; return) unless @entries
|
Chris@0
|
86 @changesets = @repository.latest_changesets(@path, @rev)
|
Chris@0
|
87 @properties = @repository.properties(@path, @rev)
|
Chris@0
|
88 render :action => 'show'
|
Chris@0
|
89 end
|
Chris@0
|
90 end
|
Chris@0
|
91
|
Chris@0
|
92 alias_method :browse, :show
|
Chris@0
|
93
|
Chris@0
|
94 def changes
|
Chris@0
|
95 @entry = @repository.entry(@path, @rev)
|
Chris@0
|
96 (show_error_not_found; return) unless @entry
|
Chris@0
|
97 @changesets = @repository.latest_changesets(@path, @rev, Setting.repository_log_display_limit.to_i)
|
Chris@0
|
98 @properties = @repository.properties(@path, @rev)
|
Chris@0
|
99 end
|
Chris@0
|
100
|
Chris@0
|
101 def revisions
|
Chris@0
|
102 @changeset_count = @repository.changesets.count
|
Chris@0
|
103 @changeset_pages = Paginator.new self, @changeset_count,
|
Chris@0
|
104 per_page_option,
|
Chris@0
|
105 params['page']
|
Chris@0
|
106 @changesets = @repository.changesets.find(:all,
|
Chris@0
|
107 :limit => @changeset_pages.items_per_page,
|
Chris@0
|
108 :offset => @changeset_pages.current.offset,
|
Chris@0
|
109 :include => [:user, :repository])
|
Chris@0
|
110
|
Chris@0
|
111 respond_to do |format|
|
Chris@0
|
112 format.html { render :layout => false if request.xhr? }
|
Chris@0
|
113 format.atom { render_feed(@changesets, :title => "#{@project.name}: #{l(:label_revision_plural)}") }
|
Chris@0
|
114 end
|
Chris@0
|
115 end
|
Chris@0
|
116
|
Chris@0
|
117 def entry
|
Chris@0
|
118 @entry = @repository.entry(@path, @rev)
|
Chris@0
|
119 (show_error_not_found; return) unless @entry
|
Chris@0
|
120
|
Chris@0
|
121 # If the entry is a dir, show the browser
|
Chris@0
|
122 (show; return) if @entry.is_dir?
|
Chris@0
|
123
|
Chris@0
|
124 @content = @repository.cat(@path, @rev)
|
Chris@0
|
125 (show_error_not_found; return) unless @content
|
Chris@0
|
126 if 'raw' == params[:format] || @content.is_binary_data? || (@entry.size && @entry.size > Setting.file_max_size_displayed.to_i.kilobyte)
|
Chris@0
|
127 # Force the download
|
Chris@0
|
128 send_data @content, :filename => @path.split('/').last
|
Chris@0
|
129 else
|
Chris@0
|
130 # Prevent empty lines when displaying a file with Windows style eol
|
Chris@0
|
131 @content.gsub!("\r\n", "\n")
|
Chris@0
|
132 end
|
Chris@0
|
133 end
|
Chris@0
|
134
|
Chris@0
|
135 def annotate
|
Chris@0
|
136 @entry = @repository.entry(@path, @rev)
|
Chris@0
|
137 (show_error_not_found; return) unless @entry
|
Chris@0
|
138
|
Chris@0
|
139 @annotate = @repository.scm.annotate(@path, @rev)
|
Chris@0
|
140 (render_error l(:error_scm_annotate); return) if @annotate.nil? || @annotate.empty?
|
Chris@0
|
141 end
|
Chris@0
|
142
|
Chris@0
|
143 def revision
|
Chris@0
|
144 @changeset = @repository.find_changeset_by_name(@rev)
|
Chris@0
|
145 raise ChangesetNotFound unless @changeset
|
Chris@0
|
146
|
Chris@0
|
147 respond_to do |format|
|
Chris@0
|
148 format.html
|
Chris@0
|
149 format.js {render :layout => false}
|
Chris@0
|
150 end
|
Chris@0
|
151 rescue ChangesetNotFound
|
Chris@0
|
152 show_error_not_found
|
Chris@0
|
153 end
|
Chris@0
|
154
|
Chris@0
|
155 def diff
|
Chris@0
|
156 if params[:format] == 'diff'
|
Chris@0
|
157 @diff = @repository.diff(@path, @rev, @rev_to)
|
Chris@0
|
158 (show_error_not_found; return) unless @diff
|
Chris@0
|
159 filename = "changeset_r#{@rev}"
|
Chris@0
|
160 filename << "_r#{@rev_to}" if @rev_to
|
Chris@0
|
161 send_data @diff.join, :filename => "#{filename}.diff",
|
Chris@0
|
162 :type => 'text/x-patch',
|
Chris@0
|
163 :disposition => 'attachment'
|
Chris@0
|
164 else
|
Chris@0
|
165 @diff_type = params[:type] || User.current.pref[:diff_type] || 'inline'
|
Chris@0
|
166 @diff_type = 'inline' unless %w(inline sbs).include?(@diff_type)
|
Chris@0
|
167
|
Chris@0
|
168 # Save diff type as user preference
|
Chris@0
|
169 if User.current.logged? && @diff_type != User.current.pref[:diff_type]
|
Chris@0
|
170 User.current.pref[:diff_type] = @diff_type
|
Chris@0
|
171 User.current.preference.save
|
Chris@0
|
172 end
|
Chris@0
|
173
|
Chris@0
|
174 @cache_key = "repositories/diff/#{@repository.id}/" + Digest::MD5.hexdigest("#{@path}-#{@rev}-#{@rev_to}-#{@diff_type}")
|
Chris@0
|
175 unless read_fragment(@cache_key)
|
Chris@0
|
176 @diff = @repository.diff(@path, @rev, @rev_to)
|
Chris@0
|
177 show_error_not_found unless @diff
|
Chris@0
|
178 end
|
Chris@0
|
179 end
|
Chris@0
|
180 end
|
Chris@0
|
181
|
Chris@0
|
182 def stats
|
Chris@0
|
183 end
|
Chris@0
|
184
|
Chris@0
|
185 def graph
|
Chris@0
|
186 data = nil
|
Chris@0
|
187 case params[:graph]
|
Chris@0
|
188 when "commits_per_month"
|
Chris@0
|
189 data = graph_commits_per_month(@repository)
|
Chris@0
|
190 when "commits_per_author"
|
Chris@0
|
191 data = graph_commits_per_author(@repository)
|
Chris@0
|
192 end
|
Chris@0
|
193 if data
|
Chris@0
|
194 headers["Content-Type"] = "image/svg+xml"
|
Chris@0
|
195 send_data(data, :type => "image/svg+xml", :disposition => "inline")
|
Chris@0
|
196 else
|
Chris@0
|
197 render_404
|
Chris@0
|
198 end
|
Chris@0
|
199 end
|
Chris@0
|
200
|
Chris@0
|
201 private
|
Chris@0
|
202 def find_repository
|
Chris@0
|
203 @project = Project.find(params[:id])
|
Chris@0
|
204 @repository = @project.repository
|
Chris@0
|
205 (render_404; return false) unless @repository
|
Chris@0
|
206 @path = params[:path].join('/') unless params[:path].nil?
|
Chris@0
|
207 @path ||= ''
|
Chris@0
|
208 @rev = params[:rev].blank? ? @repository.default_branch : params[:rev].strip
|
Chris@0
|
209 @rev_to = params[:rev_to]
|
Chris@0
|
210 rescue ActiveRecord::RecordNotFound
|
Chris@0
|
211 render_404
|
Chris@0
|
212 rescue InvalidRevisionParam
|
Chris@0
|
213 show_error_not_found
|
Chris@0
|
214 end
|
Chris@0
|
215
|
Chris@0
|
216 def show_error_not_found
|
Chris@0
|
217 render_error l(:error_scm_not_found)
|
Chris@0
|
218 end
|
Chris@0
|
219
|
Chris@0
|
220 # Handler for Redmine::Scm::Adapters::CommandFailed exception
|
Chris@0
|
221 def show_error_command_failed(exception)
|
Chris@0
|
222 render_error l(:error_scm_command_failed, exception.message)
|
Chris@0
|
223 end
|
Chris@0
|
224
|
Chris@0
|
225 def graph_commits_per_month(repository)
|
Chris@0
|
226 @date_to = Date.today
|
Chris@0
|
227 @date_from = @date_to << 11
|
Chris@0
|
228 @date_from = Date.civil(@date_from.year, @date_from.month, 1)
|
Chris@0
|
229 commits_by_day = repository.changesets.count(:all, :group => :commit_date, :conditions => ["commit_date BETWEEN ? AND ?", @date_from, @date_to])
|
Chris@0
|
230 commits_by_month = [0] * 12
|
Chris@0
|
231 commits_by_day.each {|c| commits_by_month[c.first.to_date.months_ago] += c.last }
|
Chris@0
|
232
|
Chris@0
|
233 changes_by_day = repository.changes.count(:all, :group => :commit_date, :conditions => ["commit_date BETWEEN ? AND ?", @date_from, @date_to])
|
Chris@0
|
234 changes_by_month = [0] * 12
|
Chris@0
|
235 changes_by_day.each {|c| changes_by_month[c.first.to_date.months_ago] += c.last }
|
Chris@0
|
236
|
Chris@0
|
237 fields = []
|
Chris@0
|
238 12.times {|m| fields << month_name(((Date.today.month - 1 - m) % 12) + 1)}
|
Chris@0
|
239
|
Chris@0
|
240 graph = SVG::Graph::Bar.new(
|
Chris@0
|
241 :height => 300,
|
Chris@0
|
242 :width => 800,
|
Chris@0
|
243 :fields => fields.reverse,
|
Chris@0
|
244 :stack => :side,
|
Chris@0
|
245 :scale_integers => true,
|
Chris@0
|
246 :step_x_labels => 2,
|
Chris@0
|
247 :show_data_values => false,
|
Chris@0
|
248 :graph_title => l(:label_commits_per_month),
|
Chris@0
|
249 :show_graph_title => true
|
Chris@0
|
250 )
|
Chris@0
|
251
|
Chris@0
|
252 graph.add_data(
|
Chris@0
|
253 :data => commits_by_month[0..11].reverse,
|
Chris@0
|
254 :title => l(:label_revision_plural)
|
Chris@0
|
255 )
|
Chris@0
|
256
|
Chris@0
|
257 graph.add_data(
|
Chris@0
|
258 :data => changes_by_month[0..11].reverse,
|
Chris@0
|
259 :title => l(:label_change_plural)
|
Chris@0
|
260 )
|
Chris@0
|
261
|
Chris@0
|
262 graph.burn
|
Chris@0
|
263 end
|
Chris@0
|
264
|
Chris@0
|
265 def graph_commits_per_author(repository)
|
Chris@0
|
266 commits_by_author = repository.changesets.count(:all, :group => :committer)
|
Chris@0
|
267 commits_by_author.to_a.sort! {|x, y| x.last <=> y.last}
|
Chris@0
|
268
|
Chris@0
|
269 changes_by_author = repository.changes.count(:all, :group => :committer)
|
Chris@0
|
270 h = changes_by_author.inject({}) {|o, i| o[i.first] = i.last; o}
|
Chris@0
|
271
|
Chris@0
|
272 fields = commits_by_author.collect {|r| r.first}
|
Chris@0
|
273 commits_data = commits_by_author.collect {|r| r.last}
|
Chris@0
|
274 changes_data = commits_by_author.collect {|r| h[r.first] || 0}
|
Chris@0
|
275
|
Chris@0
|
276 fields = fields + [""]*(10 - fields.length) if fields.length<10
|
Chris@0
|
277 commits_data = commits_data + [0]*(10 - commits_data.length) if commits_data.length<10
|
Chris@0
|
278 changes_data = changes_data + [0]*(10 - changes_data.length) if changes_data.length<10
|
Chris@0
|
279
|
Chris@0
|
280 # Remove email adress in usernames
|
Chris@0
|
281 fields = fields.collect {|c| c.gsub(%r{<.+@.+>}, '') }
|
Chris@0
|
282
|
Chris@0
|
283 graph = SVG::Graph::BarHorizontal.new(
|
Chris@0
|
284 :height => 400,
|
Chris@0
|
285 :width => 800,
|
Chris@0
|
286 :fields => fields,
|
Chris@0
|
287 :stack => :side,
|
Chris@0
|
288 :scale_integers => true,
|
Chris@0
|
289 :show_data_values => false,
|
Chris@0
|
290 :rotate_y_labels => false,
|
Chris@0
|
291 :graph_title => l(:label_commits_per_author),
|
Chris@0
|
292 :show_graph_title => true
|
Chris@0
|
293 )
|
Chris@0
|
294
|
Chris@0
|
295 graph.add_data(
|
Chris@0
|
296 :data => commits_data,
|
Chris@0
|
297 :title => l(:label_revision_plural)
|
Chris@0
|
298 )
|
Chris@0
|
299
|
Chris@0
|
300 graph.add_data(
|
Chris@0
|
301 :data => changes_data,
|
Chris@0
|
302 :title => l(:label_change_plural)
|
Chris@0
|
303 )
|
Chris@0
|
304
|
Chris@0
|
305 graph.burn
|
Chris@0
|
306 end
|
Chris@0
|
307
|
Chris@0
|
308 end
|
Chris@0
|
309
|
Chris@0
|
310 class Date
|
Chris@0
|
311 def months_ago(date = Date.today)
|
Chris@0
|
312 (date.year - self.year)*12 + (date.month - self.month)
|
Chris@0
|
313 end
|
Chris@0
|
314
|
Chris@0
|
315 def weeks_ago(date = Date.today)
|
Chris@0
|
316 (date.year - self.year)*52 + (date.cweek - self.cweek)
|
Chris@0
|
317 end
|
Chris@0
|
318 end
|
Chris@0
|
319
|
Chris@0
|
320 class String
|
Chris@0
|
321 def with_leading_slash
|
Chris@0
|
322 starts_with?('/') ? self : "/#{self}"
|
Chris@0
|
323 end
|
Chris@0
|
324 end
|