* Add compacted component * 引用表示の間にコンテナをはさみ、不要なコードを削除 * 引用APIを作成、ついでにブロック状況を引用APIに反映 * テスト修正など * 引用をキャッシュに登録 * `quote_id`が`quote_of_id`になったのをSerializerに反映 * Fix test * 引用をフィルターの対象に含める設定+エラー修正 * ストリーミングの存在しないプロパティ削除によるエラーを修正 * Fix lint * 他のサーバーから来た引用付き投稿を処理 * Fix test * フィルター設定時エラーの調整 * 画像つき投稿のスタイルを調整 * 画像つき投稿の最大高さを調整 * 引用禁止・非表示の設定を追加 * ブロック対応 * マイグレーションコード調整 * 引用設定の翻訳を作成 * Lint修正 * 参照1つの場合は引用に変換する設定を削除 * 不要になったテストを削除 * ブロック設定追加、バグ修正 * 他サーバーへ引用送信・受け入れ
46 lines
1.1 KiB
Ruby
46 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: status_references
|
|
#
|
|
# id :bigint(8) not null, primary key
|
|
# status_id :bigint(8) not null
|
|
# target_status_id :bigint(8) not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# attribute_type :string
|
|
# quote :boolean default(FALSE), not null
|
|
#
|
|
|
|
class StatusReference < ApplicationRecord
|
|
belongs_to :status
|
|
belongs_to :target_status, class_name: 'Status'
|
|
|
|
has_one :notification, as: :activity, dependent: :destroy
|
|
|
|
after_commit :reset_parent_cache
|
|
after_create_commit :set_quote
|
|
after_destroy_commit :remove_quote
|
|
|
|
private
|
|
|
|
def reset_parent_cache
|
|
Rails.cache.delete("statuses/#{status_id}")
|
|
Rails.cache.delete("statuses/#{target_status_id}")
|
|
end
|
|
|
|
def set_quote
|
|
return unless quote
|
|
return if status.quote_of_id.present?
|
|
|
|
status.quote_of_id = target_status_id
|
|
end
|
|
|
|
def remove_quote
|
|
return unless quote
|
|
return unless status.quote_of_id == target_status_id
|
|
|
|
status.quote_of_id = nil
|
|
end
|
|
end
|