7e6f6e1603
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
49 lines
1 KiB
Ruby
49 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class CrossProjectAccess
|
|
class CheckCollection
|
|
attr_reader :checks
|
|
|
|
def initialize
|
|
@checks = []
|
|
end
|
|
|
|
def add_collection(collection)
|
|
@checks |= collection.checks
|
|
end
|
|
|
|
def add_check(check)
|
|
@checks << check
|
|
end
|
|
|
|
def should_run?(object)
|
|
skips, runs = arranged_checks
|
|
|
|
# If one rule tells us to skip, we skip the cross project check
|
|
return false if skips.any? { |check| check.should_skip?(object) }
|
|
|
|
# If the rule isn't skipped, we run it if any of the checks says we
|
|
# should run
|
|
runs.any? { |check| check.should_run?(object) }
|
|
end
|
|
|
|
def arranged_checks
|
|
return [@skips, @runs] if @skips && @runs
|
|
|
|
@skips = []
|
|
@runs = []
|
|
|
|
@checks.each do |check|
|
|
if check.skip
|
|
@skips << check
|
|
else
|
|
@runs << check
|
|
end
|
|
end
|
|
|
|
[@skips, @runs]
|
|
end
|
|
end
|
|
end
|
|
end
|