添加或更新深层嵌套的模型实例的更简单方法

时间:2018-11-16 21:11:11

标签: node.js postgresql sequelize.js

我正在使用Node / Sequelize处理Postgres数据库。该数据库具有3个相关模型,即商店,产品和商品。该商店可以有许多产品,但是产品属于一个商店。产品可以有多个优惠,而优惠属于一个产品。为了使其更加复杂,“产品”和“报价”都具有各种替代ID,以使人类用户更容易将它们与实际产品相关联,而不是注意自动生成的ID。因此,需要通过“ sku”查找所有产品,并通过“ offer_id”和“ Offers”将所有商品通过其sku(而非id)添加到产品中。

const Product = sequelize.define(
  "product",
  {
    id: {
      type: Sequelize.INTEGER,
      autoIncrement: true,
      allowNull: false,
      primaryKey: true
    },
    sku: {
      type: Sequelize.STRING,
      allowNull: false,
    }
  },
  {
    indexes: [{ fields: ["sku", "storeId"], unique: true }]
  }
);

const Offer = sequelize.define(
  "offer",
  {
    id: {
      type: Sequelize.INTEGER,
      autoIncrement: true,
      allowNull: false,
      primaryKey: true
    },
    offer_id: {
        type: Sequelize.STRING,
        allowNull: false,
      },
    product_sku: {
        type: Sequelize.STRING,
        allowNull: false,
      }
  }
  ,
  {
    indexes: [{ fields: ["offer_id", "productId"], unique: true }]
  }
);

给定一系列商品,我需要更新商品(如果存在)或创建商品(如果尚不存在)。

function addOffer(newOffer, storeId) {
  //Find a product to add the offer to
  return Product.findOne({
    where: { sku: newOffer.product_sku, storeId: storeId }
  }).then(function(product) {
    if (product) {
      // Product found, check if offer exists
     return Offer
        .findOne({ where: { offer_id: newOffer.offer_id, productId: product.id } })
        .then(function(offer) {
          if (offer) {
            // update offer
            return offer.update({...newOffer });
          } else {
            // insert new offer
            return Offer.create({...newOffer,productId: product.id });
          }
        })
        .catch(err => console.log(err));
    } else {    
      // Product not found
      return false;
    }
  });
}
exports.add_offers = async function(req, res) {
  const storeId = req.body.storeId;
  const offers = [
      {
        "offer_id": "122",
        "product_sku": "5722719"
      },
      {
        "offer_id": "123",
        "product_sku": "5722719"
      },
      {
        "offer_id": "124",
        "product_sku": "5822625"
      }
  ];

  for (const offer of accepted) {
    addOffer(offer, storeId)
      .then(function(result) {
        //res.status(200).send({ success: true });
      })
      .catch(err => {
       //handle error
      });
  }
}

我要解决的主要问题是我的addProduct()函数。由于我必须先通过sku + storeId查找商品以找到productID。然后使用offer_id + productId检查报价是否已经存在。在我最终致电更新或创建要约时,每个要约有3个网络通话。如果我的要约数组的大小很大,那么效率将非常低。

有没有更简单的方法?

0 个答案:

没有答案