about summary refs log tree commit diff
path: root/app/models/status.rb
blob: a346ac9b0776b0dfd098eca7481158614973dc36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
60
61
62
63
64
65
66
67
68
69
70
71
class Status < ActiveRecord::Base
  belongs_to :account, inverse_of: :statuses

  belongs_to :thread, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :replies
  belongs_to :reblog, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblogs

  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', inverse_of: :reblog
  has_many :replies, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :thread
  has_many :mentioned_accounts, class_name: 'Mention', dependent: :destroy

  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

  def verb
    reblog? ? :share : :post
  end

  def object_type
    reply? ? :comment : :note
  end

  def content
    reblog? ? self.reblog.text : self.text
  end

  def target
    self.reblog
  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, domain = uri.split('@')
        account = Account.find_by(username: username, domain: domain)

        m << account unless account.nil?
      end
    end

    m
  end

  after_create do
    self.account.stream_entries.create!(activity: self)
  end
end