Files
gitlab-ce/lib/api/scope.rb
2024-11-25 09:23:59 +00:00

31 lines
750 B
Ruby

# frozen_string_literal: true
# Encapsulate a scope used for authorization, such as `api`, or `read_user`
# See Gitlab::Auth for the set of available scopes, and their purposes.
module API
class Scope
attr_reader :name, :if
def initialize(name, options = {})
@name = name.to_sym
@if = options[:if]
end
# Are the `scopes` passed in sufficient to adequately authorize the passed
# request for the scope represented by the current instance of this class?
def sufficient?(scopes, request)
scopes.include?(self.name) && verify_if_condition(request)
end
def to_s
name.to_s
end
private
def verify_if_condition(request)
self.if.nil? || self.if.call(request)
end
end
end