Class: PresenceInTenantValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
app/validators/presence_in_tenant_validator.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'app/validators/presence_in_tenant_validator.rb', line 2

def validate_each(record, attribute, value)
  if value
    if value.class.to_s.index 'ActiveRecord_Associations_CollectionProxy'
      value.each do |dat|
        if record.tenant_id != dat.tenant_id
          record.errors.add(attribute, :not_in_tenant, message: I18n.t('activerecord.errors.models.'+record.model_name.i18n_key.to_s+'.attributes.'+attribute.to_s+'.not_in_tenant', :default => ['activerecord.errors.messages.not_in_tenant'.to_sym]))
          return
        end
      end
    else
      if record.tenant_id != value.tenant_id
        record.errors.add(attribute, :not_in_tenant, message: I18n.t('activerecord.errors.models.'+record.model_name.i18n_key.to_s+'.attributes.'+attribute.to_s+'.not_in_tenant', :default => ['activerecord.errors.messages.not_in_tenant'.to_sym]))
      end
    end
  else
    record.errors.add(attribute, :blank, message: I18n.t('activerecord.errors.models.'+record.model_name.i18n_key.to_s+'.attributes.'+attribute.to_s+'.blank', :default => ['activerecord.errors.messages.blank'.to_sym]))
  end
end