Class: ActiveStorageValidations::DimensionValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- ActiveStorageValidations::DimensionValidator
- Includes:
- ErrorHandler, OptionProcUnfolding, Symbolizable
- Defined in:
- lib/active_storage_validations/dimension_validator.rb
Overview
:nodoc
Constant Summary collapse
- AVAILABLE_CHECKS =
%i[width height min max].freeze
- ERROR_TYPES =
%i[ image_metadata_missing dimension_min_inclusion dimension_max_inclusion dimension_width_inclusion dimension_height_inclusion dimension_width_greater_than_or_equal_to dimension_height_greater_than_or_equal_to dimension_width_less_than_or_equal_to dimension_height_less_than_or_equal_to dimension_width_equal_to dimension_height_equal_to ].freeze
Instance Method Summary collapse
- #check_validity! ⇒ Object
- #is_valid?(record, attribute, file_metadata) ⇒ Boolean
- #process_options(record) ⇒ Object
-
#validate_each(record, attribute, _value) ⇒ Object
Rails 5.
Methods included from ErrorHandler
#add_error, #initialize_error_options
Methods included from OptionProcUnfolding
Instance Method Details
#check_validity! ⇒ Object
50 51 52 53 54 |
# File 'lib/active_storage_validations/dimension_validator.rb', line 50 def check_validity! unless AVAILABLE_CHECKS.any? { |argument| .key?(argument) } raise ArgumentError, 'You must pass either :width, :height, :min or :max to the validator' end end |
#is_valid?(record, attribute, file_metadata) ⇒ Boolean
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/active_storage_validations/dimension_validator.rb', line 88 def is_valid?(record, attribute, ) = (record) = () # Validation fails unless file metadata contains valid width and height. if [:width].to_i <= 0 || [:height].to_i <= 0 add_error(record, attribute, :image_metadata_missing, **) return false end # Validation based on checks :min and :max (:min, :max has higher priority to :width, :height). if [:min] || [:max] if [:min] && ( ([:width][:min] && [:width] < [:width][:min]) || ([:height][:min] && [:height] < [:height][:min]) ) [:width] = [:width][:min] [:height] = [:height][:min] add_error(record, attribute, :dimension_min_inclusion, **) return false end if [:max] && ( ([:width][:max] && [:width] > [:width][:max]) || ([:height][:max] && [:height] > [:height][:max]) ) [:width] = [:width][:max] [:height] = [:height][:max] add_error(record, attribute, :dimension_max_inclusion, **) return false end # Validation based on checks :width and :height. else width_or_height_invalid = false [:width, :height].each do |length| next unless [length] if [length].is_a?(Hash) if [length][:in] && ([length] < [length][:min] || [length] > [length][:max]) error_type = :"dimension_#{length}_inclusion" [:min] = [length][:min] [:max] = [length][:max] add_error(record, attribute, error_type, **) width_or_height_invalid = true else if [length][:min] && [length] < [length][:min] error_type = :"dimension_#{length}_greater_than_or_equal_to" [:length] = [length][:min] add_error(record, attribute, error_type, **) width_or_height_invalid = true elsif [length][:max] && [length] > [length][:max] error_type = :"dimension_#{length}_less_than_or_equal_to" [:length] = [length][:max] add_error(record, attribute, error_type, **) width_or_height_invalid = true end end else if [length] != [length] error_type = :"dimension_#{length}_equal_to" [:length] = [length] add_error(record, attribute, error_type, **) width_or_height_invalid = true end end end return false if width_or_height_invalid end true # valid file end |
#process_options(record) ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/active_storage_validations/dimension_validator.rb', line 27 def (record) = unfold_procs(record, self., AVAILABLE_CHECKS) [:width, :height].each do |length| if [length] and [length].is_a?(Hash) if (range = [length][:in]) raise ArgumentError, ":in must be a Range" unless range.is_a?(Range) [length][:min], [length][:max] = range.min, range.max end end end [:min, :max].each do |dim| if (range = [dim]) raise ArgumentError, ":#{dim} must be a Range (width..height)" unless range.is_a?(Range) [:width] = { dim => range.first } [:height] = { dim => range.last } end end end |
#validate_each(record, attribute, _value) ⇒ Object
Rails 5
73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/active_storage_validations/dimension_validator.rb', line 73 def validate_each(record, attribute, _value) return true unless record.send(attribute).attached? changes = record.[attribute.to_s] return true if changes.blank? files = Array.wrap(changes.is_a?(ActiveStorage::Attached::Changes::CreateMany) ? changes.attachables : changes.attachable) files.each do |file| = Metadata.new(file). next if is_valid?(record, attribute, ) break end end |