-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
173 lines (163 loc) · 5.82 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
const fs = require("fs");
const request = require("request-promise");
const geolib = require("geolib");
// counter for dispatchShipment function
// TO-DO: remove counter and pass to function as a parameter
let counter = 0;
getDrivers = fileName => {
return new Promise(function(resolve, reject) {
fs.readFile(fileName, "utf8", function(error, data) {
// If the code experiences any errors it will log the error to the console.
if (error) {
reject(error);
}
resolve(data);
});
});
};
getShipments = fileName => {
return new Promise(function(resolve, reject) {
fs.readFile(fileName, "utf8", function(error, data) {
if (error) {
reject(error);
}
resolve(data);
});
});
};
calculateDistance = (shipmentLocation, drivers) => {
let driverDistanceArray = [];
// compute distance from various drivers to package
let driversJson = JSON.parse(drivers);
var keys = [];
for (let driver in driversJson) {
if (driversJson.hasOwnProperty(driver)) {
keys.push(driver);
}
}
for (var i = 0; i < keys.length; i++) {
let driverId = keys[i];
let driverLocation = driversJson[keys[i]].coordinates;
let distance = geolib.getDistance(driverLocation, shipmentLocation);
let driverDistanceObject = {
driver: driverId,
distance: distance
};
// push to an array
driverDistanceArray.push(driverDistanceObject);
}
// sort array closest to farther
let sortedArr = driverDistanceArray.sort(compare);
// output is a sorted array of closest drivers
return sortedArr;
};
// helper function to compare distances from driver and shipment
compare = (a, b) => {
if (a.distance < b.distance) return -1;
if (a.distance > b.distance) return 1;
return 0;
};
dispatchRequest = (driverId, shipmentId) => {
return new Promise(function(reject, resolve) {
request({
method: "POST",
uri:
"https://backend-programming-challenge.herokuapp.com/driver/" +
driverId +
"/dispatch",
json: true,
body: {
shipmentId: shipmentId
},
headers: {
"User-Agent": "Bolt Dispatch"
}
}).then((error, response, body) => {
if (error) {
reject(error);
}
// resolves the message that is sent back from request
resolve(body);
});
});
};
dispatchShipment = async (keys, json, drivers) => {
if (keys.length == 0) {
// end function
return;
}
console.log("\n" +
" **************************** STARTING NEW DISPATCH ****************************" + "\n",
"*******************************************************************************"
);
// console.log("keys", keys);
// console.log("keys[0]", keys[0])
let shipmentId = keys[0];
let shipmentLocation = json[keys[0]].coordinates;
let sortedDistanceArr = calculateDistance(shipmentLocation, drivers);
let closestDriver = sortedDistanceArr[counter].driver;
// dispatch package to closest driver
// setTimeout((dispatchRequest), 1500, closestDriver, parseInt(shipmentId));
dispatch = await dispatchRequest(closestDriver, parseInt(shipmentId));
// console.log("dispatch.response", dispatch.response);
// console.log("dispatch", dispatch);
if (dispatch.response === "Accepted") {
console.log("DriverId " + closestDriver + " has " + dispatch.response + " package " + shipmentId);
// remove package that has already been dispatched
keys = keys.slice(1);
console.log("Remaining shipments", keys);
// set counter to zero and begin dispatch process again
counter = 0;
// console.log("counter", counter);
dispatchShipment(keys, json, drivers);
} else {
counter++;
// console.log("counter", counter);
console.log("driverId " + closestDriver + " Denied package request");
let mod = await modulusChecker(counter, keys, json, drivers);
// console.log("mod", mod);
console.log("Thank you for waiting 10 seconds while we dispatch to the next driver");
dispatchShipment(keys, json, drivers);
}
if (sortedDistanceArr.length == counter) {
console.log("All drivers denied package " + shipmentId);
// remove shipment from list of available shipments
keys = keys.slice(1);
dispatchShipment(keys, json, drivers);
}
};
// after every 3 dispatches wait 10 seconds before dispatching to next 3 drivers
modulusChecker = (counter, keys, json, drivers) => {
return new Promise(function(resolve, reject) {
let modulus = counter % 3;
// console.log("modulus", modulus);
console.log("Waiting to dispatch to next available drivers");
if (modulus == 0) {
setTimeout(() => {
resolve("Beginning Dispatch");
}, 2000);
} else {
console.log("Dispatching Next Driver");
dispatchShipment(keys, json, drivers);
}
});
};
// ******************* Main application
main = async () => {
// read drivers.json
const drivers = await getDrivers("drivers.json");
// read shipments.json
const shipments = await getShipments("shipments.json");
// iterate through shipments to create more accessible array
let json = JSON.parse(shipments);
let keys = [];
for (let shipment in json) {
if (json.hasOwnProperty(shipment)) {
keys.push(shipment);
}
}
// recursive function that iterates over keys and drivers
dispatchShipment(keys, json, drivers);
};
// Execute Main function
main();