|
1 |
| -import {ForbiddenException, HttpException, Injectable, NotFoundException} from '@nestjs/common'; |
| 1 | +import {BadRequestException, ConflictException, HttpException, Injectable, NotFoundException} from '@nestjs/common'; |
2 | 2 | import {InjectModel} from '@nestjs/mongoose';
|
3 | 3 | import {Job, JobDocument} from './job.schema';
|
4 | 4 | import {Model, Types} from 'mongoose';
|
@@ -61,20 +61,24 @@ export class JobService extends MongooseRepository<Job> {
|
61 | 61 |
|
62 | 62 | if (dto.type === JobType.TRAVEL) {
|
63 | 63 | if (!dto.path || !dto.fleet) {
|
64 |
| - return null; |
| 64 | + throw new BadRequestException('Path and fleet are required for travel jobs.'); |
65 | 65 | }
|
66 |
| - const travelJobs = await this.findAll({fleet: new Types.ObjectId(dto.fleet), type: JobType.TRAVEL}); |
67 |
| - if (travelJobs.length > 0) { |
68 |
| - throw new ForbiddenException('Fleet is already traveling.'); |
| 66 | + const travelJobs = await this.exists({fleet: new Types.ObjectId(dto.fleet), type: JobType.TRAVEL}); |
| 67 | + if (travelJobs) { |
| 68 | + throw new ConflictException('Fleet is already traveling.'); |
69 | 69 | }
|
70 | 70 | const systemInPath = await this.systemService.findAll({_id: {$in: dto.path}});
|
71 | 71 | const systemPaths = dto.path.map((id, index) => systemInPath.find(s => s._id.equals(id)) ?? notFound(`System at path[${index}] ${id}`));
|
72 |
| - const fleet = await this.fleetService.find(dto.fleet); |
73 |
| - if (!fleet) { |
74 |
| - return null; |
| 72 | + const fleet = await this.fleetService.find(dto.fleet) ?? notFound(`Fleet ${dto.fleet}`); |
| 73 | + if (!systemPaths[0]._id.equals(fleet.location)) { |
| 74 | + throw new ConflictException('Path must start with the fleet\'s current location.'); |
75 | 75 | }
|
76 | 76 | const ships = await this.shipService.findAll({fleet: fleet._id});
|
77 |
| - ({time, ...cost} = this.jobLogicService.getCostAndDuration(dto, empire, system, systemPaths, fleet, ships)); |
| 77 | + if (!ships.length) { |
| 78 | + throw new ConflictException('There are no ships available to travel in this fleet.'); |
| 79 | + } |
| 80 | + time = this.systemLogicService.getTravelTime(systemPaths, fleet, ships, empire); |
| 81 | + cost = {}; |
78 | 82 | } else {
|
79 | 83 | // Calculate resource requirements for the job
|
80 | 84 | ({time, ...cost} = this.jobLogicService.getCostAndDuration(dto, empire, system));
|
|
0 commit comments