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