2014-09-02 18:07:02 +05:30
|
|
|
# Controller for a specific Commit
|
|
|
|
#
|
|
|
|
# Not to be confused with CommitsController, plural.
|
|
|
|
class Projects::CommitController < Projects::ApplicationController
|
|
|
|
# Authorize
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :require_non_empty_project
|
2015-11-26 14:37:03 +05:30
|
|
|
before_action :authorize_download_code!, except: [:cancel_builds]
|
|
|
|
before_action :authorize_manage_builds!, only: [:cancel_builds]
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :commit
|
2015-11-26 14:37:03 +05:30
|
|
|
before_action :authorize_manage_builds!, only: [:cancel_builds, :retry_builds]
|
|
|
|
before_action :define_show_vars, only: [:show, :builds]
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
def show
|
|
|
|
return git_not_found! unless @commit
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
@line_notes = commit.notes.inline
|
2015-04-26 12:48:37 +05:30
|
|
|
@note = @project.build_commit_note(commit)
|
2015-09-11 14:41:01 +05:30
|
|
|
@notes = commit.notes.not_inline.fresh
|
2014-09-02 18:07:02 +05:30
|
|
|
@noteable = @commit
|
|
|
|
@comments_allowed = @reply_allowed = true
|
|
|
|
@comments_target = {
|
|
|
|
noteable_type: 'Commit',
|
|
|
|
commit_id: @commit.id
|
|
|
|
}
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.diff { render text: @commit.to_diff }
|
|
|
|
format.patch { render text: @commit.to_patch }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
def builds
|
2015-10-24 18:46:33 +05:30
|
|
|
@ci_project = @project.gitlab_ci_project
|
|
|
|
end
|
|
|
|
|
|
|
|
def cancel_builds
|
2015-11-26 14:37:03 +05:30
|
|
|
ci_commit.builds.running_or_pending.each(&:cancel)
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
redirect_to builds_namespace_project_commit_path(project.namespace, project, commit.sha)
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
def retry_builds
|
|
|
|
ci_commit.builds.latest.failed.each do |build|
|
|
|
|
if build.retryable?
|
|
|
|
Ci::Build.retry(build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
redirect_to builds_namespace_project_commit_path(project.namespace, project, commit.sha)
|
|
|
|
end
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def branches
|
|
|
|
@branches = @project.repository.branch_names_contains(commit.id)
|
|
|
|
@tags = @project.repository.tag_names_contains(commit.id)
|
|
|
|
render layout: false
|
|
|
|
end
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
private
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
def commit
|
2015-09-11 14:41:01 +05:30
|
|
|
@commit ||= @project.commit(params[:id])
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2015-11-26 14:37:03 +05:30
|
|
|
|
|
|
|
def ci_commit
|
|
|
|
@ci_commit ||= project.ci_commit(commit.sha)
|
|
|
|
end
|
|
|
|
|
|
|
|
def define_show_vars
|
|
|
|
@diffs = commit.diffs
|
|
|
|
@notes_count = commit.notes.count
|
|
|
|
|
|
|
|
@builds = ci_commit.builds if ci_commit
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_manage_builds!
|
|
|
|
unless can?(current_user, :manage_builds, project)
|
|
|
|
return page_404
|
|
|
|
end
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|