Sha256: f426e4a7dd627bcb5c1d8098deac1d1b3b1069d3092e22b06bc6646498837209
Contents?: true
Size: 1.31 KB
Versions: 13
Compression:
Stored size: 1.31 KB
Contents
module ForestLiana class AssociationsController < ForestLiana::ApplicationController before_filter :find_resource before_filter :find_association def index getter = HasManyGetter.new(@resource, @association, params) getter.perform render json: serialize_models(getter.records, include: includes, count: getter.count, params: params) end private def find_resource @resource = SchemaUtils.find_model_from_table_name(params[:collection]) if @resource.nil? || !@resource.ancestors.include?(ActiveRecord::Base) render json: {status: 404}, status: :not_found end end def find_association @association = @resource.reflect_on_association( params[:association_name]) if @association.nil? render json: {status: 404}, status: :not_found end end def resource_params ResourceDeserializer.new(@resource, params[:resource]).perform end def includes @association.klass .reflect_on_all_associations .select do |a| [:belongs_to, :has_and_belongs_to_many].include?(a.macro) && !a.options[:polymorphic] end .map {|a| a.name.to_s } end end end
Version data entries
13 entries across 13 versions & 1 rubygems