File size: 14,713 Bytes
fcf8749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
const prisma = require('../config/database');
const Joi = require('joi');

/**
 * GET /api/deliveries/assigned - Driver's active/pending deliveries
 */
const getAssignedDeliveries = async (req, res) => {
    try {
        const deliveries = await prisma.delivery.findMany({
            where: {
                driverId: req.user.id,
                status: {
                    not: 'COMPLETED',
                },
            },
            include: {
                shipment: true,
                truck: true,
            },
            orderBy: {
                createdAt: 'desc',
            },
        });

        res.status(200).json({
            success: true,
            data: deliveries,
        });
    } catch (error) {
        console.error('Get assigned deliveries error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to fetch assigned deliveries',
        });
    }
};

/**
 * POST /api/deliveries/:id/accept - Driver accepts delivery
 */
const acceptDelivery = async (req, res) => {
    try {
        const { id } = req.params;

        const delivery = await prisma.delivery.findUnique({
            where: { id },
            include: { shipment: true },
        });

        if (!delivery || delivery.driverId !== req.user.id) {
            return res.status(404).json({
                success: false,
                message: 'Delivery not found',
            });
        }

        if (delivery.status !== 'PENDING') {
            return res.status(400).json({
                success: false,
                message: 'Delivery is already accepted or in progress',
            });
        }

        // Update delivery and shipment status
        const updatedDelivery = await prisma.$transaction([
            prisma.delivery.update({
                where: { id },
                data: { status: 'EN_ROUTE_TO_PICKUP' },
            }),
            prisma.shipment.update({
                where: { id: delivery.shipmentId },
                data: { status: 'DRIVER_ACCEPTED' },
            }),
        ]);

        res.status(200).json({
            success: true,
            message: 'Delivery accepted',
            data: updatedDelivery[0],
        });
    } catch (error) {
        console.error('Accept delivery error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to accept delivery',
        });
    }
};

/**
 * POST /api/deliveries/:id/reject - Driver rejects delivery
 */
const rejectDelivery = async (req, res) => {
    try {
        const { id } = req.params;

        const delivery = await prisma.delivery.findUnique({
            where: { id },
        });

        if (!delivery || delivery.driverId !== req.user.id) {
            return res.status(404).json({
                success: false,
                message: 'Delivery not found',
            });
        }

        // Rejection usually means unassigning the driver or marking as cancelled
        await prisma.$transaction([
            prisma.delivery.update({
                where: { id },
                data: { status: 'CANCELLED' },
            }),
            prisma.shipment.update({
                where: { id: delivery.shipmentId },
                data: { status: 'DRIVER_REJECTED' },
            }),
        ]);

        res.status(200).json({
            success: true,
            message: 'Delivery rejected',
        });
    } catch (error) {
        console.error('Reject delivery error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to reject delivery',
        });
    }
};

/**
 * POST /api/deliveries/:id/start - Start navigation to pickup
 */
const startDelivery = async (req, res) => {
    try {
        const { id } = req.params;

        const delivery = await prisma.delivery.findUnique({
            where: { id },
        });

        if (!delivery || delivery.driverId !== req.user.id) {
            return res.status(404).json({
                success: false,
                message: 'Delivery not found',
            });
        }

        const updatedDelivery = await prisma.delivery.update({
            where: { id },
            data: { status: 'IN_TRANSIT' },
        });

        // Also update shipment status
        await prisma.shipment.update({
            where: { id: delivery.shipmentId },
            data: { status: 'IN_TRANSIT' },
        });

        res.status(200).json({
            success: true,
            message: 'Delivery started',
            data: updatedDelivery,
        });
    } catch (error) {
        console.error('Start delivery error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to start delivery',
        });
    }
};

/**
 * POST /api/deliveries/:id/pickup - Cargo loaded
 */
