mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-04 02:31:33 +00:00
Use DfcCatalog in offer broker
This commit is contained in:
@@ -19,8 +19,8 @@ module Admin
|
||||
.find(params.require(:enterprise_id))
|
||||
|
||||
catalog_url = params.require(:catalog_url)
|
||||
broker = FdcOfferBroker.new(spree_current_user, catalog_url)
|
||||
catalog = DfcCatalog.new(broker.catalog)
|
||||
catalog = DfcCatalog.load(spree_current_user, catalog_url)
|
||||
broker = FdcOfferBroker.new(catalog)
|
||||
|
||||
# * First step: import all products for given enterprise.
|
||||
# * Second step: render table and let user decide which ones to import.
|
||||
|
||||
@@ -117,7 +117,8 @@ class BackorderJob < ApplicationJob
|
||||
end
|
||||
|
||||
def load_broker(user, urls)
|
||||
FdcOfferBroker.new(user, urls.catalog_url)
|
||||
catalog = DfcCatalog.load(user, urls.catalog_url)
|
||||
FdcOfferBroker.new(catalog)
|
||||
end
|
||||
|
||||
def place_order(user, order, orderer, backorder)
|
||||
|
||||
@@ -40,7 +40,8 @@ class BackorderUpdater
|
||||
reference_link = variants[0].semantic_links[0].semantic_id
|
||||
urls = FdcUrlBuilder.new(reference_link)
|
||||
orderer = FdcBackorderer.new(user, urls)
|
||||
broker = FdcOfferBroker.new(user, urls.catalog_url)
|
||||
catalog = DfcCatalog.load(user, urls.catalog_url)
|
||||
broker = FdcOfferBroker.new(catalog)
|
||||
|
||||
updated_lines = update_order_lines(backorder, order_cycle, variants, broker, orderer)
|
||||
unprocessed_lines = backorder.lines.to_set - updated_lines
|
||||
|
||||
@@ -6,19 +6,10 @@ class FdcOfferBroker
|
||||
Solution = Struct.new(:product, :factor, :offer)
|
||||
RetailSolution = Struct.new(:retail_product_id, :factor)
|
||||
|
||||
def self.load_catalog(user, catalog_url)
|
||||
api = DfcRequest.new(user)
|
||||
catalog_json = api.call(catalog_url)
|
||||
DfcIo.import(catalog_json)
|
||||
end
|
||||
attr_reader :catalog
|
||||
|
||||
def initialize(user, catalog_url)
|
||||
@user = user
|
||||
@catalog_url = catalog_url
|
||||
end
|
||||
|
||||
def catalog
|
||||
@catalog ||= self.class.load_catalog(@user, @catalog_url)
|
||||
def initialize(catalog)
|
||||
@catalog = catalog
|
||||
end
|
||||
|
||||
def best_offer(product_id)
|
||||
@@ -30,18 +21,18 @@ class FdcOfferBroker
|
||||
end
|
||||
|
||||
def wholesale_product(product_id)
|
||||
production_flow = catalog_item("#{product_id}/AsPlannedProductionFlow")
|
||||
production_flow = catalog.item("#{product_id}/AsPlannedProductionFlow")
|
||||
|
||||
if production_flow
|
||||
production_flow.product
|
||||
else
|
||||
# We didn't find a wholesale variant, falling back to the given product.
|
||||
catalog_item(product_id)
|
||||
catalog.item(product_id)
|
||||
end
|
||||
end
|
||||
|
||||
def contained_quantity(product_id)
|
||||
consumption_flow = catalog_item("#{product_id}/AsPlannedConsumptionFlow")
|
||||
consumption_flow = catalog.item("#{product_id}/AsPlannedConsumptionFlow")
|
||||
|
||||
# If we don't find a transformation, we return the original product,
|
||||
# which contains exactly one of itself (identity).
|
||||
@@ -53,7 +44,7 @@ class FdcOfferBroker
|
||||
|
||||
return RetailSolution.new(wholesale_product_id, 1) if production_flow.nil?
|
||||
|
||||
consumption_flow = catalog_item(
|
||||
consumption_flow = catalog.item(
|
||||
production_flow.semanticId.sub("AsPlannedProductionFlow", "AsPlannedConsumptionFlow")
|
||||
)
|
||||
retail_product_id = consumption_flow.product.semanticId
|
||||
@@ -70,19 +61,12 @@ class FdcOfferBroker
|
||||
end
|
||||
end
|
||||
|
||||
def catalog_item(id)
|
||||
@catalog_by_id ||= catalog.index_by(&:semanticId)
|
||||
@catalog_by_id[id]
|
||||
end
|
||||
|
||||
def flow_producing(wholesale_product_id)
|
||||
@production_flows_by_product_id ||= production_flows.index_by { |flow| flow.product.semanticId }
|
||||
@production_flows_by_product_id[wholesale_product_id]
|
||||
end
|
||||
|
||||
def production_flows
|
||||
@production_flows ||= catalog.select do |i|
|
||||
i.semanticType == "dfc-b:AsPlannedProductionFlow"
|
||||
end
|
||||
@production_flows ||= catalog.select_type("dfc-b:AsPlannedProductionFlow")
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,6 +1,14 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class DfcCatalog
|
||||
def self.load(user, catalog_url)
|
||||
api = DfcRequest.new(user)
|
||||
catalog_json = api.call(catalog_url)
|
||||
graph = DfcIo.import(catalog_json)
|
||||
|
||||
new(graph)
|
||||
end
|
||||
|
||||
def initialize(graph)
|
||||
@graph = graph
|
||||
end
|
||||
@@ -10,4 +18,13 @@ class DfcCatalog
|
||||
subject.is_a? DataFoodConsortium::Connector::SuppliedProduct
|
||||
end
|
||||
end
|
||||
|
||||
def item(semantic_id)
|
||||
@items ||= @graph.index_by(&:semanticId)
|
||||
@items[semantic_id]
|
||||
end
|
||||
|
||||
def select_type(semantic_type)
|
||||
@graph.select { |i| i.semanticType == semantic_type }
|
||||
end
|
||||
end
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
require_relative "../spec_helper"
|
||||
|
||||
RSpec.describe DfcCatalog do
|
||||
subject(:catalog) { DfcCatalog.new(fdc_catalog_graph) }
|
||||
let(:fdc_catalog_graph) {
|
||||
VCR.use_cassette(:fdc_catalog) { broker.catalog }
|
||||
subject(:catalog) {
|
||||
VCR.use_cassette(:fdc_catalog) {
|
||||
DfcCatalog.load(user, catalog_url)
|
||||
}
|
||||
}
|
||||
let(:broker) { FdcOfferBroker.new(user, catalog_url) }
|
||||
let(:user) { build(:testdfc_user) }
|
||||
let(:catalog_url) {
|
||||
"https://env-0105831.jcloud-ver-jpe.ik-server.com/api/dfc/Enterprises/test-hodmedod/SuppliedProducts"
|
||||
|
||||
@@ -14,13 +14,14 @@ RSpec.describe CompleteBackorderJob do
|
||||
let(:orderer) { FdcBackorderer.new(user, urls) }
|
||||
let(:order) {
|
||||
backorder = orderer.find_or_build_order(ofn_order)
|
||||
broker = FdcOfferBroker.new(user, urls.catalog_url)
|
||||
catalog = DfcCatalog.load(user, urls.catalog_url)
|
||||
broker = FdcOfferBroker.new(catalog)
|
||||
|
||||
bean_offer = broker.best_offer(product_link).offer
|
||||
bean_line = orderer.find_or_build_order_line(backorder, bean_offer)
|
||||
bean_line.quantity = 3
|
||||
|
||||
chia = broker.catalog_item(chia_seed_retail_link)
|
||||
chia = catalog.item(chia_seed_retail_link)
|
||||
chia_offer = broker.offer_of(chia)
|
||||
chia_line = orderer.find_or_build_order_line(backorder, chia_offer)
|
||||
chia_line.quantity = 5
|
||||
|
||||
@@ -31,9 +31,9 @@ RSpec.describe FdcBackorderer do
|
||||
expect(backorder.lines).to eq []
|
||||
|
||||
# Add items and place the new order:
|
||||
catalog = FdcOfferBroker.load_catalog(order.distributor.owner, urls.catalog_url)
|
||||
product = catalog.find { |i| i.semanticType == "dfc-b:SuppliedProduct" }
|
||||
offer = FdcOfferBroker.new(nil, nil).offer_of(product)
|
||||
catalog = DfcCatalog.load(order.distributor.owner, urls.catalog_url)
|
||||
product = catalog.products.first
|
||||
offer = FdcOfferBroker.new(nil).offer_of(product)
|
||||
line = subject.find_or_build_order_line(backorder, offer)
|
||||
line.quantity = 3
|
||||
placed_order = subject.send_order(backorder)
|
||||
@@ -74,15 +74,14 @@ RSpec.describe FdcBackorderer do
|
||||
|
||||
describe "#find_or_build_order_line" do
|
||||
it "add quantity to an existing line item", vcr: true do
|
||||
catalog = FdcOfferBroker.load_catalog(order.distributor.owner, urls.catalog_url)
|
||||
catalog = DfcCatalog.load(order.distributor.owner, urls.catalog_url)
|
||||
backorder = subject.find_or_build_order(order)
|
||||
|
||||
expect(backorder.lines.count).to eq 0
|
||||
|
||||
# Add new item to the new order:
|
||||
catalog = FdcOfferBroker.load_catalog(order.distributor.owner, urls.catalog_url)
|
||||
product = catalog.find { |i| i.semanticType == "dfc-b:SuppliedProduct" }
|
||||
offer = FdcOfferBroker.new(nil, nil).offer_of(product)
|
||||
product = catalog.products.first
|
||||
offer = FdcOfferBroker.new(nil).offer_of(product)
|
||||
line = subject.find_or_build_order_line(backorder, offer)
|
||||
|
||||
expect(backorder.lines.count).to eq 1
|
||||
|
||||
@@ -3,9 +3,11 @@
|
||||
require 'spec_helper'
|
||||
|
||||
RSpec.describe FdcOfferBroker do
|
||||
subject { FdcOfferBroker.new(user, catalog_url) }
|
||||
subject { FdcOfferBroker.new(catalog) }
|
||||
let(:catalog) {
|
||||
VCR.use_cassette(:fdc_catalog) { subject.catalog }
|
||||
VCR.use_cassette(:fdc_catalog) {
|
||||
DfcCatalog.load(user, catalog_url)
|
||||
}
|
||||
}
|
||||
let(:catalog_url) {
|
||||
"https://env-0105831.jcloud-ver-jpe.ik-server.com/api/dfc/Enterprises/test-hodmedod/SuppliedProducts"
|
||||
@@ -15,7 +17,7 @@ RSpec.describe FdcOfferBroker do
|
||||
}
|
||||
let(:user) { build(:testdfc_user) }
|
||||
let(:product) {
|
||||
catalog.find { |item| item.semanticType == "dfc-b:SuppliedProduct" }
|
||||
catalog.products.first
|
||||
}
|
||||
|
||||
describe ".best_offer" do
|
||||
|
||||
Reference in New Issue
Block a user