You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
618 B

  1. # frozen_string_literal: true
  2. class StatusPinValidator < ActiveModel::Validator
  3. MAX_PINNED = (ENV['MAX_PINNED_TOOTS'] || 5).to_i
  4. def validate(pin)
  5. pin.errors.add(:base, I18n.t('statuses.pin_errors.reblog')) if pin.status.reblog?
  6. pin.errors.add(:base, I18n.t('statuses.pin_errors.ownership')) if pin.account_id != pin.status.account_id
  7. pin.errors.add(:base, I18n.t('statuses.pin_errors.private')) unless %w(public unlisted).include?(pin.status.visibility)
  8. pin.errors.add(:base, I18n.t('statuses.pin_errors.limit')) if pin.account.status_pins.count >= MAX_PINNED && pin.account.local?
  9. end
  10. end