Compare commits

...

9 Commits
v1 ... master

Author SHA1 Message Date
yutent f7542ecab3 更新package.json 2025-01-06 10:56:51 +08:00
yutent bd5c69c7dc 更新依赖 2025-01-06 10:53:20 +08:00
yutent 7e29408bdf 更新导出结构; 增加index.d.ts声明 2025-01-06 10:52:59 +08:00
yutent f0058ae87b 增加index.d.ts文件 2025-01-02 12:13:27 +08:00
yutent 0cd03ccde9 crypto.js升级为最新版 2023-11-01 14:33:57 +08:00
yutent 8c7ba96e60 2.0.1 2023-10-31 18:40:05 +08:00
yutent 819361737f 更新readme 2023-10-31 18:39:38 +08:00
yutent e2433cba13 完成2.0版重构 2023-10-31 18:37:08 +08:00
yutent 458c2b403f 2.0 2023-10-27 19:19:48 +08:00
4 changed files with 122 additions and 65 deletions

View File

@ -1,4 +1,6 @@
![module info](https://nodei.co/npm/@gm5/jwt.png?downloads=true&downloadRank=true&stars=true)
![downloads](https://img.shields.io/npm/dt/@gm5/jwt.svg)
![version](https://img.shields.io/npm/v/@gm5/jwt.svg)
# @gm5/jwt # @gm5/jwt
@ -14,10 +16,13 @@ npm install @gm5/jwt
```js ```js
import Five from '@gm5/code' import { createApp } from '@gm5/code'
import jwt from '@gm5/jwt' import { createJwt, JwtModule } from '@gm5/jwt'
var app = new Five() var app = createApp()
app.install(jwt)
app.install(JwtModule)
.use(createJwt())
.run()
``` ```

21
index.d.ts vendored Normal file
View File

@ -0,0 +1,21 @@
declare module '@gm5/jwt' {
//
interface JwtConfig {
secret: string
ttl?: number
level?: number
}
interface JwtInstance {
ttl: number
sign(data: object, secret: string): string
verify(token: string, secret: string): object | false
}
interface JwtModule {
name: 'jwt'
install(conf?: JwtConfig): JwtInstance
}
export function createJwt(): JwtModule
}

130
index.js
View File

@ -4,65 +4,24 @@
* @date 2020/09/16 17:23:52 * @date 2020/09/16 17:23:52
*/ */
import crypto from 'crypto.js' import { base64encode, base64decode, hmac, sha1 } from 'crypto.js'
import { base64encode, base64decode, sha1 } from 'crypto.js'
function hmac(str, secret) { const HS256_HEADER = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9'
var buf = crypto.hmac('sha256', str, secret, 'buffer') const DEFAULT_CONFIG = {
ttl: 3600 * 24 * 7,
level: 0, // 校验级别, 0: 不校验客户端, 2: ua, 4: ip, 6: ua + ip
secret: 'it_is_secret_key' // jwt密钥, 使用时请修改
}
function hmac_base64(str, secret) {
let buf = hmac('sha256', str, secret, 'buffer')
return base64encode(buf, true) return base64encode(buf, true)
} }
export const jwtPackage = { function JwtMiddleware(req, res, next) {
name: 'jwt', let { secret, level } = this.get('jwt')
install() { let deviceID = ''
return { let ssid
// 签名, 返回token
sign(data, secret, ttl) {
// header: base64("{"typ":"JWT","alg":"HS256"}")
// 这里固定使用sha256,
var header = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9'
// 加入过期时间,
var payload = { data, expires: Date.now() + ttl * 1000 }
var auth_str = ''
payload = JSON.stringify(payload)
payload = base64encode(payload, true)
auth_str = hmac(`${header}.${payload}`, secret)
return [header, payload, auth_str].join('.')
},
// 校验token
verify(token = '', secret) {
var jwt = token.split('.')
var auth_str, payload
if (jwt.length !== 3) {
return false
}
auth_str = jwt.pop()
payload = JSON.parse(base64decode(jwt[1], true))
// 如果已经过期, 则不再校验hash
if (payload.expires < Date.now()) {
return false
}
if (hmac(jwt.join('.'), secret) === auth_str) {
return payload.data
}
return false
}
}
}
}
export function jwtConnect(req, res, next) {
var { secret, level } = this.get('jwt')
var deviceID = ''
var ssid
// options请求不处理jwt // options请求不处理jwt
if (req.method === 'OPTIONS') { if (req.method === 'OPTIONS') {
@ -83,7 +42,66 @@ export function jwtConnect(req, res, next) {
deviceID = sha1(deviceID) deviceID = sha1(deviceID)
} }
req.mixKey = secret + deviceID req.__mix_key__ = secret + deviceID
next() next()
} }
export function createJwt() {
return {
name: 'jwt',
install(conf = {}) {
if (!conf.secret) {
console.warn(
new Error(
'You must set a `secret` key for jwt, or it will use the default key.'
)
)
}
let jwt = Object.assign({}, DEFAULT_CONFIG, conf)
this.set({ jwt })
this.use(JwtMiddleware)
return {
ttl: jwt.ttl,
// 签名, 返回token
// header: base64("{"typ":"JWT","alg":"HS256"}")
// 这里固定使用sha256
sign(data, secret) {
// 加入过期时间,
let payload = { data, expires: Date.now() + this.ttl * 1000 }
let token = ''
payload = base64encode(JSON.stringify(payload), true)
token = hmac_base64(`${HS256_HEADER}.${payload}`, secret)
return `${HS256_HEADER}.${payload}.${token}`
},
// 校验token
verify(token = '', secret) {
let jwt = token.split('.')
let [_, payload, auth] = jwt
if (jwt.length !== 3) {
return false
}
payload = JSON.parse(base64decode(payload, true))
// 如果已经过期, 则不再校验hash
if (payload.expires < Date.now()) {
return false
}
if (hmac_base64(jwt.join('.'), secret) === auth) {
return payload.data
}
return false
}
}
}
}
}

View File

@ -1,14 +1,27 @@
{ {
"name": "@gm5/jwt", "name": "@gm5/jwt",
"version": "1.1.0", "version": "3.0.1",
"type": "module", "type": "module",
"description": "json web token", "description": "json web token",
"main": "index.js", "main": "index.js",
"types": "index.d.ts",
"author": "yutent", "author": "yutent",
"keywords": ["fivejs", "jwt", "http"], "keywords": [
"repository": "https://github.com/bytedo/gmf.jwt.git", "fivejs",
"gm5",
"jwt",
"http",
"json_web_token"
],
"repository": {
"type": "git",
"url": "https://git.wkit.fun/gm5/jwt.git"
},
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"crypto.js": "^2.0.1" "crypto.js": "^3.3.4"
},
"engines": {
"node": ">=16.0.0"
} }
} }