Sha256: 7a72dc5a320b99785a8b4308ec7cf13f206399ffe6052be2393bff3b149ff754

Contents?: true

Size: 1.75 KB

Versions: 6

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({}, 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|
        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
        else
          # Ignore binaries
        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(Page, obj_class_name)
    end

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
scrivito_sdk-1.3.1 app/controllers/scrivito/obj_class_controller.rb
scrivito_sdk-1.3.1.rc1 app/controllers/scrivito/obj_class_controller.rb
scrivito_sdk-1.3.0 app/controllers/scrivito/obj_class_controller.rb
scrivito_sdk-1.3.0.rc3 app/controllers/scrivito/obj_class_controller.rb
scrivito_sdk-1.3.0.rc2 app/controllers/scrivito/obj_class_controller.rb
scrivito_sdk-1.3.0.rc1 app/controllers/scrivito/obj_class_controller.rb