import refreshTokenHelper from "../../../utils/refreshTokenHelper"
import forceLogoutHelper from "../../../utils/forceLogoutHelper"
import errorHandlingHelper from "../../../utils/errorHandlingHelper"
import fetchHelper from "../../../utils/fetchHelper"

const handleFunc = async (event: any, authToken: any = null) => {
  let data: any = {}
  const token = authToken ?? await getTokenHelper(event)
  const body = await readBody(event)

  let newObjValue: any = {}
  if(body.organizationId !== undefined && body.organizationId !== null) {
    newObjValue = {...newObjValue,
      AD_Org_ID: { id: body.organizationId, tableName: 'AD_Org' }
    }
  }
  if(body.shipperId) {
    newObjValue = {...newObjValue,
      M_Shipper_ID: { id: body.shipperId, tableName: 'M_Shipper' }
    }
  }
  if(body.countryId) {
    newObjValue = {...newObjValue,
      C_Country_ID: { id: body.countryId, tableName: 'C_Country' }
    }
  }
  if(body.bpartnerId) {
    newObjValue = {...newObjValue,
      C_BPartner_ID: { id: body.bpartnerId, tableName: 'C_BPartner' }
    }
  }
  if(body.productId) {
    newObjValue = {...newObjValue,
      M_Product_ID: { id: body.productId, tableName: 'M_Product' }
    }
  }
  if(body.validFrom) {
    newObjValue = {...newObjValue, ValidFrom: body.validFrom }
  }
  if(body.validTo) {
    newObjValue = {...newObjValue, ValidTo: body.validTo }
  }

  const res: any = await fetchHelper(event, 'models/cust_shippingcost_bpoverride/'+body.id, 'PUT', token, {
    isActive: body.isActive ?? true,
    ShippingBasePrice: Number(body.shippingBasePrice ?? 0),
    ShippingPricePerKG: Number(body.shippingPricePerKG ?? 0),
    RangeWeightFrom: Number(body.rangeWeightFrom ?? 0),
    RangeWeightTo: Number(body.rangeWeightTo ?? 0),
    isDHLKleinPaket: body.isDHLKleinPaket ?? false,
    ...newObjValue,
    tableName: 'CUST_ShippingCost_BPOverride'
  })
  if(res) {
    data = res
    data['status'] = 200
    data['message'] = ''
  }

  return data
}

export default defineEventHandler(async (event) => {
  let data: any = {}

  try {
    data = await handleFunc(event)
  } catch(err: any) {
    try {
      let authToken: any = await refreshTokenHelper(event)
      data = await handleFunc(event, authToken)
    } catch(error: any) {
      data = errorHandlingHelper(err?.data ?? err, error?.data ?? error)
      forceLogoutHelper(event, data)
    }
  }

  return data
})
