openjaf/cenit

View on GitHub
app/models/setup/resource.rb

Summary

Maintainability
A
55 mins
Test Coverage
module Setup
  class Resource
    include ShareWithBindingsAndParameters
    include NamespaceNamed
    include WithTemplateParameters
    include JsonMetadata

    build_in_data_type.referenced_by(:name, :namespace)

    field :path, type: String
    field :description, type: String

    parameters :parameters, :headers, :template_parameters

    has_many :operations, class_name: Setup::Operation.to_s, inverse_of: :resource, dependent: :destroy

    trace_references :operations #, :parameters, :headers, :template_parameters

    accepts_nested_attributes_for :operations, allow_destroy: true

    validates_presence_of :path

    def conformed_path(options = {})
      conform_field_value(:path, options)
    end

    def respond_to?(*args)
      super ||
        args[0] == :del ||
        args[0] == :del! ||
        Setup::Operation.method_enum.any? do |method|
          method == args[0] || args[0].to_s == "#{method}!"
        end
    end

    def method_missing(symbol, *args, &block)
      method =
        if symbol == :del
          :delete
        elsif symbol == :del!
          :delete!
        else
          Setup::Operation.method_enum.detect do |method|
            method == symbol || symbol.to_s == "#{method}!"
          end
        end
      if method && (operation = operations.where(method: method).first)
        submit_method = 'submit'
        if symbol.to_s.ends_with?('!')
          submit_method = "#{submit_method}!"
        end
        operation.resource = self
        operation.upon(@connections, @connection_role_options).send(submit_method, *args, &block)
      else
        super
      end
    end

    def upon(connections, options = {})
      @connections = connections
      @connection_role_options = options || {}
      self
    end

    def with(options)
      case options
      when NilClass
        self
      when Setup::Connection, Setup::ConnectionRole
        upon(options)
        self
      else
        super
      end
    end

    def connections
      case @connections
      when Setup::Connection
        [@connections]
      when Setup::ConnectionRole
        @connections.connections
      else
        []
      end
    end
  end
end