-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathkey.js
73 lines (67 loc) · 1.92 KB
/
key.js
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
// 导入模型
const Key = require('../models/key')
const mailer = require('../mailer')
module.exports = {
async getAllKeys(ctx, next) {
try {
const data = await Key.findAll()
ctx.body = { msg: 1001, data }
} catch (err) {
ctx.body = { code: -1, msg: 1000, }
}
await next();
},
async getAllEmptyKeysCount(ctx, next) {
try {
const { count } = await Key.findAllByEmail(null)
ctx.body = { msg: 1001, data: count }
} catch (err) {
ctx.body = { code: -1, msg: 1000, }
}
await next();
},
async createKey(ctx, next) {
const req = ctx.request.body
if (!req.key) {
ctx.body = { code: -1, msg: 1002 }
return await next();
}
try {
const data = await Key.createKey(req)
ctx.body = { msg: 1003, data }
} catch (err) {
ctx.body = { code: -1, msg: 1000 }
}
await next();
},
async sendKey(ctx, next) {
const req = ctx.request.body
if (req.user && req.email) {
try {
const { id, key } = await Key.findByEmail(null)
await Key.updateById({ id, ...req})
await mailer(req.email, key)
ctx.body = { msg: 1006 }
} catch (err) {
ctx.body = { code: -1, msg: 1000 }
}
} else {
ctx.body = { code: -1, msg: 1002 }
}
await next();
},
async deleteById(ctx, next) {
const query = ctx.request.query // 获取get请求参数
if (query && query.id) {
try {
await Key.deleteById(query.id)
ctx.body = { msg: 1005 }
} catch (err) {
ctx.body = { code: -1, msg: 1000 }
}
} else {
ctx.body = { code: -1, msg: 1002 }
}
await next();
}
}