Class: Serverkit::Resources::Base
- Inherits:
-
Object
- Object
- Serverkit::Resources::Base
- Includes:
- ActiveModel::Validations
- Defined in:
- lib/serverkit/resources/base.rb
Direct Known Subclasses
Command, Entry, Git, Group, Line, Missing, Nothing, Package, Recipe, Service, Symlink, Unknown, User
Class Attribute Summary collapse
-
.abstract_class ⇒ Object
writeonly
Sets the attribute abstract_class.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#backend ⇒ Object
Returns the value of attribute backend.
-
#check_result ⇒ Object
readonly
Returns the value of attribute check_result.
-
#recheck_result ⇒ Object
readonly
Returns the value of attribute recheck_result.
-
#recipe ⇒ Object
readonly
Returns the value of attribute recipe.
Class Method Summary collapse
Instance Method Summary collapse
- #all_errors ⇒ Array<Serverkit::Errors::Base>
- #check_command(*args) ⇒ true, false
- #check_command_from_identifier(*args) ⇒ true, false
- #get_command_from_identifier(*args) ⇒ String
- #handlers ⇒ Array<Serverkit::Resource>
- #id ⇒ String
-
#initialize(recipe, attributes) ⇒ Base
constructor
A new instance of Base.
-
#notifiable? ⇒ true, false
True if this resource should call any handler.
- #run_apply ⇒ Object
- #run_check ⇒ true, false
- #successful? ⇒ Boolean
- #successful_on_check? ⇒ Boolean
- #successful_on_recheck? ⇒ Boolean
- #to_a ⇒ Array<Serverkit::Resources::Base>
Constructor Details
#initialize(recipe, attributes) ⇒ Base
Returns a new instance of Base.
56 57 58 59 |
# File 'lib/serverkit/resources/base.rb', line 56 def initialize(recipe, attributes) @attributes = attributes @recipe = recipe end |
Class Attribute Details
.abstract_class=(value) ⇒ Object (writeonly)
Sets the attribute abstract_class
17 18 19 |
# File 'lib/serverkit/resources/base.rb', line 17 def abstract_class=(value) @abstract_class = value end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
37 38 39 |
# File 'lib/serverkit/resources/base.rb', line 37 def attributes @attributes end |
#backend ⇒ Object
Returns the value of attribute backend.
35 36 37 |
# File 'lib/serverkit/resources/base.rb', line 35 def backend @backend end |
#check_result ⇒ Object (readonly)
Returns the value of attribute check_result.
37 38 39 |
# File 'lib/serverkit/resources/base.rb', line 37 def check_result @check_result end |
#recheck_result ⇒ Object (readonly)
Returns the value of attribute recheck_result.
37 38 39 |
# File 'lib/serverkit/resources/base.rb', line 37 def recheck_result @recheck_result end |
#recipe ⇒ Object (readonly)
Returns the value of attribute recipe.
37 38 39 |
# File 'lib/serverkit/resources/base.rb', line 37 def recipe @recipe end |
Class Method Details
.abstract_class? ⇒ Boolean
19 20 21 |
# File 'lib/serverkit/resources/base.rb', line 19 def abstract_class? !!@abstract_class end |
.attribute(name, options = {}) ⇒ Object
DSL method to define attribute with its validations
24 25 26 27 28 29 30 |
# File 'lib/serverkit/resources/base.rb', line 24 def attribute(name, = {}) default = .delete(:default) define_method(name) do @attributes.fetch(name.to_s, default) end validates name, unless .empty? end |
Instance Method Details
#all_errors ⇒ Array<Serverkit::Errors::Base>
For override
63 64 65 |
# File 'lib/serverkit/resources/base.rb', line 63 def all_errors attribute_validation_errors end |
#check_command(*args) ⇒ true, false
68 69 70 |
# File 'lib/serverkit/resources/base.rb', line 68 def check_command(*args) run_command(*args).success? end |
#check_command_from_identifier(*args) ⇒ true, false
73 74 75 |
# File 'lib/serverkit/resources/base.rb', line 73 def check_command_from_identifier(*args) run_command_from_identifier(*args).success? end |
#get_command_from_identifier(*args) ⇒ String
78 79 80 |
# File 'lib/serverkit/resources/base.rb', line 78 def get_command_from_identifier(*args) backend.command.get(*args) end |
#handlers ⇒ Array<Serverkit::Resource>
83 84 85 86 87 88 89 |
# File 'lib/serverkit/resources/base.rb', line 83 def handlers @handlers ||= Array(notify).map do |id| recipe.handlers.find do |handler| handler.id == id end end.compact end |
#id ⇒ String
For logging and notifying
93 94 95 |
# File 'lib/serverkit/resources/base.rb', line 93 def id @attributes["id"] || default_id end |
#notifiable? ⇒ true, false
Returns True if this resource should call any handler.
98 99 100 |
# File 'lib/serverkit/resources/base.rb', line 98 def notifiable? @recheck_result == true && !handlers.nil? end |
#run_apply ⇒ Object
#check and #apply wrapper
103 104 105 106 107 108 |
# File 'lib/serverkit/resources/base.rb', line 103 def run_apply unless run_check apply @recheck_result = !!recheck_with_script end end |
#run_check ⇒ true, false
#check wrapper
112 113 114 |
# File 'lib/serverkit/resources/base.rb', line 112 def run_check @check_result = !!check_with_script end |
#successful? ⇒ Boolean
116 117 118 |
# File 'lib/serverkit/resources/base.rb', line 116 def successful? successful_on_check? || successful_on_recheck? end |
#successful_on_check? ⇒ Boolean
120 121 122 |
# File 'lib/serverkit/resources/base.rb', line 120 def successful_on_check? @check_result == true end |
#successful_on_recheck? ⇒ Boolean
124 125 126 |
# File 'lib/serverkit/resources/base.rb', line 124 def successful_on_recheck? @recheck_result == true end |
#to_a ⇒ Array<Serverkit::Resources::Base>
recipe resource will override to replace itself with multiple resources
130 131 132 |
# File 'lib/serverkit/resources/base.rb', line 130 def to_a [self] end |