Added stack trace for SQL queries in development Removed badly thought out accounts/lookup API
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class StreamEntry < ApplicationRecord
 | |
|   include Paginable
 | |
| 
 | |
|   belongs_to :account, inverse_of: :stream_entries
 | |
|   belongs_to :activity, polymorphic: true
 | |
| 
 | |
|   belongs_to :status,    foreign_type: 'Status',    foreign_key: 'activity_id'
 | |
|   belongs_to :follow,    foreign_type: 'Follow',    foreign_key: 'activity_id'
 | |
|   belongs_to :favourite, foreign_type: 'Favourite', foreign_key: 'activity_id'
 | |
| 
 | |
|   validates :account, :activity, presence: true
 | |
| 
 | |
|   STATUS_INCLUDES = [:account, :stream_entry, :media_attachments, mentions: :account, reblog: [:stream_entry, :account, mentions: :account], thread: [:stream_entry, :account]]
 | |
| 
 | |
|   scope :with_includes, -> { includes(:account, status: STATUS_INCLUDES, favourite: [:account, :stream_entry, status: STATUS_INCLUDES], follow: [:target_account, :stream_entry]) }
 | |
| 
 | |
|   def object_type
 | |
|     orphaned? ? :activity : (targeted? ? :activity : self.activity.object_type)
 | |
|   end
 | |
| 
 | |
|   def verb
 | |
|     orphaned? ? :delete : self.activity.verb
 | |
|   end
 | |
| 
 | |
|   def targeted?
 | |
|     [:follow, :share, :favorite].include? verb
 | |
|   end
 | |
| 
 | |
|   def target
 | |
|     orphaned? ? nil : self.activity.target
 | |
|   end
 | |
| 
 | |
|   def title
 | |
|     orphaned? ? nil : self.activity.title
 | |
|   end
 | |
| 
 | |
|   def content
 | |
|     orphaned? ? nil : self.activity.content
 | |
|   end
 | |
| 
 | |
|   def threaded?
 | |
|     verb == :favorite || object_type == :comment
 | |
|   end
 | |
| 
 | |
|   def thread
 | |
|     orphaned? ? nil : self.activity.thread
 | |
|   end
 | |
| 
 | |
|   def mentions
 | |
|     self.activity.respond_to?(:mentions) ? self.activity.mentions.map { |x| x.account } : []
 | |
|   end
 | |
| 
 | |
|   def activity
 | |
|     self.send(self.activity_type.downcase.to_sym)
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def orphaned?
 | |
|     self.activity.nil?
 | |
|   end
 | |
| end
 |