2012-09-17 10:08:02 -04:00
|
|
|
# Controller for a specific Commit
|
|
|
|
#
|
|
|
|
# Not to be confused with CommitsController, plural.
|
2013-06-23 12:47:22 -04:00
|
|
|
class Projects::CommitController < Projects::ApplicationController
|
2017-03-30 23:06:09 -04:00
|
|
|
include RendersNotes
|
2016-02-03 16:11:59 -05:00
|
|
|
include CreatesCommit
|
2016-07-06 13:15:27 -04:00
|
|
|
include DiffForPath
|
2016-03-03 12:38:44 -05:00
|
|
|
include DiffHelper
|
2016-02-03 16:11:59 -05:00
|
|
|
|
2012-09-17 10:08:02 -04:00
|
|
|
# Authorize
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :require_non_empty_project
|
2016-11-29 08:02:28 -05:00
|
|
|
before_action :authorize_download_code!
|
2016-09-13 07:44:01 -04:00
|
|
|
before_action :authorize_read_pipeline!, only: [:pipelines]
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :commit
|
2016-11-25 13:10:32 -05:00
|
|
|
before_action :define_commit_vars, only: [:show, :diff_for_path, :pipelines]
|
2016-07-06 13:15:27 -04:00
|
|
|
before_action :define_note_vars, only: [:show, :diff_for_path]
|
2016-04-18 03:39:07 -04:00
|
|
|
before_action :authorize_edit_tree!, only: [:revert, :cherry_pick]
|
2012-09-17 10:08:02 -04:00
|
|
|
|
|
|
|
def show
|
2015-10-22 21:52:17 -04:00
|
|
|
apply_diff_view_cookie!
|
|
|
|
|
2012-09-25 18:46:19 -04:00
|
|
|
respond_to do |format|
|
2014-07-15 11:28:21 -04:00
|
|
|
format.html
|
2012-11-22 14:49:44 -05:00
|
|
|
format.diff { render text: @commit.to_diff }
|
2012-11-22 06:45:39 -05:00
|
|
|
format.patch { render text: @commit.to_patch }
|
2012-09-17 10:08:02 -04:00
|
|
|
end
|
|
|
|
end
|
2014-01-15 08:06:12 -05:00
|
|
|
|
2016-06-28 12:25:32 -04:00
|
|
|
def diff_for_path
|
2016-07-27 13:00:34 -04:00
|
|
|
render_diff_for_path(@commit.diffs(diff_options))
|
2016-06-28 12:25:32 -04:00
|
|
|
end
|
|
|
|
|
2016-09-13 07:44:01 -04:00
|
|
|
def pipelines
|
2017-01-27 07:32:21 -05:00
|
|
|
@pipelines = @commit.pipelines.order(id: :desc)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.json do
|
2017-04-05 10:36:14 -04:00
|
|
|
Gitlab::PollingInterval.set_header(response, interval: 10_000)
|
|
|
|
|
2017-01-27 07:32:21 -05:00
|
|
|
render json: PipelineSerializer
|
2017-05-09 00:15:34 -04:00
|
|
|
.new(project: @project, current_user: @current_user)
|
2017-01-27 07:32:21 -05:00
|
|
|
.represent(@pipelines)
|
|
|
|
end
|
|
|
|
end
|
2016-09-13 07:44:01 -04:00
|
|
|
end
|
|
|
|
|
2015-02-03 00:30:11 -05:00
|
|
|
def branches
|
|
|
|
@branches = @project.repository.branch_names_contains(commit.id)
|
|
|
|
@tags = @project.repository.tag_names_contains(commit.id)
|
|
|
|
render layout: false
|
|
|
|
end
|
|
|
|
|
2016-02-03 16:11:59 -05:00
|
|
|
def revert
|
2017-01-05 13:11:27 -05:00
|
|
|
assign_change_commit_vars
|
2016-02-18 11:58:04 -05:00
|
|
|
|
2017-02-16 19:24:56 -05:00
|
|
|
return render_404 if @start_branch.blank?
|
|
|
|
|
2017-04-19 20:37:44 -04:00
|
|
|
@branch_name = create_new_branch? ? @commit.revert_branch_name : @start_branch
|
2016-02-03 16:11:59 -05:00
|
|
|
|
2016-11-29 08:47:43 -05:00
|
|
|
create_commit(Commits::RevertService, success_notice: "The #{@commit.change_type_title(current_user)} has been successfully reverted.",
|
2017-02-16 19:24:56 -05:00
|
|
|
success_path: -> { successful_change_path }, failure_path: failed_change_path)
|
2016-02-03 16:11:59 -05:00
|
|
|
end
|
2016-05-10 18:41:46 -04:00
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
def cherry_pick
|
2017-01-05 13:11:27 -05:00
|
|
|
assign_change_commit_vars
|
2016-05-10 18:41:46 -04:00
|
|
|
|
2017-02-16 19:24:56 -05:00
|
|
|
return render_404 if @start_branch.blank?
|
|
|
|
|
2017-04-19 20:37:44 -04:00
|
|
|
@branch_name = create_new_branch? ? @commit.cherry_pick_branch_name : @start_branch
|
2016-02-03 16:11:59 -05:00
|
|
|
|
2016-11-29 08:47:43 -05:00
|
|
|
create_commit(Commits::CherryPickService, success_notice: "The #{@commit.change_type_title(current_user)} has been successfully cherry-picked.",
|
2017-02-16 19:24:56 -05:00
|
|
|
success_path: -> { successful_change_path }, failure_path: failed_change_path)
|
2016-02-08 15:37:27 -05:00
|
|
|
end
|
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
private
|
|
|
|
|
2017-02-16 19:24:56 -05:00
|
|
|
def create_new_branch?
|
|
|
|
params[:create_merge_request].present? || !can?(current_user, :push_code, @project)
|
|
|
|
end
|
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
def successful_change_path
|
2017-04-19 20:37:44 -04:00
|
|
|
referenced_merge_request_url || namespace_project_commits_url(@project.namespace, @project, @branch_name)
|
2016-02-08 15:37:27 -05:00
|
|
|
end
|
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
def failed_change_path
|
2016-11-29 08:47:43 -05:00
|
|
|
referenced_merge_request_url || namespace_project_commit_url(@project.namespace, @project, params[:id])
|
2016-02-08 15:37:27 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def referenced_merge_request_url
|
2016-11-29 08:47:43 -05:00
|
|
|
if merge_request = @commit.merged_merge_request(current_user)
|
2017-02-16 19:24:56 -05:00
|
|
|
namespace_project_merge_request_url(merge_request.target_project.namespace, merge_request.target_project, merge_request)
|
2016-11-29 08:47:43 -05:00
|
|
|
end
|
2016-02-08 15:37:27 -05:00
|
|
|
end
|
|
|
|
|
2014-01-15 08:06:12 -05:00
|
|
|
def commit
|
2016-08-12 21:17:57 -04:00
|
|
|
@noteable = @commit ||= @project.commit(params[:id])
|
2014-01-15 08:06:12 -05:00
|
|
|
end
|
2015-10-23 05:41:22 -04:00
|
|
|
|
2016-07-06 13:15:27 -04:00
|
|
|
def define_commit_vars
|
2016-02-15 15:48:16 -05:00
|
|
|
return git_not_found! unless commit
|
|
|
|
|
2016-03-03 12:38:44 -05:00
|
|
|
opts = diff_options
|
|
|
|
opts[:ignore_whitespace_change] = true if params[:format] == 'diff'
|
2015-11-30 04:30:44 -05:00
|
|
|
|
2016-07-27 13:00:34 -04:00
|
|
|
@diffs = commit.diffs(opts)
|
2015-11-03 05:44:07 -05:00
|
|
|
@notes_count = commit.notes.count
|
2017-02-16 19:24:56 -05:00
|
|
|
|
2017-02-06 19:06:46 -05:00
|
|
|
@environment = EnvironmentsFinder.new(@project, current_user, commit: @commit).execute.last
|
2016-07-06 13:15:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def define_note_vars
|
2017-03-09 20:29:11 -05:00
|
|
|
@noteable = @commit
|
2016-07-06 13:15:27 -04:00
|
|
|
@note = @project.build_commit_note(commit)
|
|
|
|
|
2017-03-09 20:29:11 -05:00
|
|
|
@new_diff_note_attrs = {
|
2016-07-06 13:15:27 -04:00
|
|
|
noteable_type: 'Commit',
|
|
|
|
commit_id: @commit.id
|
|
|
|
}
|
2017-03-09 20:29:11 -05:00
|
|
|
|
|
|
|
@grouped_diff_discussions = commit.grouped_diff_discussions
|
|
|
|
@discussions = commit.discussions
|
|
|
|
|
2017-03-30 22:34:14 -04:00
|
|
|
@notes = (@grouped_diff_discussions.values.flatten + @discussions).flat_map(&:notes)
|
2017-03-09 20:29:11 -05:00
|
|
|
@notes = prepare_notes_for_rendering(@notes)
|
2016-07-06 13:15:27 -04:00
|
|
|
end
|
2015-12-08 07:03:28 -05:00
|
|
|
|
2017-01-05 13:11:27 -05:00
|
|
|
def assign_change_commit_vars
|
2017-02-16 19:24:56 -05:00
|
|
|
@start_branch = params[:start_branch]
|
|
|
|
@commit_params = { commit: @commit }
|
2016-02-03 18:28:40 -05:00
|
|
|
end
|
2012-09-17 10:08:02 -04:00
|
|
|
end
|