mastodon/app/models/status.rb

73 lines
1.6 KiB
Ruby
Raw Normal View History

2016-02-20 21:53:20 +00:00
class Status < ActiveRecord::Base
belongs_to :account, inverse_of: :statuses
2016-02-22 15:00:20 +00:00
belongs_to :thread, foreign_key: 'in_reply_to_id', class_name: 'Status'
belongs_to :reblog, foreign_key: 'reblog_of_id', class_name: 'Status'
2016-02-24 11:57:29 +00:00
has_one :stream_entry, as: :activity, dependent: :destroy
has_many :favourites, inverse_of: :status, dependent: :destroy
has_many :reblogs, foreign_key: 'reblog_of_id', class_name: 'Status'
has_many :replies, foreign_key: 'in_reply_to_id', class_name: 'Status'
2016-02-24 23:17:01 +00:00
has_many :mentioned_accounts, class_name: 'Mention', dependent: :destroy
2016-02-22 17:10:30 +00:00
validates :account, presence: true
validates :uri, uniqueness: true, unless: 'local?'
def local?
self.uri.nil?
end
def reblog?
!self.reblog_of_id.nil?
end
def reply?
!self.in_reply_to_id.nil?
end
2016-02-22 17:10:30 +00:00
def verb
reblog? ? :share : :post
2016-02-22 17:10:30 +00:00
end
def object_type
reply? ? :comment : :note
2016-02-22 17:10:30 +00:00
end
def content
reblog? ? self.reblog.text : self.text
end
def target
self.reblog
2016-02-22 17:10:30 +00:00
end
def title
content.truncate(80, omission: "...")
end
def mentions
m = []
m << thread.account if reply?
m << reblog.account if reblog?
unless reblog?
self.text.scan(Account::MENTION_RE).each do |match|
uri = match.first
username = uri.split('@').first
domain = uri.split('@').size == 2 ? uri.split('@').last : nil
account = Account.find_by(username: username, domain: domain)
m << account unless account.nil?
end
end
m
end
2016-02-22 15:00:20 +00:00
after_create do
self.account.stream_entries.create!(activity: self)
end
2016-02-20 21:53:20 +00:00
end