generated from idea2app/NodeTS-LeanCloud
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathLogistics.ts
122 lines (104 loc) · 3.14 KB
/
Logistics.ts
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
import { Object as LCObject, Query, ACL } from 'leanengine';
import {
JsonController,
Post,
Authorized,
Ctx,
Body,
ForbiddenError,
Get,
QueryParam,
Param,
Put,
Patch,
OnUndefined,
Delete
} from 'routing-controllers';
import { LCContext, queryPage } from '../utility';
import { LogisticsModel } from '../model';
import { RoleController } from './Role';
export class Logistics extends LCObject {}
@JsonController('/logistics')
export class LogisticsController {
@Post()
@Authorized()
async create(
@Ctx() { currentUser: user }: LCContext,
@Body() { name, ...rest }: LogisticsModel
) {
let logistics = await new Query(Logistics)
.equalTo('name', name)
.first();
if (logistics)
throw new ForbiddenError(
'同一物流公司不能重复发布,请联系原发布者修改'
);
const acl = new ACL();
acl.setPublicReadAccess(true),
acl.setPublicWriteAccess(false),
acl.setWriteAccess(user, true),
acl.setRoleWriteAccess(await RoleController.getAdmin(), true);
logistics = await new Logistics()
.setACL(acl)
.save({ ...rest, name, creator: user, verified: false }, { user });
return logistics.toJSON();
}
@Get()
getList(
@QueryParam('verified') verified: boolean,
@QueryParam('pageSize') size: number,
@QueryParam('pageIndex') index: number
) {
return queryPage(Logistics, {
include: ['creator', 'verifier'],
equal: { verified },
size,
index
});
}
@Get('/:id')
async getOne(@Param('id') id: string) {
const logistics = await new Query(Logistics).get(id);
return logistics.toJSON();
}
@Put('/:id')
@Authorized()
async edit(
@Ctx() { currentUser: user }: LCContext,
@Param('id') id: string,
@Body() { name, ...rest }: LogisticsModel
) {
let logistics = LCObject.createWithoutData('Logistics', id);
await logistics.save(
{ ...rest, verified: false, verifier: null },
{ user }
);
logistics = await new Query(Logistics).include('creator').get(id);
return logistics.toJSON();
}
@Patch('/:id')
@Authorized()
@OnUndefined(204)
async verify(
@Ctx() { currentUser: user }: LCContext,
@Param('id') id: string,
@Body() { verified }: { verified: boolean }
) {
if (!(await RoleController.isAdmin(user))) throw new ForbiddenError();
await LCObject.createWithoutData('Logistics', id).save(
{ verified, verifier: user },
{ user }
);
}
@Delete('/:id')
@Authorized()
@OnUndefined(204)
async delete(
@Ctx() { currentUser: user }: LCContext,
@Param('id') id: string
) {
await LCObject.createWithoutData('Logistics', id).destroy({
user
});
}
}