|
@ -72,32 +72,16 @@ let authorizeToken = async function (ctx, token) { |
|
|
if (token && tokenFormatRegexp.test(token)) { |
|
|
if (token && tokenFormatRegexp.test(token)) { |
|
|
try { |
|
|
try { |
|
|
const expired = await ctx.redis.hget(token, 'expired'); |
|
|
const expired = await ctx.redis.hget(token, 'expired'); |
|
|
|
|
|
|
|
|
// const authorizeRes = await ctx.app.fs.emisRequest.get('authorize', {
|
|
|
|
|
|
// query: { token }
|
|
|
|
|
|
// })
|
|
|
|
|
|
// const { userInfo, expired } = authorizeRes;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO 从项企 clickhouse 数据库中查 token 并更新
|
|
|
// TODO 从项企 clickhouse 数据库中查 token 并更新
|
|
|
if (expired && moment().valueOf() <= moment(expired).valueOf()) { |
|
|
if (expired && moment().valueOf() <= moment(expired).valueOf()) { |
|
|
const userInfo = JSON.parse(await ctx.redis.hmget(token, 'userInfo')); |
|
|
const userInfo = JSON.parse(await ctx.redis.hmget(token, 'userInfo')); |
|
|
const { pomsUserInfo: pomsUser } = userInfo |
|
|
|
|
|
|
|
|
|
|
|
// const pomsUser = await ctx.app.fs.dc.models.User.findOne({
|
|
|
|
|
|
// where: {
|
|
|
|
|
|
// pepUserId: userInfo.id
|
|
|
|
|
|
// }
|
|
|
|
|
|
// }) || {}
|
|
|
|
|
|
|
|
|
|
|
|
rslt = { |
|
|
rslt = { |
|
|
'authorized': userInfo.authorized, |
|
|
'authorized': userInfo.authorized, |
|
|
'resources': (userInfo || {}).resources || [], |
|
|
'resources': (userInfo || {}).resources || [], |
|
|
}; |
|
|
}; |
|
|
ctx.fs.api.userId = pomsUser.id; |
|
|
ctx.fs.api.userId = userInfo.id; |
|
|
ctx.fs.api.userInfo = pomsUser; |
|
|
ctx.fs.api.userInfo = userInfo; |
|
|
ctx.fs.api.pepUserId = userInfo.id; |
|
|
ctx.fs.api.pepUserId = userInfo.id; |
|
|
ctx.fs.api.pepUserInfo = userInfo; |
|
|
|
|
|
ctx.fs.api.token = token; |
|
|
ctx.fs.api.token = token; |
|
|
} |
|
|
} |
|
|
} catch (err) { |
|
|
} catch (err) { |
|
|