Sha256: da0cdc738263196c42fc78d50928d922088c5b2f06acb187a8df051a83014054

Contents?: true

Size: 1.75 KB

Versions: 4

Compression:

Stored size: 1.75 KB

Contents

module Scrivito
  class ObjClassController < WebserviceController
    def defaults
      obj_class_name = params.fetch(:obj_class_name)
      obj_class = fetch_obj_class(obj_class_name)
      if obj_class
        defaults = obj_class.build_attributes_with_defaults(
          params.fetch(:attributes, {}), scrivito_user: scrivito_user)
        @defaults = computed_nested_attributes(defaults, obj_class)
      else
        raise ResourceNotFound, %{The obj class "#{obj_class_name}" is not available.}
      end
    end

    private

    def computed_nested_attributes(defaults, obj_class)
      widget_attributes = {}
      other_attributes = {}

      defaults.each do |name, value|
        next if value.nil?

        attribute_type = obj_class.attribute_definitions[name].try(:type)
        if attribute_type == 'widgetlist'
          widgets = value.map do |new_widget|
            computed_nested_attributes(new_widget.attributes_to_be_saved, new_widget.class)
          end

          widget_attributes[name] = ['widgetlist', widgets]
        elsif attribute_type != 'binary'
          other_attributes[name] = value
        end
      end

      other_attributes = serialize(other_attributes, obj_class)

      widget_attributes.merge(other_attributes).merge(_obj_class: obj_class.name)
    end

    def serialize(attributes, obj_class)
      serializer = AttributeSerializer.new(obj_class)

      serializer.serialize(attributes, obj_class.attribute_definitions)
    end

    def fetch_obj_class(obj_class_name)
      compute_type(Widget, obj_class_name) || compute_type(Obj, obj_class_name)
    end

    def compute_type(base_class, obj_class_name)
      base_class.type_computer.compute_type_without_fallback(obj_class_name)
    rescue ObjClassNotFound
      nil
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
scrivito_sdk-1.5.1.rc1 app/controllers/scrivito/obj_class_controller.rb
scrivito_sdk-1.5.0 app/controllers/scrivito/obj_class_controller.rb
scrivito_sdk-1.5.0.rc2 app/controllers/scrivito/obj_class_controller.rb
scrivito_sdk-1.5.0.rc1 app/controllers/scrivito/obj_class_controller.rb