2017-11-17 23:16:48 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: lists
|
|
|
|
#
|
2020-09-01 11:31:28 +00:00
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# title :string default(""), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2020-12-09 03:34:17 +00:00
|
|
|
# replies_policy :integer default("list"), not null
|
2021-06-22 03:06:40 +00:00
|
|
|
# favourite :boolean default(FALSE), not null
|
2017-11-17 23:16:48 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
class List < ApplicationRecord
|
|
|
|
include Paginable
|
|
|
|
|
2017-12-09 00:32:29 +00:00
|
|
|
PER_ACCOUNT_LIMIT = 50
|
|
|
|
|
2020-12-09 03:34:17 +00:00
|
|
|
enum replies_policy: [:list, :followed, :none], _prefix: :show
|
2020-09-01 11:31:28 +00:00
|
|
|
|
2018-01-19 19:56:47 +00:00
|
|
|
belongs_to :account, optional: true
|
2017-11-17 23:16:48 +00:00
|
|
|
|
|
|
|
has_many :list_accounts, inverse_of: :list, dependent: :destroy
|
|
|
|
has_many :accounts, through: :list_accounts
|
|
|
|
|
2020-03-21 04:25:30 +00:00
|
|
|
has_many :account_subscribes, inverse_of: :list, dependent: :destroy
|
|
|
|
has_many :subscribes, through: :account_subscribes, source: :target_account
|
|
|
|
|
|
|
|
has_many :follow_tags, inverse_of: :list, dependent: :destroy
|
|
|
|
has_many :tags, through: :follow_tags, source: :tag
|
|
|
|
|
|
|
|
has_many :domain_subscribes, inverse_of: :list, dependent: :destroy
|
|
|
|
has_many :keyword_subscribes, inverse_of: :list, dependent: :destroy
|
|
|
|
|
2017-11-17 23:16:48 +00:00
|
|
|
validates :title, presence: true
|
2017-12-05 22:20:27 +00:00
|
|
|
|
2017-12-09 00:32:29 +00:00
|
|
|
validates_each :account_id, on: :create do |record, _attr, value|
|
|
|
|
record.errors.add(:base, I18n.t('lists.errors.limit')) if List.where(account_id: value).count >= PER_ACCOUNT_LIMIT
|
|
|
|
end
|
|
|
|
|
2017-12-05 22:20:27 +00:00
|
|
|
before_destroy :clean_feed_manager
|
|
|
|
|
2021-06-22 03:06:40 +00:00
|
|
|
scope :favourites, -> { where(favourite: true) }
|
|
|
|
|
|
|
|
def favourite?
|
|
|
|
favourite
|
|
|
|
end
|
|
|
|
|
|
|
|
def favourite!
|
|
|
|
update!(favourite: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
def unfavourite!
|
|
|
|
update!(favourite: false)
|
|
|
|
end
|
|
|
|
|
2017-12-05 22:20:27 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def clean_feed_manager
|
2020-12-22 22:57:46 +00:00
|
|
|
FeedManager.instance.clean_feeds!(:list, [id])
|
2017-12-05 22:20:27 +00:00
|
|
|
end
|
2017-11-17 23:16:48 +00:00
|
|
|
end
|