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.
50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class CrossProjectAccess
|
|
module ClassMethods
|
|
def requires_cross_project_access(*args)
|
|
positive_condition, negative_condition, actions = extract_params(args)
|
|
|
|
Gitlab::CrossProjectAccess.add_check(
|
|
self,
|
|
actions: actions,
|
|
positive_condition: positive_condition,
|
|
negative_condition: negative_condition
|
|
)
|
|
end
|
|
|
|
def skip_cross_project_access_check(*args)
|
|
positive_condition, negative_condition, actions = extract_params(args)
|
|
|
|
Gitlab::CrossProjectAccess.add_check(
|
|
self,
|
|
actions: actions,
|
|
positive_condition: positive_condition,
|
|
negative_condition: negative_condition,
|
|
skip: true
|
|
)
|
|
end
|
|
|
|
private
|
|
|
|
def extract_params(args)
|
|
actions = {}
|
|
positive_condition = nil
|
|
negative_condition = nil
|
|
|
|
args.each do |argument|
|
|
if argument.is_a?(Hash)
|
|
positive_condition = argument.delete(:if)
|
|
negative_condition = argument.delete(:unless)
|
|
actions.merge!(argument)
|
|
else
|
|
actions[argument] = true
|
|
end
|
|
end
|
|
|
|
[positive_condition, negative_condition, actions]
|
|
end
|
|
end
|
|
end
|
|
end
|