Class: RepositoriesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/repositories_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#_include_layout?, accept_api_auth, #accept_api_auth?, accept_atom_auth, #accept_atom_auth?, accept_rss_auth, #accept_rss_auth?, #api_key_from_request, #api_offset_and_limit, #api_request?, #api_switch_user_from_request, #authorize, #authorize_global, #autologin_cookie_name, #back_url, #check_if_login_required, #check_password_change, #check_project_privacy, #check_twofa_activation, #deny_access, #filename_for_content_disposition, #find_attachments, #find_current_user, #find_issue, #find_issues, #find_model_object, #find_optional_project, #find_optional_project_by_id, #find_project, #find_project_by_project_id, #find_project_from_association, #handle_unverified_request, #init_twofa_pairing_and_send_code_for, #logged_user=, #logout_user, #missing_template, model_object, #parse_params_for_bulk_update, #parse_qvalues, #per_page_option, #query_error, #query_statement_invalid, #record_project_usage, #redirect_back_or_default, #redirect_to_referer_or, #render_403, #render_404, #render_api_errors, #render_api_head, #render_api_ok, #render_attachment_warning_if_needed, #render_error, #render_feed, #render_validation_errors, #replace_none_values_with_blank, #require_admin, #require_admin_or_api_request, #require_login, #session_expiration, #session_expired?, #set_localization, #start_user_session, #try_to_autologin, #use_layout, #user_setup, #verify_authenticity_token

Methods included from Redmine::SudoMode::Controller

#process_sudo_form, #render_sudo_form, #require_sudo_mode, #sudo_mode, #sudo_timestamp_valid?, #update_sudo_timestamp!

Methods included from Redmine::MenuManager::MenuController

#current_menu, #current_menu_item, included, #menu_items, #redirect_to_menu_item, #redirect_to_project_menu_item

Methods included from Redmine::Search::Controller

#default_search_scope, #default_search_scopes, included

Methods included from AvatarsHelper

#assignee_avatar, #author_avatar, #avatar, #avatar_edit_link

Methods included from GravatarHelper::PublicMethods

#gravatar, #gravatar_api_url, #gravatar_for, #gravatar_url

Methods included from RoutesHelper

#_bulk_update_issues_path, #_new_project_issue_path, #_new_time_entry_path, #_project_calendar_path, #_project_gantt_path, #_project_issues_path, #_project_issues_url, #_project_news_path, #_report_time_entries_path, #_time_entries_path, #board_path

Methods included from Redmine::Hook::Helper

#call_hook

Methods included from Redmine::Pagination

#paginate, #paginator

Methods included from Redmine::I18n

#abbr_day_name, #current_language, #day_letter, #day_name, #find_language, #format_date, #format_hours, #format_time, included, #l, #l_hours, #l_hours_short, #l_or_humanize, #languages_options, #ll, #lu, #month_name, #set_language_if_valid, #valid_languages

Instance Method Details

Adds a related issue to a changeset POST /projects/:project_id/repository/(:repository_id/)revisions/:rev/issues



228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'app/controllers/repositories_controller.rb', line 228