const pickupCargo = async (req, res) => {
    try {
        const { id } = req.params;

        const delivery = await prisma.delivery.findUnique({
            where: { id },
        });

        if (!delivery || delivery.driverId !== req.user.id) {
            return res.status(404).json({
                success: false,
                message: 'Delivery not found',
            });
        }

        const updatedDelivery = await prisma.delivery.update({
            where: { id },
            data: {
                status: 'CARGO_LOADED',
                pickupTime: new Date(),
            },
        });

        res.status(200).json({
            success: true,
            message: 'Cargo marked as picked up',
            data: updatedDelivery,
        });
    } catch (error) {
        console.error('Pickup cargo error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to mark cargo as picked up',
        });
    }
};

/**
 * POST /api/deliveries/:id/complete - Delivery complete
 */
const completeDelivery = async (req, res) => {
    try {
        const { id } = req.params;

        const delivery = await prisma.delivery.findUnique({
            where: { id },
            include: { shipment: true },
        });

        if (!delivery || delivery.driverId !== req.user.id) {
            return res.status(404).json({
                success: false,
                message: 'Delivery not found',
            });
        }

        // Update delivery status
        const updatedDelivery = await prisma.delivery.update({
            where: { id },
            data: {
                status: 'COMPLETED',
                completedAt: new Date(),
                dropTime: new Date(),
            },
        });

        // Update shipment if exists
        if (delivery.shipmentId) {
            await prisma.shipment.update({
                where: { id: delivery.shipmentId },
                data: { status: 'COMPLETED' },
            });
        }

        // Create transaction record
        const transaction = await prisma.transaction.create({
            data: {
                driverId: req.user.id,
                deliveryId: id,
                amount: delivery.totalEarnings || 0,
                type: 'BASE_DELIVERY',
                description: `Payment for delivery ${id}`,
                route: `${delivery.pickupLocation}${delivery.dropLocation}`,
            },
        });

        // Update driver's total earnings
        await prisma.user.update({
            where: { id: req.user.id },
            data: {
                totalEarnings: { increment: delivery.totalEarnings || 0 },
                weeklyEarnings: { increment: delivery.totalEarnings || 0 },
                deliveriesCount: { increment: 1 },
                totalDistanceKm: { increment: delivery.distanceKm || 0 },
            },
        });

        res.status(200).json({
            success: true,
            message: 'Delivery completed successfully',
            data: {
                delivery: updatedDelivery,
                transaction,
            },
        });
    } catch (error) {
        console.error('Complete delivery error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to complete delivery',
        });
    }
};

/**
 * POST /api/deliveries/:id/upload-photos - Upload photos (4 angles)
 */
const uploadPhotos = async (req, res) => {
    try {
        const { id } = req.params;
        const { photos } = req.body; // Expecting array of URLs

        if (!photos || !Array.isArray(photos)) {
            return res.status(400).json({
                success: false,
                message: 'Photos are required as an array of URLs',
            });
        }

        const delivery = await prisma.delivery.findUnique({
            where: { id },
        });

        if (!delivery || delivery.driverId !== req.user.id) {
            return res.status(404).json({
                success: false,
                message: 'Delivery not found',
            });
        }

        // In a real app, we'd handle file uploads here. 
        // For now, we update the relay node or delivery record if applicable.
        // Assuming delivery has a way to store photos or it's linked to a relay node.

        res.status(200).json({
            success: true,
            message: 'Photos uploaded successfully (simulated)',
            count: photos.length,
        });
    } catch (error) {
        console.error('Upload photos error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to upload photos',
        });
    }
};

/**
 * POST /api/deliveries/create - Create new delivery from package form
 */
