Class: RepositoriesController
Constant Summary
Constants included
from IconsHelper
IconsHelper::DEFAULT_ICON_SIZE, IconsHelper::DEFAULT_SPRITE
Instance Method Summary
collapse
#_include_layout?, accept_api_auth, #accept_api_auth?, accept_atom_auth, #accept_atom_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
#process_sudo_form, #render_sudo_form, #require_sudo_mode, #sudo_mode, #sudo_timestamp_valid?, #update_sudo_timestamp!
#current_menu, #current_menu_item, included, #menu_items, #redirect_to_menu_item, #redirect_to_project_menu_item
#default_search_scope, #default_search_scopes, included
#activity_event_type_icon, #file_icon, #principal_icon, #sprite_icon
#assignee_avatar, #author_avatar, #avatar, #avatar_edit_link
#gravatar, #gravatar_api_url, #gravatar_for, #gravatar_url
#_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
#call_hook
#paginate, #paginator
#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, #normalize_float, #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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
# File 'app/controllers/repositories_controller.rb', line 232
def add_related_issue
issue_id = params[:issue_id].to_s.delete_prefix('#')
@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
|
#annotate ⇒ Object
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
# File 'app/controllers/repositories_controller.rb', line 204
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
@has_previous = @annotate.previous_annotations.any?
end
@changeset = @repository.find_changeset_by_name(@rev)
end
|
#changes ⇒ Object
113
114
115
116
117
118
119
|
# File 'app/controllers/repositories_controller.rb', line 113
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
|
#committers ⇒ Object
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?
@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
|
#create ⇒ Object
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
|
#destroy ⇒ Object
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
|
#diff ⇒ Object
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
291
292
293
|
# File 'app/controllers/repositories_controller.rb', line 263
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)
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}/" +
ActiveSupport::Digest.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)
render :diff, :formats => :html
end
end
|
#edit ⇒ Object
54
55
|
# File 'app/controllers/repositories_controller.rb', line 54
def edit
end
|
#entry ⇒ Object
142
143
144
145
146
147
148
149
150
|
# File 'app/controllers/repositories_controller.rb', line 142
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_changesets ⇒ Object
104
105
106
107
108
109
110
111
|
# File 'app/controllers/repositories_controller.rb', line 104
def fetch_changesets
@repository.fetch_changesets if @project.active? && @path.empty? && !Setting.autofetch_changesets?
redirect_to(
controller: :repositories, action: :show,
id: @project, repository_id: @repository.identifier_param
)
end
|
#graph ⇒ Object
Returns JSON data for repository graphs
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
# File 'app/controllers/repositories_controller.rb', line 299
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
|
#new ⇒ Object
42
43
44
|
# File 'app/controllers/repositories_controller.rb', line 42
def new
@repository.is_default = @project.repository.nil?
end
|
#raw ⇒ Object
138
139
140
|
# File 'app/controllers/repositories_controller.rb', line 138
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
252
253
254
255
256
257
258
259
260
261
|
# File 'app/controllers/repositories_controller.rb', line 252
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
|
#revision ⇒ Object
223
224
225
226
227
228
|
# File 'app/controllers/repositories_controller.rb', line 223
def revision
respond_to do |format|
format.html
format.js {render :layout => false}
end
end
|
#revisions ⇒ Object
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
# File 'app/controllers/repositories_controller.rb', line 121
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
|
#show ⇒ Object
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(:ok)
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
|
#stats ⇒ Object
295
296
|
# File 'app/controllers/repositories_controller.rb', line 295
def stats
end
|
#update ⇒ Object
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
|