def add_related_issue
  issue_id = params[:issue_id].to_s.sub(/^#/, '')
  @issue = @changeset.find_referenced_issue_by_id(issue_id)
  if @issue && (!@issue.visible? || @changeset.issues.include?(@issue))
    @issue = nil
  end

  respond_to do |format|
    if @issue
      @changeset.issues << @issue
      format.api { render_api_ok }
    else
      format.api { render_api_errors "#{l(:label_issue)} #{l('activerecord.errors.messages.invalid')}" }
    end
    format.js
  end
end

#annotateObject



200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'app/controllers/repositories_controller.rb', line 200

def annotate
  @entry = @repository.entry(@path, @rev)
  (show_error_not_found; return) unless @entry

  @annotate = @repository.scm.annotate(@path, @rev)
  if @annotate.blank?
    @annotate = nil
    @error_message = l(:error_scm_annotate)
  elsif @annotate.lines.sum(&:size) > Setting.file_max_size_displayed.to_i.kilobyte
    @annotate = nil
    @error_message = l(:error_scm_annotate_big_text_file)
  else
    # the SCM adapter supports "View annotation prior to this change" links
    # and the entry has previous annotations
    @has_previous = @annotate.previous_annotations.any?
  end
  @changeset = @repository.find_changeset_by_name(@rev)
end

#changesObject



109
110
111
112
113
114
115
# File 'app/controllers/repositories_controller.rb', line 109

def changes
  @entry = @repository.entry(@path, @rev)
  (show_error_not_found; return) unless @entry
  @changesets = @repository.latest_changesets(@path, @rev, Setting.repository_log_display_limit.to_i)
  @properties = @repository.properties(@path, @rev)
  @changeset = @repository.find_changeset_by_name(@rev)
end

#committersObject



66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'app/controllers/repositories_controller.rb', line 66

def committers
  @committers = @repository.committers
  @users = @project.users.to_a
  additional_user_ids = @committers.collect {|c| c.last.to_i} - @users.collect(&:id)
  @users += User.where(:id => additional_user_ids).to_a unless additional_user_ids.empty?
  @users.compact!
  @users.sort!
  if request.post? && params[:committers].present?
    # Build a hash with repository usernames as keys and corresponding user ids as values
    @repository.committer_ids = params[:committers].values.inject({}) {|h, c| h[c.first] = c.last; h}
    flash[:notice] = l(:notice_successful_update)
    redirect_to settings_project_path(@project, :tab => 'repositories')
  end
end

#createObject



46
47
48
49
50
51
52
# File 'app/controllers/repositories_controller.rb', line 46

def create
  if @repository.save
    redirect_to settings_project_path(@project, :tab => 'repositories')
  else
    render :action => 'new'
  end
end

#destroyObject



81
82
83
84
# File 'app/controllers/repositories_controller.rb', line 81

def destroy
  @repository.destroy if request.delete?
  redirect_to settings_project_path(@project, :tab => 'repositories')
end

#diffObject



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'app/controllers/repositories_controller.rb', line 259

def diff
  if params[:format] == 'diff'
    @diff = @repository.diff(@path, @rev, @rev_to)
    (show_error_not_found; return) unless @diff
    filename = +"changeset_r#{@rev}"
    filename << "_r#{@rev_to}" if @rev_to
    send_data @diff.join, :filename => "#{filename}.diff",
                          :type => 'text/x-patch',
                          :disposition => 'attachment'
  else
    @diff_type = params[:type] || User.current.pref[:diff_type] || 'inline'
    @diff_type = 'inline' unless %w(inline sbs).include?(@diff_type)

    # Save diff type as user preference
    if User.current.logged? && @diff_type != User.current.pref[:diff_type]
      User.current.pref[:diff_type] = @diff_type
      User.current.preference.save
    end
    @cache_key = "repositories/diff/#{@repository.id}/" +
                    Digest::MD5.hexdigest("#{@path}-#{@rev}-#{@rev_to}-#{@diff_type}-#{current_language}")
    unless read_fragment(@cache_key)
      @diff = @repository.diff(@path, @rev, @rev_to)
      (show_error_not_found; return) unless @diff
    end

    @changeset = @repository.find_changeset_by_name(@rev)
    @changeset_to = @rev_to ? @repository.find_changeset_by_name(@rev_to) : nil
    @diff_format_revisions = @repository.diff_format_revisions(@changeset, @changeset_to)
    # TODO: Fix DEPRECATION WARNING: Rendering actions with '.' in the name is deprecated
    render :diff, :formats => :html, :layout => 'base.html.erb'
  end
end

#editObject



54
55
# File 'app/controllers/repositories_controller.rb', line 54

def edit
end

#entryObject



138
139
140
141
142
143
144
145
146
# File 'app/controllers/repositories_controller.rb', line 138

def entry
  entry_and_raw(false)
  @raw_url = url_for(:action => 'raw',
                     :id     => @project,
                     :repository_id => @repository.identifier_param,
                     :path   => @path,
                     :rev    => @rev,
                     :only_path => true)
end

#fetch_changesetsObject



104
105
106
107
# File 'app/controllers/repositories_controller.rb', line 104

def fetch_changesets
  @repository.fetch_changesets if @project.active? && @path.empty? && !Setting.autofetch_changesets?
  show
end

#graphObject

Returns JSON data for repository graphs



296
297
298
299
300
301
302
303
304
305
306
307
308
309
# File 'app/controllers/repositories_controller.rb', line 296

def graph
  data = nil
  case params[:graph]
  when "commits_per_month"
    data = graph_commits_per_month(@repository)
  when "commits_per_author"
    data = graph_commits_per_author(@repository)
  end
  if data
    render :json => data
  else
    render_404
  end
end

#newObject



42
43
44
# File 'app/controllers/repositories_controller.rb', line 42

def new
  @repository.is_default = @project.repository.nil?
end

#rawObject



134
135
136
# File 'app/controllers/repositories_controller.rb', line 134

def raw
  entry_and_raw(true)
end

Removes a related issue from a changeset DELETE /projects/:project_id/repository/(:repository_id/)revisions/:rev/issues/:issue_id



248
249
250
251
252
253
254
255
256
257
# File 'app/controllers/repositories_controller.rb', line 248

def remove_related_issue
  @issue = Issue.visible.find_by_id(params[:issue_id])
  if @issue
    @changeset.issues.delete(@issue)
  end
  respond_to do |format|
    format.api { render_api_ok }
    format.js
  end
end

#revisionObject



219
220
221
222
223
224
# File 'app/controllers/repositories_controller.rb', line 219

def revision
  respond_to do |format|
    format.html
    format.js {render :layout => false}
  end
end

#revisionsObject



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'app/controllers/repositories_controller.rb', line 117

def revisions
  @changeset_count = @repository.changesets.count
  @changeset_pages = Paginator.new @changeset_count,
                                   per_page_option,
                                   params['page']
  @changesets = @repository.changesets.
    limit(@changeset_pages.per_page).
    offset(@changeset_pages.offset).
    includes(:user, :repository, :parents).
    to_a

  respond_to do |format|
    format.html {render :layout => false if request.xhr?}
    format.atom {render_feed(@changesets, :title => "#{@project.name}: #{l(:label_revision_plural)}")}
  end
end

#showObject Also known as: browse



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'app/controllers/repositories_controller.rb', line 86

def show
  @repository.fetch_changesets if @project.active? && Setting.autofetch_changesets? && @path.empty?

  @entries = @repository.entries(@path, @rev)
  @changeset = @repository.find_changeset_by_name(@rev)
  if request.xhr?
    @entries ? render(:partial => 'dir_list_content') : head(200)
  else
    (show_error_not_found; return) unless @entries
    @changesets = @repository.latest_changesets(@path, @rev)
    @properties = @repository.properties(@path, @rev)
    @repositories = @project.repositories
    render :action => 'show'
  end
end

#statsObject



292
293
# File 'app/controllers/repositories_controller.rb', line 292

def stats
end

#updateObject



57
58
59
60
61
62
63
64
# File 'app/controllers/repositories_controller.rb', line 57

def update
  @repository.safe_attributes = params[:repository]
  if @repository.save
    redirect_to settings_project_path(@project, :tab => 'repositories')
  else
    render :action => 'edit'
  end
end