2017-11-17 23:16:48 +00:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 05:58:28 +00:00
|
|
|
|
2017-11-17 23:16:48 +00:00
|
|
|
# == 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
|
2023-08-04 07:00:31 +00:00
|
|
|
# exclusive :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
|
|
|
|
|
2024-02-16 14:54:23 +00:00
|
|
|
enum :replies_policy, { list: 0, followed: 1, none: 2 }, prefix: :show
|
2020-09-01 11:31:28 +00:00
|
|
|
|
2024-09-12 13:25:23 +00:00
|
|
|
belongs_to :account
|
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
|
|
|
|
2024-09-12 13:25:23 +00:00
|
|
|
validate :validate_account_lists_limit, on: :create
|
2017-12-09 00:32:29 +00:00
|
|
|
|
2017-12-05 22:20:27 +00:00
|
|
|
before_destroy :clean_feed_manager
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2024-09-12 13:25:23 +00:00
|
|
|
def validate_account_lists_limit
|
|
|
|
errors.add(:base, I18n.t('lists.errors.limit')) if account.lists.count >= PER_ACCOUNT_LIMIT
|
|
|
|
end
|
|
|
|
|
2017-12-05 22:20:27 +00:00
|
|
|
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
|