mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
62 lines
1.6 KiB
Ruby
62 lines
1.6 KiB
Ruby
require 'open_food_network/products_renderer'
|
|
|
|
module Api
|
|
class OrderCyclesController < BaseController
|
|
include EnterprisesHelper
|
|
respond_to :json
|
|
|
|
skip_authorization_check
|
|
|
|
def products
|
|
products = OpenFoodNetwork::ProductsRenderer.new(
|
|
distributor,
|
|
order_cycle,
|
|
customer,
|
|
params
|
|
).products_json
|
|
|
|
render json: products
|
|
rescue OpenFoodNetwork::ProductsRenderer::NoProducts
|
|
render status: :not_found, json: ''
|
|
end
|
|
|
|
def taxons
|
|
taxons = Spree::Taxon.
|
|
joins(:products).
|
|
where(spree_products: { id: distributed_products(distributor, order_cycle, customer) }).
|
|
select('DISTINCT spree_taxons.*')
|
|
|
|
render json: ActiveModel::ArraySerializer.new(taxons, each_serializer: Api::TaxonSerializer)
|
|
end
|
|
|
|
def properties
|
|
properties = Spree::Property.
|
|
joins(:products).
|
|
where(spree_products: { id: distributed_products(distributor, order_cycle, customer) }).
|
|
select('DISTINCT spree_properties.*')
|
|
|
|
render json: ActiveModel::ArraySerializer.new(
|
|
properties, each_serializer: Api::PropertySerializer
|
|
)
|
|
end
|
|
|
|
private
|
|
|
|
def distributor
|
|
Enterprise.find_by_id(params[:distributor])
|
|
end
|
|
|
|
def order_cycle
|
|
OrderCycle.find_by_id(params[:id])
|
|
end
|
|
|
|
def customer
|
|
@current_api_user.andand.customer_of(distributor) || nil
|
|
end
|
|
|
|
def distributed_products(distributor, order_cycle, customer)
|
|
OrderCycleDistributedProducts.new(distributor, order_cycle, customer).products_relation
|
|
end
|
|
end
|
|
end
|