mastodon/app/models/favourite.rb

40 lines
795 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-17 17:56:23 +02:00
class Favourite < ApplicationRecord
include Paginable
include Streamable
belongs_to :account, inverse_of: :favourites
belongs_to :status, inverse_of: :favourites
has_one :notification, as: :activity, dependent: :destroy
validates :status_id, uniqueness: { scope: :account_id }
def verb
2017-02-11 02:12:05 +01:00
destroyed? ? :unfavorite : :favorite
end
def title
2017-02-11 02:12:05 +01:00
destroyed? ? "#{account.acct} no longer favourites a status by #{status.account.acct}" : "#{account.acct} favourited a status by #{status.account.acct}"
end
delegate :object_type, to: :target
def thread
2016-09-29 21:28:21 +02:00
status
end
def target
thread
end
def hidden?
status.private_visibility?
end
before_validation do
self.status = status.reblog if status.reblog?
end
end