Class: Relation::Custom
- Defined in:
- app/models/relation/custom.rb
Overview
Constant Summary
Constants inherited from Relation
Class Method Summary collapse
- .defaults_for(actor) ⇒ Object
-
.strongest ⇒ Object
A relation in the top of a strength hierarchy.
Instance Method Summary collapse
-
#<=>(rel) ⇒ Object
Compare two relations.
- #available_permissions ⇒ Object
-
#stronger ⇒ Object
Other relations above in the same hierarchy that this relation.
-
#stronger_or_equal ⇒ Object
Relations above or at the same level of this relation.
-
#subject ⇒ Object
The subject who defined of this relation.
-
#weaker ⇒ Object
Other relations below in the same hierarchy that this relation.
-
#weaker_or_equal ⇒ Object
Relations below or at the same level of this relation.
Methods inherited from Relation
allow, allow?, create_activity?, extra_list, #follow?, ids_shared_with, #mode, negative_names, normalize, normalize_id, #positive?, positive_names
Class Method Details
.defaults_for(actor) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'app/models/relation/custom.rb', line 25 def defaults_for(actor) subject_type = actor.subject.class.to_s.underscore cfg_rels = SocialStream.custom_relations[subject_type] || SocialStream.custom_relations[subject_type.to_sym] if cfg_rels.nil? raise "Undefined relations for subject type #{ subject_type }. Please, add an entry to config/initializers/social_stream.rb" end rels = {} cfg_rels.each_pair do |name, cfg_rel| rels[name] = create! :actor => actor, :name => cfg_rel['name'], :receiver_type => cfg_rel['receiver_type'] if (ps = cfg_rel['permissions']).present? ps.each do |p| p.push(nil) if p.size == 1 rels[name]. << Permission.find_or_create_by_action_and_object(*p) end end end # Parent, relations must be set after creation # FIXME: Can fix with ruby 1.9 and ordered hashes cfg_rels.each_pair do |name, cfg_rel| rels[name].update_attribute(:parent, rels[cfg_rel['parent']]) end rels.values end |
.strongest ⇒ Object
A relation in the top of a strength hierarchy
62 63 64 |
# File 'app/models/relation/custom.rb', line 62 def strongest roots end |
Instance Method Details
#<=>(rel) ⇒ Object
Compare two relations
73 74 75 76 77 78 79 80 81 82 83 |
# File 'app/models/relation/custom.rb', line 73 def <=> rel return -1 if rel.is_a?(Public) if ancestor_ids.include?(rel.id) 1 elsif rel.ancestor_ids.include?(id) -1 else 0 end end |
#available_permissions ⇒ Object
105 106 107 |
# File 'app/models/relation/custom.rb', line 105 def Permission.instances SocialStream.[subject.class.to_s.underscore] end |
#stronger ⇒ Object
Other relations above in the same hierarchy that this relation
96 97 98 |
# File 'app/models/relation/custom.rb', line 96 def stronger ancestors end |
#stronger_or_equal ⇒ Object
Relations above or at the same level of this relation
101 102 103 |
# File 'app/models/relation/custom.rb', line 101 def stronger_or_equal path end |
#subject ⇒ Object
The subject who defined of this relation
68 69 70 |
# File 'app/models/relation/custom.rb', line 68 def subject actor.subject end |
#weaker ⇒ Object
Other relations below in the same hierarchy that this relation
86 87 88 |
# File 'app/models/relation/custom.rb', line 86 def weaker descendants end |
#weaker_or_equal ⇒ Object
Relations below or at the same level of this relation
91 92 93 |
# File 'app/models/relation/custom.rb', line 91 def weaker_or_equal subtree end |