@@ -20,8 +20,8 @@ import {EmpireService} from '../empire/empire.service';
20
20
import { JobType } from './job-type.enum' ;
21
21
import { EmpireDocument } from '../empire/empire.schema' ;
22
22
import { SystemService } from '../system/system.service' ;
23
- import { UserService } from '../user/user.service' ;
24
23
import { JobLogicService } from './job-logic.service' ;
24
+ import { MemberService } from '../member/member.service' ;
25
25
26
26
@Controller ( 'games/:game/empires/:empire/jobs' )
27
27
@ApiTags ( 'Jobs' )
@@ -32,7 +32,7 @@ export class JobController {
32
32
private readonly jobService : JobService ,
33
33
private readonly jobLogicService : JobLogicService ,
34
34
private readonly empireService : EmpireService ,
35
- private readonly userService : UserService ,
35
+ private readonly memberService : MemberService ,
36
36
private readonly systemService : SystemService ,
37
37
) {
38
38
}
@@ -63,7 +63,7 @@ export class JobController {
63
63
@Query ( 'system' , OptionalObjectIdPipe ) system ?: Types . ObjectId | undefined ,
64
64
@Query ( 'type' ) type ?: string ,
65
65
) : Promise < Job [ ] > {
66
- await this . checkUserAccess ( game , user , empire ) ;
66
+ await this . checkUserRead ( user , empire ) ;
67
67
return this . jobService . findAll ( { game, empire, system, type} , { sort : { priority : 1 , createdAt : 1 } } ) ;
68
68
}
69
69
@@ -79,7 +79,7 @@ export class JobController {
79
79
@Param ( 'id' , ObjectIdPipe ) id : Types . ObjectId ,
80
80
@AuthUser ( ) user : User ,
81
81
) : Promise < Job | null > {
82
- await this . checkUserAccess ( game , user , empire ) ;
82
+ await this . checkUserRead ( user , empire ) ;
83
83
return this . jobService . find ( id ) ;
84
84
}
85
85
@@ -96,7 +96,7 @@ export class JobController {
96
96
@Body ( ) dto : CreateJobDto ,
97
97
) : Promise < Job | null > {
98
98
const [ empireDoc , system ] = await Promise . all ( [
99
- this . checkUserAccess ( game , user , empire ) ,
99
+ this . checkUserWrite ( user , empire ) ,
100
100
dto . system ? this . systemService . find ( dto . system ) : Promise . resolve ( undefined ) ,
101
101
] ) ;
102
102
const result = await this . jobService . createJob ( dto , empireDoc , system ?? undefined ) ;
@@ -117,7 +117,7 @@ export class JobController {
117
117
@Body ( ) dto : UpdateJobDto ,
118
118
@AuthUser ( ) user : User ,
119
119
) : Promise < Job | null > {
120
- await this . checkUserAccess ( game , user , empire ) ;
120
+ await this . checkUserWrite ( user , empire ) ;
121
121
return this . jobService . update ( id , dto ) ;
122
122
}
123
123
@@ -133,7 +133,7 @@ export class JobController {
133
133
@Param ( 'id' , ObjectIdPipe ) id : Types . ObjectId ,
134
134
@AuthUser ( ) user : User ,
135
135
) : Promise < Job | null > {
136
- const userEmpire = await this . checkUserAccess ( game , user , empire ) ;
136
+ const userEmpire = await this . checkUserWrite ( user , empire ) ;
137
137
const job = await this . jobService . find ( id ) ?? notFound ( 'Job not found.' ) ;
138
138
if ( job . cost && job . progress < job . total ) {
139
139
this . jobLogicService . refundResources ( userEmpire , job ) ;
@@ -142,16 +142,22 @@ export class JobController {
142
142
return this . jobService . delete ( id ) ;
143
143
}
144
144
145
- private async checkUserAccess ( game : Types . ObjectId , user : User , empire : Types . ObjectId ) : Promise < EmpireDocument > {
146
- const userEmpire = await this . empireService . findOne ( { game , user : user . _id } ) ;
147
- if ( ! userEmpire ) {
148
- throw new ForbiddenException ( 'You do not own an empire in this game.' ) ;
145
+ private async checkUserWrite ( user : User , empire : Types . ObjectId ) : Promise < EmpireDocument > {
146
+ const requestedEmpire = await this . empireService . find ( empire ) ?? notFound ( empire ) ;
147
+ if ( requestedEmpire . user . equals ( user . _id ) ) {
148
+ return requestedEmpire ;
149
149
}
150
+ throw new ForbiddenException ( 'You can only modify jobs for your own empire.' ) ;
151
+ }
150
152
151
- const requestedEmpire = await this . empireService . findOne ( { _id : empire , game} ) ;
152
- if ( ! requestedEmpire || ! requestedEmpire . _id . equals ( userEmpire . _id ) ) {
153
- throw new ForbiddenException ( 'You can only access jobs for your own empire.' ) ;
153
+ private async checkUserRead ( user : User , empire : Types . ObjectId ) : Promise < void > {
154
+ const requestedEmpire = await this . empireService . findOne ( empire ) ?? notFound ( empire ) ;
155
+ if ( requestedEmpire . user . equals ( user . _id ) ) {
156
+ return ;
157
+ }
158
+ if ( await this . memberService . isSpectator ( requestedEmpire . game , user . _id ) ) {
159
+ return ;
154
160
}
155
- return userEmpire ;
161
+ throw new ForbiddenException ( 'You can only modify jobs for your own empire.' ) ;
156
162
}
157
163
}
0 commit comments