chinwagsocial/app/models/stream_entry.rb

49 lines
870 B
Ruby
Raw Normal View History

2016-02-23 02:00:20 +11:00
class StreamEntry < ActiveRecord::Base
belongs_to :account, inverse_of: :stream_entries
belongs_to :activity, polymorphic: true
2016-02-23 04:10:30 +11:00
validates :account, :activity, presence: true
2016-02-23 02:00:20 +11:00
def object_type
orphaned? ? :activity : (targeted? ? :activity : self.activity.object_type)
2016-02-23 02:00:20 +11:00
end
def verb
orphaned? ? :delete : self.activity.verb
2016-02-23 04:10:30 +11:00
end
def targeted?
[:follow, :share, :favorite].include? verb
2016-02-23 02:00:20 +11:00
end
def target
orphaned? ? nil : self.activity.target
2016-02-23 04:10:30 +11:00
end
def title
orphaned? ? nil : self.activity.title
2016-02-23 02:00:20 +11:00
end
def content
orphaned? ? nil : self.activity.content
2016-02-23 02:00:20 +11:00
end
def threaded?
2016-02-27 01:28:08 +11:00
verb == :favorite || object_type == :comment
end
def thread
orphaned? ? nil : self.activity.thread
end
def mentions
orphaned? ? [] : self.activity.mentions
end
private
def orphaned?
self.activity.nil?
end
2016-02-23 02:00:20 +11:00
end