debian-mirror-gitlab/app/controllers/concerns/renders_commits.rb

37 lines
1.1 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module RendersCommits
2019-12-26 22:10:19 +05:30
def limited_commits(commits, commits_count)
if commits_count > MergeRequestDiff::COMMITS_SAFE_SIZE
2018-11-20 20:47:30 +05:30
[
commits.first(MergeRequestDiff::COMMITS_SAFE_SIZE),
2019-12-26 22:10:19 +05:30
commits_count - MergeRequestDiff::COMMITS_SAFE_SIZE
2018-11-20 20:47:30 +05:30
]
else
[commits, 0]
end
end
# This is used as a helper method in a controller.
# rubocop: disable Gitlab/ModuleWithInstanceVariables
2019-12-26 22:10:19 +05:30
def set_commits_for_rendering(commits, commits_count: nil)
@total_commit_count = commits_count || commits.size
limited, @hidden_commit_count = limited_commits(commits, @total_commit_count)
commits.each(&:lazy_author) # preload authors
2018-11-20 20:47:30 +05:30
prepare_commits_for_rendering(limited)
end
# rubocop: enable Gitlab/ModuleWithInstanceVariables
2018-03-17 18:26:18 +05:30
def prepare_commits_for_rendering(commits)
Banzai::CommitRenderer.render(commits, @project, current_user) # rubocop:disable Gitlab/ModuleWithInstanceVariables
commits
end
2019-02-15 15:39:39 +05:30
def valid_ref?(ref_name)
return true unless ref_name.present?
Gitlab::GitRefValidator.validate(ref_name)
end
2018-03-17 18:26:18 +05:30
end