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-02-01 17:58:04 -05:00
|
|
|
before_action :authorize_download_code!, except: [:cancel_builds, :retry_builds]
|
|
|
|
before_action :authorize_update_build!, only: [:cancel_builds, :retry_builds]
|
2016-09-13 07:44:01 -04:00
|
|
|
before_action :authorize_read_pipeline!, only: [:pipelines]
|
2016-02-01 17:58:04 -05:00
|
|
|
before_action :authorize_read_commit_status!, only: [:builds]
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :commit
|
2016-09-13 07:44:01 -04:00
|
|
|
before_action :define_commit_vars, only: [:show, :diff_for_path, :builds, :pipelines]
|
|
|
|
before_action :define_status_vars, only: [:show, :builds, :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
|
|
|
|
end
|
|
|
|
|
2015-11-03 05:44:07 -05:00
|
|
|
def builds
|
2015-10-06 07:12:21 -04:00
|
|
|
end
|
|
|
|
|
2015-10-07 09:24:32 -04:00
|
|
|
def cancel_builds
|
2016-04-11 10:55:40 -04:00
|
|
|
ci_builds.running_or_pending.each(&:cancel)
|
2015-10-07 09:24:32 -04:00
|
|
|
|
2015-12-08 07:03:28 -05:00
|
|
|
redirect_back_or_default default: builds_namespace_project_commit_path(project.namespace, project, commit.sha)
|
2015-10-07 09:24:32 -04:00
|
|
|
end
|
|
|
|
|
2015-11-03 05:44:07 -05:00
|
|
|
def retry_builds
|
2016-04-11 10:55:40 -04:00
|
|
|
ci_builds.latest.failed.each do |build|
|
2015-11-03 05:44:07 -05:00
|
|
|
if build.retryable?
|
2016-06-10 17:36:54 -04:00
|
|
|
Ci::Build.retry(build, current_user)
|
2015-11-03 05:44:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-08 07:03:28 -05:00
|
|
|
redirect_back_or_default default: builds_namespace_project_commit_path(project.namespace, project, commit.sha)
|
2015-11-03 05:44:07 -05:00
|
|
|
end
|
2015-10-07 09:24:32 -04:00
|
|
|
|
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-04-18 03:39:07 -04:00
|
|
|
create_commit(Commits::RevertService, success_notice: "The #{@commit.change_type_title} has been successfully reverted.",
|
|
|
|
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-04-18 03:39:07 -04:00
|
|
|
create_commit(Commits::CherryPickService, success_notice: "The #{@commit.change_type_title} has been successfully cherry-picked.",
|
|
|
|
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-02-08 15:37:27 -05:00
|
|
|
return referenced_merge_request_url if @commit.merged_merge_request
|
|
|
|
|
|
|
|
namespace_project_commits_url(@project.namespace, @project, @target_branch)
|
|
|
|
end
|
|
|
|
|
2016-04-18 03:39:07 -04:00
|
|
|
def failed_change_path
|
2016-02-08 15:37:27 -05:00
|
|
|
return referenced_merge_request_url if @commit.merged_merge_request
|
|
|
|
|
|
|
|
namespace_project_commit_url(@project.namespace, @project, params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def referenced_merge_request_url
|
|
|
|
namespace_project_merge_request_url(@project.namespace, @project, @commit.merged_merge_request)
|
|
|
|
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-04-11 10:55:40 -04:00
|
|
|
def ci_builds
|
2016-06-03 10:27:50 -04:00
|
|
|
@ci_builds ||= Ci::Build.where(pipeline: pipelines)
|
2015-11-03 05:44:07 -05:00
|
|
|
end
|
|
|
|
|
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-07-06 13:15:27 -04:00
|
|
|
def define_status_vars
|
2016-09-13 07:44:01 -04:00
|
|
|
@ci_pipelines = project.pipelines.where(sha: commit.sha)
|
|
|
|
@statuses = CommitStatus.where(pipeline: @ci_pipelines).relevant
|
|
|
|
@builds = Ci::Build.where(pipeline: @ci_pipelines).relevant
|
2015-11-03 05:44:07 -05:00
|
|
|
end
|
2016-02-03 18:28:40 -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
|