token-utils.js 9.4 KB
Newer Older
雪洛's avatar
雪洛 已提交
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
import jwt from '../../common/jwt'
import {
  ERROR
} from '../../common/error'
import {
  dbCmd,
  userCollection,
  roleCollection
} from '../../common/constants'
import {
  getDistinctArray,
  compareUniIdVersion
} from '../../common/utils'
import {
  version
} from '../../../package.json'

export default class TokenUtils {
  constructor ({
    uniId
  } = {}) {
    /**
     * createToken、checkToken、refreshToken均有uid
     */
    this.uid = null
    /**
     * createToken、refreshToken均有userRecord,checkToken在刷新token时有userRecord
     */
    this.userRecord = null
    this.userPermission = null
    this.oldToken = null
    this.oldTokenPayload = null
    this.uniId = uniId
    this.config = this.uniId._getConfig()
    this.clientInfo = this.uniId._clientInfo
    this.checkConfig()
  }

  checkConfig () {
    const {
      tokenExpiresIn,
      tokenExpiresThreshold
    } = this.config
雪洛's avatar
雪洛 已提交
44
    if (tokenExpiresThreshold >= tokenExpiresIn) {
雪洛's avatar
雪洛 已提交
45 46
      throw new Error('Config error, tokenExpiresThreshold should be less than tokenExpiresIn')
    }
雪洛's avatar
雪洛 已提交
47 48 49
    if (tokenExpiresThreshold > tokenExpiresIn / 2) {
      console.warn(`Please check whether the tokenExpiresThreshold configuration is set too large, tokenExpiresThreshold: ${tokenExpiresThreshold}, tokenExpiresIn: ${tokenExpiresIn}`)
    }
雪洛's avatar
雪洛 已提交
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 127 128 129 130 131 132 133 134 135 136 137 138
  }

  get customToken () {
    return this.uniId.interceptorMap.get('customToken')
  }

  isTokenInDb (tokenVersion) {
    /**
     * uni-id-common 1.0.10以上版本需要在可能的情况下校验数据库内的token
     */
    return compareUniIdVersion(tokenVersion, '1.0.10') >= 0
  }

  async getUserRecord () {
    if (this.userRecord) {
      return this.userRecord
    }
    const getUserRes = await userCollection.doc(this.uid).get()
    this.userRecord = getUserRes.data[0]
    if (!this.userRecord) {
      throw {
        errCode: ERROR.ACCOUNT_NOT_EXISTS
      }
    }
    switch (this.userRecord.status) {
      case undefined:
      case 0:
        break
      case 1:
        throw {
          errCode: ERROR.ACCOUNT_BANNED
        }
      case 2:
        throw {
          errCode: ERROR.ACCOUNT_AUDITING
        }
      case 3:
        throw {
          errCode: ERROR.ACCOUNT_AUDIT_FAILED
        }
      case 4:
        throw {
          errCode: ERROR.ACCOUNT_CLOSED
        }
      default:
        break
    }

    // refreshToken、checkToken时如果用到userRecord就会走此逻辑
    if (this.oldTokenPayload) {
      const isTokenInDb = this.isTokenInDb(this.oldTokenPayload.uniIdVersion)
      // uni-id-common 1.0.10起重新启用token存储于数据库
      if (isTokenInDb) {
        const token = this.userRecord.token || []
        if (token.indexOf(this.oldToken) === -1) {
          throw {
            errCode: ERROR.CHECK_TOKEN_FAILED
          }
        }
      }
      // valid_token_date再用户更新密码时会进行更新,目的是让所有token失效
      if (this.userRecord.valid_token_date && this.userRecord.valid_token_date > this.oldTokenPayload.iat * 1000) {
        throw {
          errCode: ERROR.TOKEN_EXPIRED
        }
      }
    }
    return this.userRecord
  }

  async updateUserRecord (data) {
    await userCollection.doc(this.uid).update(data)
  }

  async getUserPermission () {
    if (this.userPermission) {
      return this.userPermission
    }
    const userRecord = await this.getUserRecord()
    const role = userRecord.role || []
    if (role.length === 0) {
      this.userPermission = {
        role: [],
        permission: []
      }
      return this.userPermission
    }
    if (role.includes('admin')) {
      this.userPermission = {
雪洛's avatar
雪洛 已提交
139
        role,
雪洛's avatar
雪洛 已提交
140 141 142 143 144 145
        permission: []
      }
      return this.userPermission
    }
    const getRoleListRes = await roleCollection.where({
      role_id: dbCmd.in(role)
雪洛's avatar
雪洛 已提交
146
    }).get()
雪洛's avatar
雪洛 已提交
147 148 149 150 151
    const permission = getDistinctArray(
      getRoleListRes.data.reduce((list, item) => {
        if (item.permission) {
          list.push(...item.permission)
        }
雪洛's avatar
雪洛 已提交
152
        return list
雪洛's avatar
雪洛 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
      }, [])
    )
    this.userPermission = {
      role,
      permission
    }
    return this.userPermission
  }

