import { ShipmentService } from "./shipment.service";
import { DeliveryServices, UidDeliveryServices } from "./enums/delivery.services";
import { CACHE_MANAGER } from "@nestjs/cache-manager";
import { Cache } from "cache-manager";
import { ConfigService } from "@nestjs/config";
import { ShipmentWithItems } from "./interfaces/shipment.interface";
import fetch from "node-fetch";
import { CreateFedexPayloadService } from "./fedex.payload.service";
import { Inject, Injectable } from "@nestjs/common";
import { IResponseAlertInterface } from "./interfaces/response.alert.interface"
import { ShipmentLogType, ShipmentStatus } from "@prisma/client";
import { IResponseErrorInterface } from "./interfaces/response.error.interface"
import { ShipmentCancelSchemaDto } from "./dto/fedex/cancel-payload.dto"
import { AccountNumberDto } from "./dto/fedex/accountNumber.dto";
import { DeletionControl } from "./enums/fedex.const";
import { IResponseCancelInterface } from "./interfaces/response.cancel.interface";
import { IResponseShipmentDocumentsInterface } from "./interfaces/response.shipment.documents.interface";
export class ShipmentApiService {
private fedexApiKey: string;
private fedexSecretKey: string;
@Inject(CACHE_MANAGER) private cacheManager: Cache,
private config: ConfigService,
private shipmentService: ShipmentService,
private createFedexPayloadService: CreateFedexPayloadService
async sendShipmentByTransactionId(transactionId: string) {
const shipment = await this.shipmentService.getByTransactionId(t
if (shipment.shipmentStatus === ShipmentStatus.ACCEPTED_BY_SHIPP
return { error: "Shipment already sent and accepted" };
switch (UidDeliveryServices[shipment.shipmentServiceUid]) {
case DeliveryServices.FEDEX:
this.sendShipmentToFedex(shipment);
case DeliveryServices.DHL:
this.sendShipmentToDhl(shipment);
async sendShipmentToFedex(shipment: ShipmentWithItems) {
this.fedexApiKey = this.config.get("FEDEX_API_KEY");
this.fedexSecretKey = this.config.get("FEDEX_SECRET_KEY");
const fedexShipmentDto = await this.createFedexPayloadService.cr
const token = await this.getFedexToken();
const response = await fetch(this.config.get("FEDEX_API_URL") +
body: JSON.stringify(fedexShipmentDto),
Authorization: "Bearer " + token,
"Content-Type": "application/json",
"x-customer-transaction-id": shipment.shipmentTransactio
const responseObject = await response.json();
let trackingNumber = null;
case responseObject.hasOwnProperty("output"):
let count = responseObject.output.transactionShipmen
let shipmentAlerts: Array<IResponseAlertInterface> =
const result = responseObject.output.transactionShip
trackingNumber = result.masterTrackingNumber;
if (result.hasOwnProperty("alerts")) {
shipmentAlerts = result.alerts;
shipmentAlerts.forEach(function (alert) {
this.shipmentService.addShipmentLog(shipment
let pieceResponses = result.pieceResponses[result.pi
if (pieceResponses.hasOwnProperty("packageDocuments"
let shipmentDocuments: Array<IResponseShipmentDo
shipmentDocuments = pieceResponses.packageDocume
shipmentDocuments.forEach(function (document) {
this.shipmentService.addShipmentDocuments(
pieceResponses.masterTrackingNumber
case responseObject.hasOwnProperty("errors"):
let shipmentErrors: Array<IResponseErrorInterface> =
shipmentErrors = responseObject.errors;
shipmentErrors.forEach(function (error) {
this.shipmentService.addShipmentLog(shipment.id,
this.shipmentService.addShipmentLog(shipment.id, Shi
let status: ShipmentStatus;
case null === trackingNumber:
status = ShipmentStatus.REJECTED_BY_SHIPPING_SERVICE;
status = ShipmentStatus.ACCEPTED_BY_SHIPPING_SERVICE;
this.shipmentService.updateShipment(shipment.id, status, trackin
async cancelShipmentFedex(shipment: ShipmentWithItems) {
const cancelShipmentFedex = new ShipmentCancelSchemaDto();
cancelShipmentFedex.accountNumber = new AccountNumberDto(this.co
cancelShipmentFedex.deletionControl = DeletionControl.DELETE_ALL
cancelShipmentFedex.emailShipment = false;
cancelShipmentFedex.senderCountryCode = shipment.countryFrom;
cancelShipmentFedex.trackingNumber = shipment.shipmentTrackingNu
const token = await this.getFedexToken();
const response = await fetch(this.config.get("FEDEX_API_URL") +
body: JSON.stringify(cancelShipmentFedex),
Authorization: "Bearer " + token,
"Content-Type": "application/json",
const responseObject = await response.json();
let cancelResult: IResponseCancelInterface = undefined;
if (responseObject.hasOwnProperty("output")) {
cancelResult = responseObject.output;
if (undefined === cancelResult) {
if (true === cancelResult.cancelledShipment) {
shipment.shipmentStatus = ShipmentStatus.CANCELED_BY_MANAGER
async sendShipmentToDhl(shipment: ShipmentWithItems) {
console.log(JSON.stringify(shipment));
const fedexTokenCacheKey = "fedex-token";
let token = await this.cacheManager.get(fedexTokenCacheKey);
if (undefined !== token) {
grant_type: "client_credentials",
client_id: this.fedexApiKey,
client_secret: this.fedexSecretKey,
const response = await fetch(this.config.get("FEDEX_API_URL") +
body: new URLSearchParams(data),
"Content-Type": "application/x-www-form-urlencoded",
const responseJson = await response.json();
token = responseJson.access_token;
await this.cacheManager.set(fedexTokenCacheKey, token, 3500 * 100