2017-11-17 23:16:48 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: lists
|
|
|
|
#
|
2020-09-01 12:31:28 +01: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
|
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
|
|
|
|
|
2023-02-20 04:00:36 +00:00
|
|
|
enum replies_policy: { list: 0, followed: 1, none: 2 }, _prefix: :show
|
2020-09-01 12:31:28 +01: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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|