Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-07-29 15:08:55 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-29 15:08:55 +0300
commit2dedd78ef505a0ab0a379c7340a3fcba56ada663 (patch)
treeef05626056122d4e07145c9c043484764f1267e8 /lib/gitlab/checks/changes_access.rb
parentf931527bc5120097db15737f8594a431bcad9116 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/checks/changes_access.rb')
-rw-r--r--lib/gitlab/checks/changes_access.rb40
1 files changed, 39 insertions, 1 deletions
diff --git a/lib/gitlab/checks/changes_access.rb b/lib/gitlab/checks/changes_access.rb
index 4e8b293a3e6..3ec3cdafd7c 100644
--- a/lib/gitlab/checks/changes_access.rb
+++ b/lib/gitlab/checks/changes_access.rb
@@ -29,11 +29,48 @@ module Gitlab
true
end
+ # All commits which have been newly introduced via any of the given
+ # changes. This set may also contain commits which are not referenced by
+ # any of the new revisions.
+ def commits
+ newrevs = @changes.map do |change|
+ newrev = change[:newrev]
+ newrev unless newrev.blank? || Gitlab::Git.blank_ref?(newrev)
+ end.compact
+
+ return [] if newrevs.empty?
+
+ @commits ||= project.repository.new_commits(newrevs)
+ end
+
+ # All commits which have been newly introduced via the given revision.
+ def commits_for(newrev)
+ commits_by_id = commits.index_by(&:id)
+
+ result = []
+ pending = [newrev]
+
+ # We go up the parent chain of our newrev and collect all commits which
+ # are new. In case a commit's ID cannot be found in the set of new
+ # commits, then it must already be a preexisting commit.
+ pending.each do |rev|
+ commit = commits_by_id[rev]
+ next if commit.nil?
+
+ pending.push(*commit.parent_ids)
+ result << commit
+ end
+
+ result
+ end
+
protected
def single_access_checks!
# Iterate over all changes to find if user allowed all of them to be applied
changes.each do |change|
+ commits = Gitlab::Lazy.new { commits_for(change[:newrev]) } if Feature.enabled?(:changes_batch_commits)
+
# If user does not have access to make at least one change, cancel all
# push by allowing the exception to bubble up
Checks::SingleChangeAccess.new(
@@ -41,7 +78,8 @@ module Gitlab
user_access: user_access,
project: project,
protocol: protocol,
- logger: logger
+ logger: logger,
+ commits: commits
).validate!
end
end