const createDelivery = async (req, res) => {
    try {
        const {
            pickupLocation,
            pickupLat,
            pickupLng,
            pickupTime,
            deliveryLocation,
            deliveryLat,
            deliveryLng,
            deliveryTime,
            cargoType,
            cargoWeight,
            cargoVolumeLtrs,
            cargoValue,
            specialInstructions,
            courierCompanyId,
            dispatcherId,
            distanceKm,
            postalCode,
            timeWindowStart,
            timeWindowEnd
        } = req.body;

        // Validate required fields
        if (!pickupLocation || !deliveryLocation || !cargoType || !cargoWeight || !cargoVolumeLtrs) {
            return res.status(400).json({
                success: false,
                message: 'Missing required fields: pickupLocation, deliveryLocation, cargoType, cargoWeight, cargoVolumeLtrs'
            });
        }

        // Validate coordinates
        if (!pickupLat || !pickupLng || !deliveryLat || !deliveryLng) {
            return res.status(400).json({
                success: false,
                message: 'Missing required coordinates: pickupLat, pickupLng, deliveryLat, deliveryLng'
            });
        }

        // Validate dispatcherId
        const finalDispatcherId = dispatcherId || (req.user ? req.user.id : null);
        if (!finalDispatcherId) {
            return res.status(400).json({
                success: false,
                message: 'dispatcherId is required'
            });
        }

        // Generate unique package ID
        const packageId = `PKG-${Date.now()}-${Math.random().toString(36).substr(2, 9).toUpperCase()}`;

        // Create delivery record
        const delivery = await prisma.delivery.create({
            data: {
                packageId,
                pickupLocation,
                pickupLat: parseFloat(pickupLat),
                pickupLng: parseFloat(pickupLng),
                pickupTime: pickupTime ? new Date(pickupTime) : null,
                dropLocation: deliveryLocation,
                dropLat: parseFloat(deliveryLat),
                dropLng: parseFloat(deliveryLng),
                dropTime: deliveryTime ? new Date(deliveryTime) : null,
                cargoType,
                cargoWeight: parseFloat(cargoWeight),
                cargoVolumeLtrs: parseFloat(cargoVolumeLtrs),
                distanceKm: distanceKm ? parseFloat(distanceKm) : null,
                postalCode: postalCode || null,
                timeWindowStart: timeWindowStart ? new Date(timeWindowStart) : null,
                timeWindowEnd: timeWindowEnd ? new Date(timeWindowEnd) : null,
                // specialInstructions: specialInstructions || null,
                courierCompanyId: courierCompanyId || null,
                status: 'PENDING',
                dispatcherId: finalDispatcherId
            }
        });

        res.status(201).json({
            success: true,
            message: 'Delivery created successfully',
            data: delivery
        });
    } catch (error) {
        console.error('Create delivery error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to create delivery',
            error: error.message
        });
    }
};

/**
 * GET /api/deliveries/unassigned - Dispatcher's list of unassigned pending deliveries
 */
const getUnassignedDeliveries = async (req, res) => {
    try {
        const { courierCompanyId } = req.query;

        if (!courierCompanyId) {
            return res.status(400).json({
                success: false,
                message: 'courierCompanyId is required',
            });
        }

        const whereClause = {
            status: 'PENDING',
            driverId: null,
            truckId: null,
            optimizedRouteId: null,
            OR: [
                { courierCompanyId: courierCompanyId },
                { courierCompanyId: null }
            ]
        };

        const [count, deliveries] = await Promise.all([
            prisma.delivery.count({ where: whereClause }),
            prisma.delivery.findMany({
                where: whereClause,
                include: {
                    shipment: true,
                },
                orderBy: {
                    createdAt: 'desc',
                },
            }),
        ]);

        res.status(200).json({
            success: true,
            data: {
                count,
                deliveries,
            },
        });
    } catch (error) {
        console.error('Get unassigned deliveries error:', error);
        res.status(500).json({
            success: false,
            message: 'Failed to fetch unassigned deliveries',
            error: error.message,
        });
    }
};

module.exports = {
    getAssignedDeliveries,
    acceptDelivery,
    rejectDelivery,
    startDelivery,
    pickupCargo,
    completeDelivery,
    uploadPhotos,
    createDelivery,
    getUnassignedDeliveries,
};