Skip to content

Commit 2888d73

Browse files
committed
refactor: Simplify travel job calculation
1 parent 17b9bfb commit 2888d73

File tree

2 files changed

+13
-23
lines changed

2 files changed

+13
-23
lines changed

src/job/job-logic.service.ts

-14
Original file line numberDiff line numberDiff line change
@@ -140,20 +140,6 @@ export class JobLogicService {
140140
time,
141141
};
142142
}
143-
case JobType.TRAVEL: {
144-
if (!systemPaths || !fleet) {
145-
throw new BadRequestException('Path and fleet id are required for this job type.');
146-
}
147-
if (!ships || ships.length === 0) {
148-
throw new ConflictException('There are no ships available to travel in this fleet.');
149-
}
150-
if (!systemPaths[0]._id.equals(fleet.location)) {
151-
throw new ConflictException('Path must start with the fleet\'s current location.');
152-
}
153-
return {
154-
time: this.systemLogicService.getTravelTime(systemPaths, fleet, ships, empire)
155-
};
156-
}
157143
default:
158144
throw new BadRequestException('Invalid job type.');
159145
}

src/job/job.service.ts

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {ForbiddenException, HttpException, Injectable, NotFoundException} from '@nestjs/common';
1+
import {BadRequestException, ConflictException, HttpException, Injectable, NotFoundException} from '@nestjs/common';
22
import {InjectModel} from '@nestjs/mongoose';
33
import {Job, JobDocument} from './job.schema';
44
import {Model, Types} from 'mongoose';
@@ -61,20 +61,24 @@ export class JobService extends MongooseRepository<Job> {
6161

6262
if (dto.type === JobType.TRAVEL) {
6363
if (!dto.path || !dto.fleet) {
64-
return null;
64+
throw new BadRequestException('Path and fleet are required for travel jobs.');
6565
}
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.');
6969
}
7070
const systemInPath = await this.systemService.findAll({_id: {$in: dto.path}});
7171
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.');
7575
}
7676
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 = {};
7882
} else {
7983
// Calculate resource requirements for the job
8084
({time, ...cost} = this.jobLogicService.getCostAndDuration(dto, empire, system));

0 commit comments

Comments
 (0)