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
|
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
|
|
|
|
render json: PipelineSerializer
|
|
|
|
.new(project: @project, user: @current_user)
|
|
|
|
.with_pagination(request, response)
|
|
|
|
.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
|
2016-04-18 03:39:07 -04:00
|
|
|
assign_change_commit_vars(@commit.revert_branch_name)
|
2016-02-18 11:58:04 -05:00
|
|
|
|
2016-02-08 11:44:31 -05:00
|
|
|
return render_404 if @target_branch.blank?
|
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.",
|
2016-04-18 03:39:07 -04: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
|
|
|
|
assign_change_commit_vars(@commit.cherry_pick_branch_name)
|
2016-05-10 18:41:46 -04:00
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
return render_404 if @target_branch.blank?
|
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.",
|
2016-04-18 03:39:07 -04: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
|
|
|
|
|
|
|
|
def successful_change_path
|
2016-11-29 08:47:43 -05:00
|
|
|
referenced_merge_request_url || namespace_project_commits_url(@project.namespace, @project, @target_branch)
|
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)
|
|
|
|
namespace_project_merge_request_url(@project.namespace, @project, merge_request)
|
|
|
|
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
|
2016-07-06 13:15:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def define_note_vars
|
2016-07-20 18:18:18 -04:00
|
|
|
@grouped_diff_discussions = commit.notes.grouped_diff_discussions
|
2016-07-06 13:15:27 -04:00
|
|
|
@notes = commit.notes.non_diff_notes.fresh
|
|
|
|
|
|
|
|
Banzai::NoteRenderer.render(
|
2016-07-20 18:18:18 -04:00
|
|
|
@grouped_diff_discussions.values.flat_map(&:notes) + @notes,
|
2016-07-06 13:15:27 -04:00
|
|
|
@project,
|
|
|
|
current_user,
|
|
|
|
)
|
|
|
|
|
|
|
|
@note = @project.build_commit_note(commit)
|
|
|
|
|
|
|
|
@noteable = @commit
|
|
|
|
@comments_target = {
|
|
|
|
noteable_type: 'Commit',
|
|
|
|
commit_id: @commit.id
|
|
|
|
}
|
|
|
|
end
|
2015-12-08 07:03:28 -05:00
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
def assign_change_commit_vars(mr_source_branch)
|
2016-02-05 18:12:41 -05:00
|
|
|
@commit = project.commit(params[:id])
|
2016-02-03 18:28:40 -05:00
|
|
|
@target_branch = params[:target_branch]
|
2016-04-18 03:39:07 -04:00
|
|
|
@mr_source_branch = mr_source_branch
|
2016-02-05 18:12:41 -05:00
|
|
|
@mr_target_branch = @target_branch
|
2016-02-03 18:28:40 -05:00
|
|
|
@commit_params = {
|
2016-02-05 18:12:41 -05:00
|
|
|
commit: @commit,
|
|
|
|
create_merge_request: params[:create_merge_request].present? || different_project?
|
2016-02-03 18:28:40 -05:00
|
|
|
}
|
|
|
|
end
|
2012-09-17 10:08:02 -04:00
|
|
|
end
|