rbac.js 788 字节
Newer Older
study夏羽's avatar
study夏羽 已提交
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
const {
  ERROR
} = require('../common/error')

function hasRole (...roleList) {
  const userRole = this.authInfo.role || []
  if (userRole.includes('admin')) {
    return
  }
  const isMatch = roleList.every(roleItem => {
    return userRole.includes(roleItem)
  })
  if (!isMatch) {
    throw {
      errCode: ERROR.PERMISSION_ERROR
    }
  }
}

function hasPermission (...permissionList) {
  const userRole = this.authInfo.role || []
  const userPermission = this.authInfo.permission || []
  if (userRole.includes('admin')) {
    return
  }
  const isMatch = permissionList.every(permissionItem => {
    return userPermission.includes(permissionItem)
  })
  if (!isMatch) {
    throw {
      errCode: ERROR.PERMISSION_ERROR
    }
  }
}

module.exports = {
  hasRole,
  hasPermission
}