Class: Bumbleworks::Workitem
- Inherits:
-
Object
- Object
- Bumbleworks::Workitem
- Defined in:
- lib/bumbleworks/workitem.rb
Instance Attribute Summary collapse
-
#raw_workitem ⇒ Object
readonly
Returns the value of attribute raw_workitem.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #entity(options = {}) ⇒ Object
- #entity_fields(options = {}) ⇒ Object
- #entity_name ⇒ Object
- #has_entity? ⇒ Boolean
- #has_entity_fields? ⇒ Boolean
-
#initialize(raw_workitem) ⇒ Workitem
constructor
A new instance of Workitem.
- #tokenized_entity_type ⇒ Object
Constructor Details
#initialize(raw_workitem) ⇒ Workitem
5 6 7 |
# File 'lib/bumbleworks/workitem.rb', line 5 def initialize(raw_workitem) @raw_workitem = raw_workitem end |
Instance Attribute Details
#raw_workitem ⇒ Object (readonly)
Returns the value of attribute raw_workitem.
3 4 5 |
# File 'lib/bumbleworks/workitem.rb', line 3 def raw_workitem @raw_workitem end |
Instance Method Details
#==(other) ⇒ Object
9 10 11 12 |
# File 'lib/bumbleworks/workitem.rb', line 9 def ==(other) return false unless other.is_a?(self.class) raw_workitem == other.raw_workitem end |
#entity(options = {}) ⇒ Object
14 15 16 17 18 19 20 21 22 |
# File 'lib/bumbleworks/workitem.rb', line 14 def entity( = {}) @entity = nil if [:reload] == true @entity ||= if has_entity_fields? klass = Bumbleworks::Support.constantize(entity_type) entity = klass.first_by_identifier(entity_id) end raise EntityNotFound, {:entity_id => entity_id, :entity_type => entity_type} unless @entity @entity end |
#entity_fields(options = {}) ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/bumbleworks/workitem.rb', line 34 def entity_fields( = {}) return {} unless has_entity_fields? type = if [:humanize] == true Bumbleworks::Support.humanize(entity_type) elsif [:titleize] == true Bumbleworks::Support.titleize(entity_type) else entity_type end { :type => type, :identifier => entity_id } end |
#entity_name ⇒ Object
53 54 55 56 |
# File 'lib/bumbleworks/workitem.rb', line 53 def entity_name fields = entity_fields(:titleize => true) "#{fields[:type]} #{fields[:identifier]}" end |
#has_entity? ⇒ Boolean
24 25 26 27 28 |
# File 'lib/bumbleworks/workitem.rb', line 24 def has_entity? !entity.nil? rescue EntityNotFound false end |
#has_entity_fields? ⇒ Boolean
30 31 32 |
# File 'lib/bumbleworks/workitem.rb', line 30 def has_entity_fields? entity_id && entity_type end |
#tokenized_entity_type ⇒ Object
49 50 51 |
# File 'lib/bumbleworks/workitem.rb', line 49 def tokenized_entity_type Bumbleworks::Support.tokenize(entity_type) end |