-
Notifications
You must be signed in to change notification settings - Fork 1
/
utils.js
62 lines (54 loc) · 1.35 KB
/
utils.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
const jwt = require('jsonwebtoken')
const config = require('../config/index')
/***
*
*/
const findMembers = function (instance, {
prefix,
specifiedType,
filter
}) {
// 递归函数
function _find(instance) {
//基线条件(跳出递归)
if (instance.__proto__ === null)
return []
let names = Reflect.ownKeys(instance)
names = names.filter((name) => {
// 过滤掉不满足条件的属性或方法名
return _shouldKeep(name)
})
return [...names, ..._find(instance.__proto__)]
}
function _shouldKeep(value) {
if (filter) {
if (filter(value)) {
return true
}
}
if (prefix)
if (value.startsWith(prefix))
return true
if (specifiedType)
if (instance[value] instanceof specifiedType)
return true
}
return _find(instance)
}
const generateToken = function(uid, scope){
const secretKey = config.secret.secretKey
const expiresIn = config.secret.expiresIn
const token = jwt.sign({
uid,
scope
},secretKey,{
expiresIn
})
// const object = jwt.verify(token, secretKey)
// console.log(object, 'hbblay1314')
return token
}
module.exports = {
findMembers,
generateToken,
}