  /**
   * 创建token
   * @param {Object}  param
   * @param {String}  param.uid         用户id,必填
   * @param {Array}   param.role        用户角色,非必填
   * @param {Array}   param.permission  用户权限,非必填
   */
  async _createToken ({
    uid,
    role,
    permission
  } = {}) {
    if (!role || !permission) {
      const getUserPermissionResult = await this.getUserPermission()
      role = getUserPermissionResult.role
      permission = getUserPermissionResult.permission
    }
    let signContent = {
      uid,
      role,
      permission
    }
    if (this.uniId.interceptorMap.has('customToken')) {
      const customToken = this.uniId.interceptorMap.get('customToken')
      if (typeof customToken !== 'function') {
        throw new Error('Invalid custom token file')
      }
      signContent = await customToken({
        uid,
        role,
        permission
      })
    }

    const now = Date.now()
    const {
      tokenSecret,
雪洛's avatar
雪洛 已提交
199 200
      tokenExpiresIn,
      maxTokenLength = 10
雪洛's avatar
雪洛 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
    } = this.config
    const token = jwt.sign({
      ...signContent,
      uniIdVersion: version
    }, tokenSecret, {
      expiresIn: tokenExpiresIn
    })
    const userRecord = await this.getUserRecord()

    const tokenList = (userRecord.token || []).filter(item => {
      try {
        const payload = this._checkToken(item)
        if (userRecord.valid_token_date && userRecord.valid_token_date > payload.iat * 1000) {
          return false
        }
      } catch (error) {
        if (error.errCode === ERROR.TOKEN_EXPIRED) {
          return false
        }
      }
      return true
    })

    tokenList.push(token)

雪洛's avatar
雪洛 已提交
226
    if (tokenList.length > maxTokenLength) {
雪洛's avatar
雪洛 已提交
227
      tokenList.splice(0, tokenList.length - maxTokenLength)
雪洛's avatar
雪洛 已提交
228 229
    }

雪洛's avatar
雪洛 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
    await this.updateUserRecord({
      last_login_ip: this.clientInfo.clientIP,
      last_login_date: now,
      token: tokenList
    })
    return {
      token,
      tokenExpired: now + tokenExpiresIn * 1000
    }
  }

  /**
   * 创建token
   * @param {Object}  param
   * @param {String}  param.uid         用户id,必填
   * @param {Array}   param.role        用户角色,非必填
   * @param {Array}   param.permission  用户权限,非必填
   */
  async createToken ({
    uid,
    role,
    permission
  } = {}) {
    if (!uid) {
      throw {
        errCode: ERROR.PARAM_REQUIRED,
        errMsgValue: {
          param: 'uid'
        }
      }
    }
    this.uid = uid
    const {
      token,
      tokenExpired
    } = await this._createToken({
      uid,
      role,
      permission
    })
    return {
      errCode: 0,
      token,
      tokenExpired
    }
  }

  /**
   * 刷新token
   * @param {Object} param
   * @param {String} param.token 旧token
   */
  async refreshToken ({
    token
  } = {}) {
    if (!token) {
      throw {
        errCode: ERROR.PARAM_REQUIRED,
        errMsgValue: {
          param: 'token'
        }
      }
    }

    this.oldToken = token
    const payload = this._checkToken(token)
    this.uid = payload.uid
    this.oldTokenPayload = payload

    const {
      uid
    } = payload
    const {
      role,
      permission
    } = await this.getUserPermission()
    const {
      token: newToken,
      tokenExpired
    } = await this._createToken({
      uid,
      role,
      permission
    })
    return {
      errCode: 0,
      token: newToken,
      tokenExpired
    }
  }

  /**
   * 内部checkToken方法
   * @param {String} token token内容
   */
  _checkToken (token) {
    const {
      tokenSecret
    } = this.config
    let payload
    try {
      payload = jwt.verify(token, tokenSecret)
    } catch (error) {
      if (error.name === 'TokenExpiredError') {
        throw {
          errCode: ERROR.TOKEN_EXPIRED
        }
      }
      throw {
        errCode: ERROR.CHECK_TOKEN_FAILED
      }
    }
    return payload
  }

  /**
   * 校验token
   * @param {String}  token             token
   * @param {Object}  param
   * @param {Boolean} param.autoRefresh 是否自动刷新,默认自动刷新
   */
  async checkToken (token, {
    autoRefresh = true
  } = {}) {
    if (!token) {
      throw {
        errCode: ERROR.PARAM_REQUIRED,
        errMsgValue: {
          param: 'token'
        }
      }
    }
    this.oldToken = token
    const payload = this._checkToken(token)
    this.uid = payload.uid
    this.oldTokenPayload = payload

    const {
      tokenExpiresThreshold
    } = this.config
    const {
      uid,
      role,
      permission
    } = payload

    const rbacInfo = {
      role,
      permission
    }
    if (!role && !permission) {
      const {
        role: userRole,
        permission: userPermission
      } = await this.getUserPermission()
      rbacInfo.role = userRole
      rbacInfo.permission = userPermission
    }
    if (!tokenExpiresThreshold || !autoRefresh) {
      const result = {
        code: 0,
        errCode: 0,
        ...payload,
        ...rbacInfo
      }
      delete result.uniIdVersion
      return result
    }
    const now = Date.now()
    const needRefreshToken = payload.exp * 1000 - now < tokenExpiresThreshold * 1000
    let newToken = {}
    if (needRefreshToken) {
      newToken = await this._createToken({
        uid
      })
    }

    const result = {
      code: 0,
      errCode: 0,
      ...payload,
      ...rbacInfo,
      ...newToken
    }
    delete result.uniIdVersion
    return result
  }
}