Class: Checkpoint::Resource
- Inherits:
-
Object
- Object
- Checkpoint::Resource
- Defined in:
- lib/checkpoint/resource.rb,
lib/checkpoint/resource/token.rb,
lib/checkpoint/resource/resolver.rb,
lib/checkpoint/resource/any_entity.rb,
lib/checkpoint/resource/all_of_type.rb,
lib/checkpoint/resource/all_of_any_type.rb,
lib/checkpoint/resource/any_entity_of_type.rb
Overview
A Resource is any application object that should be considered for restricted access.
Most commonly, these will be the core domain objects that are created by users (“model instances”, to use Rails terminology), but this is not a requirement. A Resource can represent a fixed item in the system such as the administrative password, where there might be a single ‘update’ permission to change various elements of configuration. It might also be something like a section of a site as set up in a config file.
In modeling an application, it is not always obvious whether a concept should be a Credential or a Resource, so take care to evaluate the options. As an example, consider access to derivatives of a high-quality media object based on subscription level. It may make more sense for a given application to model access to a fixed set of profiles (e.g., mobile, standard, premium) as credentials and named concepts that will appear throughout the codebase. For an application where the profiles are more dynamic, it may make more sense to model them as resources that can be listed and updated by configuration or at runtime, with a fixed set of permissions (e.g., preview, stream, download).
Checkpoint does not force this decision to be made in one way for every application, but provides the concepts of permission mapping and resource resolution to accommodate whatever fixed, dynamic, or inherited modeling is most appropriate for the credentials and resources of an application.
Direct Known Subclasses
Defined Under Namespace
Classes: AllOfAnyType, AllOfType, AnyEntity, AnyEntityOfType, Resolver, Token
Constant Summary collapse
- ALL =
Special string to be used when granting or searching for grants on all types or all resources
'(all)'
Instance Attribute Summary collapse
-
#entity ⇒ Object
readonly
Returns the value of attribute entity.
Class Method Summary collapse
-
.all ⇒ AllOfAnyType
Covenience factory method to get a Resource that will match all entities of any type.
Instance Method Summary collapse
-
#==(other) ⇒ Boolean
Check whether two Resources refer to the same entity by type and id.
-
#all_of_type ⇒ Resource
Convert this Resource into a wildcard representing all resources of this type.
-
#eql?(other) ⇒ Boolean
Check whether two Resources refer to the same entity.
-
#id ⇒ String
Get the resource ID.
-
#initialize(entity) ⇒ Resource
constructor
Creates a Resource for this entity.
-
#to_resource ⇒ Object
Convert this object to a Resource.
-
#token ⇒ Resource::Token
The token for this resource.
-
#type ⇒ String
Get the resource type.
Constructor Details
#initialize(entity) ⇒ Resource
Creates a Resource for this entity. Prefer the factory method from, which applies default conversion rules. This constructor does not consider whether the entity can covert itself with #to_resource.
45 46 47 |
# File 'lib/checkpoint/resource.rb', line 45 def initialize(entity) @entity = entity end |
Instance Attribute Details
#entity ⇒ Object (readonly)
Returns the value of attribute entity.
36 37 38 |
# File 'lib/checkpoint/resource.rb', line 36 def entity @entity end |
Class Method Details
.all ⇒ AllOfAnyType
Covenience factory method to get a Resource that will match all entities of any type.
53 54 55 |
# File 'lib/checkpoint/resource.rb', line 53 def self.all AllOfAnyType.new end |
Instance Method Details
#==(other) ⇒ Boolean
Check whether two Resources refer to the same entity by type and id.
131 132 133 |
# File 'lib/checkpoint/resource.rb', line 131 def ==(other) other.is_a?(Resource) && type == other.type && id == other.id end |
#all_of_type ⇒ Resource
Convert this Resource into a wildcard representing all resources of this type.
116 117 118 |
# File 'lib/checkpoint/resource.rb', line 116 def all_of_type Resource::AllOfType.new(type) end |
#eql?(other) ⇒ Boolean
Check whether two Resources refer to the same entity.
124 125 126 |
# File 'lib/checkpoint/resource.rb', line 124 def eql?(other) other.is_a?(Resource) && entity.eql?(other.entity) end |
#id ⇒ String
Get the resource ID.
If the entity implements ‘#resource_id`, we will use that. Otherwise we call `#id`. If the the entity does not implement either of these methods, we raise a NoIdentifierError.
96 97 98 99 100 101 102 103 104 |
# File 'lib/checkpoint/resource.rb', line 96 def id if entity.respond_to?(:resource_id) entity.resource_id elsif entity.respond_to?(:id) entity.id else raise NoIdentifierError, "No usable identifier on entity of type: #{entity.class}" end.to_s end |
#to_resource ⇒ Object
Convert this object to a Resource.
For Checkpoint-supplied Resources, this is an identity operation, but it allows consistent handling of the built-in types and application-supplied types that will either implement this interface or convert themselves to a built-in type. This removes the requirement to extend Checkpoint types or bind to a specific conversion method.
64 65 66 |
# File 'lib/checkpoint/resource.rb', line 64 def to_resource self end |
#token ⇒ Resource::Token
Returns The token for this resource.
107 108 109 |
# File 'lib/checkpoint/resource.rb', line 107 def token @token ||= Token.new(type, id) end |
#type ⇒ String
Get the resource type.
Note that this is not necessarily a class/model type name. It can be whatever type name is most useful for building tokens and inspecting grants for this types. For example, there may be objects that have subtypes that are not modeled as objects, decorators, or collection objects (like a specialized type for the root of a tree) that should be treated as the element type.
If the entity implements ‘#resource_type`, we will use that. Otherwise, we use the entity’s class name.
81 82 83 84 85 86 87 |
# File 'lib/checkpoint/resource.rb', line 81 def type if entity.respond_to?(:resource_type) entity.resource_type else entity.class end.to_s end |