2017-11-17 15:16:48 -08:00
|
|
|
# frozen_string_literal: true
|
2023-02-19 21:58:28 -08:00
|
|
|
|
2017-11-17 15:16:48 -08:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: lists
|
|
|
|
#
|
2020-09-01 04:31:28 -07: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-08 19:34:17 -08:00
|
|
|
# replies_policy :integer default("list"), not null
|
2023-08-04 00:00:31 -07:00
|
|
|
# exclusive :boolean default(FALSE), not null
|
2017-11-17 15:16:48 -08:00
|
|
|
#
|
|
|
|
|
|
|
|
class List < ApplicationRecord
|
|
|
|
include Paginable
|
|
|
|
|
2017-12-08 16:32:29 -08:00
|
|
|
PER_ACCOUNT_LIMIT = 50
|
|
|
|
|
2023-02-19 20:00:36 -08:00
|
|
|
enum replies_policy: { list: 0, followed: 1, none: 2 }, _prefix: :show
|
2020-09-01 04:31:28 -07:00
|
|
|
|
2018-01-19 11:56:47 -08:00
|
|
|
belongs_to :account, optional: true
|
2017-11-17 15:16:48 -08:00
|
|
|
|
|
|
|
has_many :list_accounts, inverse_of: :list, dependent: :destroy
|
|
|
|
has_many :accounts, through: :list_accounts
|
|
|
|
|
|
|
|
validates :title, presence: true
|
2017-12-05 14:20:27 -08:00
|
|
|
|
2017-12-08 16:32:29 -08: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 14:20:27 -08:00
|
|
|
before_destroy :clean_feed_manager
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def clean_feed_manager
|
2020-12-22 14:57:46 -08:00
|
|
|
FeedManager.instance.clean_feeds!(:list, [id])
|
2017-12-05 14:20:27 -08:00
|
|
|
end
|
2017-11-17 15:16:48 -08:00
|
|
|
end
|