Module: InlineFormsSchemaEdit::IntentValidator

Defined in:
lib/inline_forms_schema_edit/intent_validator.rb

Overview

Validation shared by the GUI (SchemaController) and the import/replay side (BatchImport / rake schema_edit:apply_batch). Validates a plain params-shaped hash against the CURRENT app's models — deliberately re-run at import time, because the checkout that replays a batch may be newer than the tenant that drafted it.

ADDITIVE-ONLY GUARANTEE: only scalar form elements from SchemaPreview.supported_form_elements plus :header are accepted; those map to add_column (nullable) or no column at all. Nothing destructive or relational can enter a batch through this gate.

Constant Summary collapse

HEADER =
"header"
ATTRIBUTE_FORMAT =
/\A[a-z_][a-z0-9_]*\z/

Class Method Summary collapse

Class Method Details

.candidate_modelsObject



64
65
66
67
68
69
# File 'lib/inline_forms_schema_edit/intent_validator.rb', line 64

def candidate_models
  ActiveRecord::Base.descendants.select { |k| model_usable?(k) && k.name.present? }
                    .map(&:name).uniq.sort
rescue StandardError
  []
end

.error_for(p) ⇒ Object

Returns an error string, or nil when the intent is usable. p keys (string or symbol): model_name, attribute, form_element.



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/inline_forms_schema_edit/intent_validator.rb', line 23

def error_for(p)
  p = p.symbolize_keys
  return "Choose a model." if p[:model_name].blank?
  return "Enter an attribute name." if p[:attribute].blank?
  unless p[:attribute].to_s.match?(ATTRIBUTE_FORMAT)
    return "Attribute name must be lowercase letters, digits and underscores (e.g. internal_note)."
  end

  allowed = InlineForms::SchemaPreview.supported_form_elements.map(&:to_s) + [ HEADER ]
  unless allowed.include?(p[:form_element].to_s)
    return "Unsupported form element #{p[:form_element].inspect}."
  end

  klass = safe_model_class(p[:model_name].to_s)
  return "Unknown model #{p[:model_name].inspect}." unless klass
  unless model_usable?(klass)
    return "#{p[:model_name]} is not an inline_forms model (no inline_forms_attribute_list)."
  end
  # A header has no column, so the column-collision check does not apply.
  if p[:form_element].to_s != HEADER && klass.column_names.include?(p[:attribute].to_s)
    return "#{p[:model_name]} already has a #{p[:attribute]} column."
  end

  nil
end

.model_usable?(klass) ⇒ Boolean

Returns:

  • (Boolean)


56
57
58
59
60
61
62
# File 'lib/inline_forms_schema_edit/intent_validator.rb', line 56

def model_usable?(klass)
  !klass.abstract_class? &&
    klass.instance_methods.include?(:inline_forms_attribute_list) &&
    klass.respond_to?(:column_names)
rescue StandardError
  false
end

.safe_model_class(name) ⇒ Object



49
50
51
52
53
54
# File 'lib/inline_forms_schema_edit/intent_validator.rb', line 49

def safe_model_class(name)
  klass = name.safe_constantize
  klass if klass.is_a?(Class) && klass < ActiveRecord::Base
rescue StandardError
  nil
end