To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / controllers / repositories_controller.rb @ 443:350acce374a2

History | View | Annotate | Download (12.4 KB)

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