generated from idea2app/NodeTS-LeanCloud
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathClinic.ts
118 lines (100 loc) · 3.03 KB
/
Clinic.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
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 { ClinicModel } from '../model';
import { RoleController } from './Role';
export class Clinic extends LCObject {}
@JsonController('/clinic')
export class ClinicController {
@Post()
@Authorized()
async create(
@Ctx() { currentUser: user }: LCContext,
@Body() { name, ...rest }: ClinicModel
) {
let clinic = await new Query(Clinic).equalTo('name', name).first();
if (clinic)
throw new ForbiddenError(
'同一义诊机构/个人不能重复发布,请联系原发布者修改'
);
const acl = new ACL();
acl.setPublicReadAccess(true),
acl.setPublicWriteAccess(false),
acl.setWriteAccess(user, true),
acl.setRoleWriteAccess(await RoleController.getAdmin(), true);
clinic = await new Clinic()
.setACL(acl)
.save({ ...rest, name, creator: user, verified: false }, { user });
return clinic.toJSON();
}
@Get()
getList(
@QueryParam('verified') verified: boolean,
@QueryParam('pageSize') size: number,
@QueryParam('pageIndex') index: number
) {
return queryPage(Clinic, {
include: ['creator', 'verifier'],
equal: { verified },
size,
index
});
}
@Get('/:id')
async getOne(@Param('id') id: string) {
const clinic = await new Query(Clinic).get(id);
return clinic.toJSON();
}
@Put('/:id')
@Authorized()
async edit(
@Ctx() { currentUser: user }: LCContext,
@Param('id') id: string,
@Body() { name, ...rest }: ClinicModel
) {
let clinic = LCObject.createWithoutData('Clinic', id);
await clinic.save(
{ ...rest, verified: false, verifier: null },
{ user }
);
clinic = await new Query(Clinic).include('creator').get(id);
return clinic.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('Clinic', id).save(
{ verified, verifier: user },
{ user }
);
}
@Delete('/:id')
@Authorized()
@OnUndefined(204)
async delete(
@Ctx() { currentUser: user }: LCContext,
@Param('id') id: string
) {
await LCObject.createWithoutData('Clinic', id).destroy({ user });
}
}