Sha256: 6d262444c43ede214f5173fca5a5f16df230ccf433469cc0cd7b1a3295fc6836

Contents?: true

Size: 1.56 KB

Versions: 8

Compression:

Stored size: 1.56 KB

Contents

module ForestLiana
  class ResourceCreator
    attr_accessor :record
    attr_accessor :errors

    def initialize(resource, params)
      @resource = resource
      @params = params
      @errors = nil
    end

    def perform
      begin
        if has_strong_parameter
          @record = @resource.create(resource_params)
        else
          @record = @resource.create(resource_params, without_protection: true)
        end
        set_has_many_relationships
      rescue ActiveRecord::StatementInvalid => exception
        # NOTICE: SQL request cannot be executed properly
        @errors = [{ detail: exception.cause.error }]
      end
    end

    def resource_params
      ResourceDeserializer.new(@resource, @params, true).perform
    end

    def set_has_many_relationships
      if @params['data']['relationships']
        @params['data']['relationships'].each do |name, relationship|
          data = relationship['data']
          association = @resource.reflect_on_association(name)
          if [:has_many, :has_and_belongs_to_many].include?(
            association.try(:macro))
            if data.is_a?(Array)
              data.each do |x|
                existing_records = @record.send(name)
                new_record = association.klass.find(x[:id])
                if !existing_records.include?(new_record)
                  existing_records << new_record
                end
              end
            end
          end
        end
      end
    end

    def has_strong_parameter
      @resource.instance_method(:update_attributes!).arity == 1
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
forest_liana-1.5.20 app/services/forest_liana/resource_creator.rb
forest_liana-1.5.19 app/services/forest_liana/resource_creator.rb
forest_liana-1.5.18 app/services/forest_liana/resource_creator.rb
forest_liana-1.5.17 app/services/forest_liana/resource_creator.rb
forest_liana-1.5.16 app/services/forest_liana/resource_creator.rb
forest_liana-1.5.15 app/services/forest_liana/resource_creator.rb
forest_liana-1.5.14 app/services/forest_liana/resource_creator.rb
forest_liana-1.5.13 app/services/forest_liana/resource_creator.rb