Compare commits

...

6 Commits

Author SHA1 Message Date
yutent 2ab38350a8 2.0 2023-10-30 17:04:07 +08:00
yutent e7146ce5ef 精简代码 2023-10-30 16:59:54 +08:00
yutent 30f0ca48e3 完成2.0版重构 2023-10-30 16:41:37 +08:00
yutent 5e827928ba 一大波重构 2023-10-27 19:16:32 +08:00
yutent 94a997bb8a 一大波更新 2023-10-26 19:02:46 +08:00
yutent 6b3a44d387 调整语法, 兼容bun 2023-10-25 18:45:16 +08:00
11 changed files with 924 additions and 1141 deletions

1
.gitignore vendored
View File

@ -9,4 +9,5 @@
.vscode
.tmp/
node_modules/

234
index.js
View File

@ -8,17 +8,17 @@ import 'es.shim'
import Parser from './lib/index.js'
import { parseCookie } from './lib/cookie.js'
import fs from 'iofs'
import URL from 'url'
import QS from 'querystring'
import PATH from 'path'
import { fileURLToPath, parse } from 'node:url'
import QS from 'node:querystring'
import { dirname, resolve } from 'node:path'
const DEFAULT_FORM_TYPE = 'application/x-www-form-urlencoded'
var __dirname = PATH.dirname(URL.fileURLToPath(import.meta.url))
const __dirname = dirname(fileURLToPath(import.meta.url))
var tmpdir = PATH.resolve(__dirname, '.tmp/')
var encode = encodeURIComponent
var decode = decodeURIComponent
const tmpdir = resolve(__dirname, '.tmp/')
const encode = encodeURIComponent
const decode = decodeURIComponent
if (fs.isdir(tmpdir)) {
fs.rm(tmpdir, true)
@ -36,34 +36,50 @@ function hideProperty(host, name, value) {
}
export default class Request {
constructor(req, res) {
#req = null
#res = null
#opts = {}
#query = null
#body = null
#cookies = Object.create(null)
method = 'GET'
path = []
url = ''
host = '127.0.0.1'
constructor(req, res, opts = {}) {
this.method = req.method.toUpperCase()
this.params = {}
hideProperty(this, 'origin', { req, res })
hideProperty(this, '__GET__', null)
hideProperty(this, '__POST__', null)
hideProperty(this, '__COOKIE__', parseCookie(this.header('cookie') || ''))
this.#req = req
this.#res = res
this.__fixUrl()
this.host = req.headers['host']
this.#cookies = parseCookie(this.headers['cookie'] || '')
Object.assign(this.#opts, opts)
this.#init()
}
// 修正请求的url
__fixUrl() {
let _url = URL.parse(this.origin.req.url)
#init() {
let _url = parse(this.#req.url)
.pathname.slice(1)
.replace(/[\/]+$/, '')
let app = '' // 将作为主控制器(即apps目录下的应用)
let pathArr = []
let tmpArr = []
// URL上不允许有非法字符
if (/[^\w-/.@~!$&:+'=]/.test(decode(_url))) {
this.origin.res.rendered = true
this.origin.res.writeHead(400, {
if (/[^\w-/.,@~!$&:+'"=]/.test(decode(_url))) {
this.#res.rendered = true
this.#res.writeHead(400, {
'X-debug': `url [/${encode(_url)}] contains invalid characters`
})
return this.origin.res.end(`Invalid characters: /${_url}`)
return this.#res.end(`Invalid characters: /${_url}`)
}
// 修正url中可能出现的"多斜杠"
@ -86,88 +102,28 @@ export default class Request {
pathArr.shift()
// 将path第3段之后的部分, 每2个一组转为key-val数据对象, 存入params中
tmpArr = pathArr.slice(1).concat()
while (tmpArr.length) {
this.params[tmpArr.shift()] = tmpArr.shift() || null
}
tmpArr = undefined
for (let i in this.params) {
if (!this.params[i]) {
continue
}
// 修正数字类型,把符合条件的数字字符串转为数字(也许会误转, 但总的来说是利大弊)
this.params[i] = Number.parse(this.params[i])
}
this.app = app
this.url = _url
this.path = pathArr
}
/**
* [get 同php的$_GET]
*/
get(key = '', xss = true) {
xss = !!xss
if (!this.__GET__) {
let para = URL.parse(this.origin.req.url).query
para = Object.assign({}, QS.parse(para))
if (xss) {
for (let i in para) {
if (!para[i]) {
continue
}
if (Array.isArray(para[i])) {
para[i] = para[i].map(it => {
it = Number.parse(it.trim().xss())
return it
})
} else {
para[i] = Number.parse(para[i].trim().xss())
}
}
}
this.__GET__ = para
}
return key
? this.__GET__.hasOwnProperty(key)
? this.__GET__[key]
: null
: this.__GET__
}
/**
* [post 接收post, 需要 await ]
* [解析请求体, 需要 await ]
* @param {Str} key [字段]
*/
post(key = '', xss = true) {
let para = {}
#parseBody() {
let out = Promise.defer()
let form, contentType
xss = !!xss
//如果之前已经缓存过,则直接从缓存读取
if (this.__POST__) {
if (key) {
return this.__POST__.hasOwnProperty(key) ? this.__POST__[key] : null
} else {
return this.__POST__
}
}
this.#body = {}
contentType = this.header('content-type') || DEFAULT_FORM_TYPE
form = new Parser()
form.uploadDir = tmpdir
form.parse(this.origin.req)
form = new Parser(this.#req, { ...this.#opts, uploadDir: tmpdir })
form.on('field', (name, value) => {
form
.on('field', (name, value) => {
if (name === false) {
para = value
this.#body = value
return
}
if (~contentType.indexOf('urlencoded')) {
@ -179,14 +135,10 @@ export default class Request {
if (value.slice(0, 1) === '=') value = '=' + value
return Object.assign(para, JSON.parse(name + value))
return Object.assign(this.#body, JSON.parse(name + value))
}
}
if (typeof value === 'string') {
value = xss ? value.xss() : value
}
if (name.slice(-2) === '[]') {
name = name.slice(0, -2)
if (typeof value === 'string') {
@ -201,61 +153,58 @@ export default class Request {
let pkey = name.slice(name.lastIndexOf('[') + 1, -1)
name = name.slice(0, name.lastIndexOf('['))
if (!para.hasOwnProperty(name)) {
para[name] = {}
if (!this.#body.hasOwnProperty(name)) {
this.#body[name] = {}
}
if (!para[name].hasOwnProperty(pkey)) {
para[name][pkey] = {}
if (!this.#body[name].hasOwnProperty(pkey)) {
this.#body[name][pkey] = {}
}
para[name][pkey][key] = value
this.#body[name][pkey][key] = value
} else {
if (!para.hasOwnProperty(name)) {
para[name] = {}
if (!this.#body.hasOwnProperty(name)) {
this.#body[name] = {}
}
para[name][key] = value
this.#body[name][key] = value
}
return
}
para[name] = value
this.#body[name] = value
})
form.on('file', (name, file) => {
.on('file', (name, file) => {
if (name === false) {
this.#body = file
} else {
if (name.slice(-2) === '[]') {
name = name.slice(0, -2)
}
if (!para.hasOwnProperty(name)) {
para[name] = file
if (!this.#body.hasOwnProperty(name)) {
this.#body[name] = file
} else {
if (!Array.isArray(para[name])) {
para[name] = [para[name]]
if (!Array.isArray(this.#body[name])) {
this.#body[name] = [this.#body[name]]
}
this.#body[name].push(file)
}
para[name].push(file)
}
})
form.on('error', out.reject)
form.on('end', err => {
if (~contentType.indexOf('urlencoded')) {
for (let i in para) {
if (typeof para[i] === 'string') {
if (!para[i]) {
.on('error', out.reject)
.on('end', _ => {
if (contentType.includes('urlencoded')) {
for (let i in this.#body) {
if (typeof this.#body[i] === 'string') {
if (!this.#body[i]) {
continue
}
para[i] = Number.parse(para[i])
this.#body[i] = Number.parse(this.#body[i])
}
}
}
this._postParam = para
if (key) {
return out.resolve(para.hasOwnProperty(key) ? para[key] : null)
} else {
return out.resolve(para)
}
out.resolve(this.#body)
})
return out.promise
}
@ -263,23 +212,46 @@ export default class Request {
//获取响应头
header(key = '') {
key = key ? (key + '').toLowerCase() : null
return !!key ? this.origin.req.headers[key] : this.origin.req.headers
return !!key ? this.#req.headers[key] : this.#req.headers
}
// 读取cookie
cookie(key) {
if (key) {
return this.__COOKIE__[key]
return this.#cookies[key]
}
return this.__COOKIE__
return this.#cookies
}
get query() {
if (!this.#query) {
let para = parse(this.#req.url).query
this.#query = QS.parse(para)
}
return this.#query
}
get body() {
if (this.#body) {
return this.#body
}
return this.#parseBody()
}
get cookies() {
return this.#cookies
}
get headers() {
return this.#req.headers
}
//获取客户端IP
ip() {
get ip() {
return (
this.header('x-real-ip') ||
this.header('x-forwarded-for') ||
this.origin.req.connection.remoteAddress.replace('::ffff:', '')
this.headers['x-real-ip'] ||
this.headers['x-forwarded-for'] ||
this.#req.connection.remoteAddress.replace('::ffff:', '')
)
}
}

View File

@ -4,16 +4,16 @@
*/
// var KEY_REGEXP = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/
var SPLIT_REGEXP = /; */
const SPLIT_REGEXP = /; */
// var encode = encodeURIComponent
var decode = decodeURIComponent
const decode = decodeURIComponent
/**
* [parse 格式化字符串]
*/
export function parseCookie(str) {
var obj = {}
var pairs
let obj = {}
let pairs
if (typeof str !== 'string') {
return {}
@ -27,8 +27,8 @@ export function parseCookie(str) {
continue
}
var key = item[0].trim()
var val = item[1].trim()
let key = item[0].trim()
let val = item[1].trim()
obj[key] = decode(val)
}

View File

@ -1,38 +1,28 @@
import util from 'util'
import { WriteStream } from 'fs'
import { EventEmitter } from 'events'
import crypto from 'crypto'
import { WriteStream } from 'node:fs'
import { EventEmitter } from 'node:events'
export default function File(properties) {
EventEmitter.call(this)
export default class File extends EventEmitter {
#stream = null
this.size = 0
this.path = null
this.name = null
this.type = null
this.hash = null
this.lastModifiedDate = null
size = 0
path = null
name = null
type = null
lastModifiedDate = null
this._writeStream = null
constructor(props = {}) {
super()
for (var key in properties) {
this[key] = properties[key]
}
if (typeof this.hash === 'string') {
this.hash = crypto.createHash(properties.hash)
} else {
this.hash = null
for (let key in props) {
this[key] = props[key]
}
}
util.inherits(File, EventEmitter)
File.prototype.open = function() {
this._writeStream = new WriteStream(this.path)
open() {
this.#stream = new WriteStream(this.path)
}
File.prototype.toJSON = function() {
toJSON() {
return {
size: this.size,
path: this.path,
@ -40,31 +30,19 @@ File.prototype.toJSON = function() {
type: this.type,
mtime: this.lastModifiedDate,
length: this.length,
filename: this.filename,
mime: this.mime
filename: this.name,
mime: this.type
}
}
File.prototype.write = function(buffer, cb) {
var self = this
if (self.hash) {
self.hash.update(buffer)
}
this._writeStream.write(buffer, function() {
self.lastModifiedDate = new Date()
self.size += buffer.length
self.emit('progress', self.size)
cb()
write(buffer) {
this.#stream.write(buffer, _ => {
this.size += buffer.length
})
}
File.prototype.end = function(cb) {
var self = this
if (self.hash) {
self.hash = self.hash.digest('hex')
end(callback) {
this.lastModifiedDate = new Date()
this.#stream.end(callback)
}
this._writeStream.end(function() {
self.emit('end')
cb()
})
}

View File

@ -1,348 +1,191 @@
import crypto from 'crypto'
import fs from 'fs'
import util from 'util'
import path from 'path'
import File from './file.js'
import { EventEmitter } from 'events'
import { Stream } from 'stream'
import { StringDecoder } from 'string_decoder'
import crypto from 'node:crypto'
import fs from 'node:fs'
import { join } from 'node:path'
import { EventEmitter } from 'node:events'
import File from './file.js'
import { MultipartParser } from './multipart_parser.js'
import { QuerystringParser } from './querystring_parser.js'
import { OctetParser } from './octet_parser.js'
import { UrlencodedParser } from './urlencoded_parser.js'
import { OctetParser, EmptyParser } from './octet_parser.js'
import { JSONParser } from './json_parser.js'
export default function IncomingForm(opts) {
EventEmitter.call(this)
function randomPath(uploadDir) {
var name = 'upload_' + crypto.randomBytes(16).toString('hex')
return join(uploadDir, name)
}
opts = opts || {}
function parseFilename(headerValue) {
let matches = headerValue.match(/\bfilename="(.*?)"($|; )/i)
if (!matches) {
return
}
this.error = null
this.ended = false
let filename = matches[1].slice(matches[1].lastIndexOf('\\') + 1)
filename = filename.replace(/%22/g, '"')
filename = filename.replace(/&#([\d]{4});/g, function (m, code) {
return String.fromCharCode(code)
})
return filename
}
/* ------------------------------------- */
export default class IncomingForm extends EventEmitter {
#req = null
#error = false
#ended = false
ended = false
headers = null
bytesReceived = null
bytesExpected = null
#parser = null
#pending = 0
#openedFiles = []
constructor(req, opts = {}) {
super()
this.#req = req
this.maxFields = opts.maxFields || 1000
this.maxFieldsSize = opts.maxFieldsSize || 2 * 1024 * 1024
this.keepExtensions = opts.keepExtensions || false
this.uploadDir = opts.uploadDir
this.encoding = opts.encoding || 'utf-8'
this.headers = null
this.type = null
this.hash = opts.hash || false
this.multiples = opts.multiples || false
this.bytesReceived = null
this.bytesExpected = null
this.headers = req.headers
this.#parseContentLength()
this.#parseContentType()
this._parser = null
this._flushing = 0
this._fieldsSize = 0
this.openedFiles = []
}
util.inherits(IncomingForm, EventEmitter)
IncomingForm.prototype.parse = function(req, cb) {
this.pause = function() {
try {
req.pause()
} catch (err) {
// the stream was destroyed
if (!this.ended) {
// before it was completed, crash & burn
this._error(err)
}
return false
}
return true
}
this.resume = function() {
try {
req.resume()
} catch (err) {
// the stream was destroyed
if (!this.ended) {
// before it was completed, crash & burn
this._error(err)
}
return false
}
return true
}
// Setup callback first, so we don't miss anything from data events emitted
// immediately.
if (cb) {
var fields = {},
files = {}
this.on('field', function(name, value) {
fields[name] = value
})
.on('file', function(name, file) {
if (this.multiples) {
if (files[name]) {
if (!Array.isArray(files[name])) {
files[name] = [files[name]]
}
files[name].push(file)
} else {
files[name] = file
}
} else {
files[name] = file
}
})
.on('error', function(err) {
cb(err, fields, files)
})
.on('end', function() {
cb(null, fields, files)
})
}
// Parse headers and setup the parser, ready to start listening for data.
this.writeHeaders(req.headers)
// Start listening for data.
var self = this
req
.on('error', function(err) {
self._error(err)
.on('error', err => {
this.#handleError(err)
this.#clearUploads()
})
.on('aborted', function() {
self.emit('aborted')
self._error(new Error('Request aborted'))
.on('aborted', () => {
this.emit('aborted')
this.#clearUploads()
})
.on('data', function(buffer) {
self.write(buffer)
})
.on('end', function() {
if (self.error) {
.on('data', buffer => this.#write(buffer))
.on('end', () => {
if (this.#error) {
return
}
var err = self._parser.end()
let err = this.#parser.end()
if (err) {
self._error(err)
this.#handleError(err)
}
})
return this
}
IncomingForm.prototype.writeHeaders = function(headers) {
this.headers = headers
this._parseContentLength()
this._parseContentType()
}
IncomingForm.prototype.write = function(buffer) {
if (this.error) {
#write(buffer) {
if (this.#error) {
return
}
if (!this._parser) {
this._error(new Error('uninitialized parser'))
return
if (!this.#parser) {
return this.#handleError(new Error('uninitialized parser'))
}
this.bytesReceived += buffer.length
this.emit('progress', this.bytesReceived, this.bytesExpected)
var bytesParsed = this._parser.write(buffer)
if (bytesParsed !== buffer.length) {
this._error(
new Error(
'parser error, ' +
bytesParsed +
' of ' +
buffer.length +
' bytes parsed'
)
)
this.#parser.write(buffer)
}
return bytesParsed
}
IncomingForm.prototype.pause = function() {
// this does nothing, unless overwritten in IncomingForm.parse
return false
}
IncomingForm.prototype.resume = function() {
// this does nothing, unless overwritten in IncomingForm.parse
return false
}
IncomingForm.prototype.onPart = function(part) {
// this method can be overwritten by the user
this.handlePart(part)
}
IncomingForm.prototype.handlePart = function(part) {
var self = this
#handlePart(part) {
if (part.filename === undefined) {
var value = '',
decoder = new StringDecoder(this.encoding)
let value = Buffer.from('')
part.on('data', function(buffer) {
self._fieldsSize += buffer.length
if (self._fieldsSize > self.maxFieldsSize) {
self._error(
new Error(
'maxFieldsSize exceeded, received ' +
self._fieldsSize +
' bytes of field data'
)
)
return
}
value += decoder.write(buffer)
part
.on('data', buff => {
value = Buffer.concat([value, buff])
})
part.on('end', function() {
self.emit('field', part.name, value)
.on('end', () => {
this.emit('field', part.name, value.toString(this.encoding))
})
return
}
this._flushing++
var file = new File({
path: this._uploadPath(part.filename),
} else {
let file = new File({
path: randomPath(this.uploadDir),
name: part.filename,
type: part.mime,
hash: self.hash
type: part.mime
})
this.emit('fileBegin', part.name, file)
file.open()
this.openedFiles.push(file)
part.on('data', function(buffer) {
this.#openedFiles.push(file)
// 表单解析完的时候文件写入不一定完成了, 所以需要加入pending计数
this.#pending++
part
.on('data', buffer => {
if (buffer.length == 0) {
return
}
self.pause()
file.write(buffer, function() {
self.resume()
})
})
part.on('end', function() {
file.end(function() {
self._flushing--
self.emit('file', part.name, file)
self._maybeEnd()
})
file.write(buffer)
})
.on('end', () => {
if (part.ended) {
return
}
function dummyParser(self) {
return {
end: function() {
self.ended = true
self._maybeEnd()
return null
}
part.ended = true
file.end(() => {
this.emit('file', part.name, file)
this.#pending--
})
})
}
}
IncomingForm.prototype._parseContentType = function() {
#parseContentType() {
let contentType = this.headers['content-type']
let lower = contentType.toLowerCase()
if (this.bytesExpected === 0) {
this._parser = dummyParser(this)
return
return (this.#parser = new EmptyParser())
}
if (!this.headers['content-type']) {
this._error(new Error('bad content-type header, no content-type'))
return
if (lower.includes('octet-stream')) {
return this.#createStreamParser()
}
if (this.headers['content-type'].match(/octet-stream/i)) {
this._initOctetStream()
return
if (lower.includes('urlencoded')) {
return this.#createUrlencodedParser()
}
if (this.headers['content-type'].match(/urlencoded/i)) {
this._initUrlencoded()
return
}
if (this.headers['content-type'].match(/multipart/i)) {
var m = this.headers['content-type'].match(
/boundary=(?:"([^"]+)"|([^;]+))/i
)
if (m) {
this._initMultipart(m[1] || m[2])
if (lower.includes('multipart')) {
let matches = contentType.match(/boundary=(?:"([^"]+)"|([^;]+))/)
if (matches) {
this.#createMultipartParser(matches[1] || matches[2])
} else {
this._error(new Error('bad content-type header, no multipart boundary'))
this.#handleError(new TypeError('unknow multipart boundary'))
}
return
}
if (this.headers['content-type'].match(/json|appliation|plain|text/i)) {
this._initJSONencoded()
return
if (lower.match(/json|appliation|plain|text/)) {
return this.#createJsonParser()
}
this._error(
new Error(
'bad content-type header, unknown content-type: ' +
this.headers['content-type']
)
)
this.#handleError(new TypeError('unknown content-type: ' + contentType))
}
IncomingForm.prototype._error = function(err) {
if (this.error || this.ended) {
return
}
this.error = err
this.emit('error', err)
if (Array.isArray(this.openedFiles)) {
this.openedFiles.forEach(function(file) {
file._writeStream.destroy()
setTimeout(fs.unlink, 0, file.path, function(error) {})
})
}
}
IncomingForm.prototype._parseContentLength = function() {
#parseContentLength() {
this.bytesReceived = 0
if (this.headers['content-length']) {
this.bytesExpected = parseInt(this.headers['content-length'], 10)
this.bytesExpected = +this.headers['content-length']
} else if (this.headers['transfer-encoding'] === undefined) {
this.bytesExpected = 0
}
if (this.bytesExpected !== null) {
this.emit('progress', this.bytesReceived, this.bytesExpected)
}
}
IncomingForm.prototype._newParser = function() {
return new MultipartParser()
}
#createMultipartParser(boundary) {
let headerField, headerValue, part
IncomingForm.prototype._initMultipart = function(boundary) {
this.type = 'multipart'
this.#parser = new MultipartParser(boundary)
var parser = new MultipartParser(),
self = this,
headerField,
headerValue,
part
parser.initWithBoundary(boundary)
parser.onPartBegin = function() {
part = new Stream()
this.#parser.$partBegin = function () {
part = new EventEmitter()
part.readable = true
part.headers = {}
part.name = null
@ -356,25 +199,25 @@ IncomingForm.prototype._initMultipart = function(boundary) {
headerValue = ''
}
parser.onHeaderField = function(b, start, end) {
headerField += b.toString(self.encoding, start, end)
this.#parser.$headerField = b => {
headerField += b.toString(this.encoding)
}
parser.onHeaderValue = function(b, start, end) {
headerValue += b.toString(self.encoding, start, end)
this.#parser.$headerValue = b => {
headerValue += b.toString(this.encoding)
}
parser.onHeaderEnd = function() {
this.#parser.$headerEnd = () => {
headerField = headerField.toLowerCase()
part.headers[headerField] = headerValue
var m = headerValue.match(/\bname="([^"]+)"/i)
let matches = headerValue.match(/\bname="([^"]+)"/i)
if (headerField == 'content-disposition') {
if (m) {
part.name = m[1]
if (matches) {
part.name = matches[1]
}
part.filename = self._fileName(headerValue)
part.filename = parseFilename(headerValue)
} else if (headerField == 'content-type') {
part.mime = headerValue
} else if (headerField == 'content-transfer-encoding') {
@ -385,187 +228,119 @@ IncomingForm.prototype._initMultipart = function(boundary) {
headerValue = ''
}
parser.onHeadersEnd = function() {
this.#parser.$headersEnd = () => {
switch (part.transferEncoding) {
case 'binary':
case '7bit':
case '8bit':
parser.onPartData = function(b, start, end) {
part.emit('data', b.slice(start, end))
this.#parser.$partData = function (b) {
part.emit('data', b)
}
parser.onPartEnd = function() {
this.#parser.$partEnd = function () {
part.emit('end')
}
break
case 'base64':
parser.onPartData = function(b, start, end) {
part.transferBuffer += b.slice(start, end).toString('ascii')
this.#parser.$partData = function (b) {
part.transferBuffer += b.toString('ascii')
/*
four bytes (chars) in base64 converts to three bytes in binary
encoding. So we should always work with a number of bytes that
can be divided by 4, it will result in a number of buytes that
can be divided vy 3.
*/
var offset = parseInt(part.transferBuffer.length / 4, 10) * 4
// 确保offset的值能被4整除
let offset = ~~(part.transferBuffer.length / 4) * 4
part.emit(
'data',
Buffer.from(part.transferBuffer.substring(0, offset), 'base64')
Buffer.from(part.transferBuffer.slice(0, offset), 'base64')
)
part.transferBuffer = part.transferBuffer.substring(offset)
part.transferBuffer = part.transferBuffer.slice(offset)
}
parser.onPartEnd = function() {
this.#parser.$partEnd = function () {
part.emit('data', Buffer.from(part.transferBuffer, 'base64'))
part.emit('end')
}
break
default:
return self._error(new Error('unknown transfer-encoding'))
return this.#handleError(new Error('unknown transfer-encoding'))
}
self.onPart(part)
this.#handlePart(part)
}
parser.onEnd = function() {
self.ended = true
self._maybeEnd()
}
this._parser = parser
}
IncomingForm.prototype._fileName = function(headerValue) {
var m = headerValue.match(/\bfilename="(.*?)"($|; )/i)
if (!m) return
var filename = m[1].substr(m[1].lastIndexOf('\\') + 1)
filename = filename.replace(/%22/g, '"')
filename = filename.replace(/&#([\d]{4});/g, function(m, code) {
return String.fromCharCode(code)
})
return filename
}
IncomingForm.prototype._initUrlencoded = function() {
this.type = 'urlencoded'
var parser = new QuerystringParser(this.maxFields)
parser.onField = (key, val) => {
this.emit('field', key, val)
}
parser.onEnd = () => {
this.ended = true
this._maybeEnd()
}
this._parser = parser
}
IncomingForm.prototype._initOctetStream = function() {
this.type = 'octet-stream'
var filename = this.headers['x-file-name']
var mime = this.headers['content-type']
var file = new File({
path: this._uploadPath(filename),
name: filename,
type: mime
})
this.emit('fileBegin', filename, file)
file.open()
this._flushing++
var self = this
self._parser = new OctetParser()
//Keep track of writes that haven't finished so we don't emit the file before it's done being written
var outstandingWrites = 0
self._parser.on('data', function(buffer) {
self.pause()
outstandingWrites++
file.write(buffer, function() {
outstandingWrites--
self.resume()
if (self.ended) {
self._parser.emit('doneWritingFile')
}
})
})
self._parser.on('end', function() {
self._flushing--
self.ended = true
var done = function() {
file.end(function() {
self.emit('file', 'file', file)
self._maybeEnd()
})
}
if (outstandingWrites === 0) {
done()
this.#parser.$end = () => {
if (this.#pending > 0) {
setTimeout(_ => this.#parser.$end())
} else {
self._parser.once('doneWritingFile', done)
this.#handleEnd()
}
}
})
}
IncomingForm.prototype._initJSONencoded = function() {
this.type = 'json'
#createUrlencodedParser() {
this.#parser = new UrlencodedParser()
var parser = new JSONParser(),
self = this
this.#parser
.on('field', fields => this.emit('field', false, fields))
.on('end', () => this.#handleEnd())
}
#createStreamParser() {
let filename = this.headers['x-file-name']
let mime = this.headers['x-file-type']
this.#parser = new OctetParser(filename, mime, randomPath(this.uploadDir))
if (this.bytesExpected) {
parser.initWithLength(this.bytesExpected)
this.#parser.initLength(this.bytesExpected)
}
parser.onField = function(key, val) {
self.emit('field', key, val)
this.#parser
.on('file', file => {
this.emit('file', false, file)
})
.on('end', () => this.#handleEnd())
.on('error', err => this.#handleError(err))
}
parser.onEnd = function() {
self.ended = true
self._maybeEnd()
#createJsonParser() {
this.#parser = new JSONParser()
if (this.bytesExpected) {
this.#parser.initLength(this.bytesExpected)
}
this._parser = parser
this.#parser
.on('field', (key, val) => {
this.emit('field', key, val)
})
.on('end', () => this.#handleEnd())
.on('error', err => this.#handleError(err))
}
IncomingForm.prototype._uploadPath = function(filename) {
var name = 'upload_'
var buf = crypto.randomBytes(16)
for (var i = 0; i < buf.length; ++i) {
name += ('0' + buf[i].toString(16)).slice(-2)
#clearUploads() {
while (this.#openedFiles.length) {
let file = this.#openedFiles.pop()
file._writeStream.destroy()
setTimeout(_ => {
try {
fs.unlink(file.path)
} catch (e) {}
})
}
}
if (this.keepExtensions) {
var ext = path.extname(filename)
ext = ext.replace(/(\.[a-z0-9]+).*/i, '$1')
name += ext
}
return path.join(this.uploadDir, name)
}
IncomingForm.prototype._maybeEnd = function() {
if (!this.ended || this._flushing || this.error) {
#handleError(err) {
if (this.#error || this.#ended) {
return
}
this.error = true
this.emit('error', err)
}
#handleEnd() {
if (this.#ended || this.#error) {
return
}
this.#ended = true
this.emit('end')
}
}

View File

@ -1,33 +1,43 @@
export function JSONParser() {
this.data = Buffer.from('')
this.bytesWritten = 0
import { EventEmitter } from 'node:events'
export class JSONParser extends EventEmitter {
#buff = Buffer.from('')
#byteLen = 0
initLength(length) {
this.#byteLen = length
}
JSONParser.prototype.initWithLength = function(length) {
this.data = Buffer.alloc(length)
write(buffer) {
this.#buff = Buffer.concat([this.#buff, buffer])
}
JSONParser.prototype.write = function(buffer) {
if (this.data.length >= this.bytesWritten + buffer.length) {
buffer.copy(this.data, this.bytesWritten)
} else {
this.data = Buffer.concat([this.data, buffer])
}
this.bytesWritten += buffer.length
return buffer.length
}
JSONParser.prototype.end = function() {
var data = this.data.toString('utf8')
var fields
end() {
if (this.#buff.length === this.#byteLen) {
let data = this.#buff.toString()
let fields = data
try {
fields = JSON.parse(data)
} catch (e) {
fields = Function(`try{return ${data}}catch(e){}`)() || data
try {
// 非标准的json语法,尝试用 Function 解析
fields = Function(`try{return ${data}}catch(e){}`)()
} catch (err) {}
}
this.onField(false, fields)
this.data = null
this.emit('field', false, fields)
this.emit('end')
this.onEnd()
this.#buff = null
} else {
this.emit(
'error',
new Error(
`The uploaded data is incomplete. Expected ${
this.#byteLen
}, Received ${this.#buff.length} .`
)
)
}
}
}

View File

@ -1,5 +1,11 @@
var s = 0,
S = {
/**
* {}
* @author yutent<yutent.io@gmail.com>
* @date 2023/10/30 16:41:59
*/
let s = 0
const STATE_DICT = {
PARSER_UNINITIALIZED: s++,
START: s++,
START_BOUNDARY: s++,
@ -13,56 +19,82 @@ var s = 0,
PART_DATA: s++,
PART_END: s++,
END: s++
},
f = 1,
F = {
}
let f = 1
const FLAG_DICT = {
PART_BOUNDARY: f,
LAST_BOUNDARY: (f *= 2)
},
LF = 10,
CR = 13,
SPACE = 32,
HYPHEN = 45,
COLON = 58,
A = 97,
Z = 122,
lower = function(c) {
}
const LF = 10
const CR = 13
const SPACE = 32
const HYPHEN = 45
const COLON = 58
const LETTER_A = 97
const LETTER_Z = 122
function lower(c) {
return c | 0x20
}
export function MultipartParser() {
this.boundary = null
this.boundaryChars = null
this.lookbehind = null
this.state = S.PARSER_UNINITIALIZED
this.index = null
this.flags = 0
function stateToString(value) {
for (let key in STATE_DICT) {
let number = STATE_DICT[key]
if (number === value) {
return key
}
MultipartParser.stateToString = function(stateNumber) {
for (var state in S) {
var number = S[state]
if (number === stateNumber) return state
}
}
MultipartParser.prototype.initWithBoundary = function(str) {
export class MultipartParser {
boundary = null
boundaryChars = null
lookbehind = null
state = STATE_DICT.PARSER_UNINITIALIZED
index = null
flags = 0
constructor(str) {
this.boundary = Buffer.alloc(str.length + 4)
this.boundary.write('\r\n--', 0)
this.boundary.write(str, 4)
this.lookbehind = Buffer.alloc(this.boundary.length + 8)
this.state = S.START
this.state = STATE_DICT.START
this.boundaryChars = {}
for (var i = 0; i < this.boundary.length; i++) {
for (let i = 0; i < this.boundary.length; i++) {
this.boundaryChars[this.boundary[i]] = true
}
}
MultipartParser.prototype.write = function(buffer) {
var self = this,
i = 0,
#mark(k, v) {
this[k + 'Mark'] = v
}
#emit(name, buff, idx, cleanup) {
let mark = name + 'Mark'
if (this[mark] !== void 0) {
let start = this[mark]
let end = buff.length
if (cleanup) {
end = idx
delete this[mark]
} else {
this[mark] = 0
}
if (start === end) {
return
}
this['$' + name](buff.slice(start, end))
}
}
write(buffer) {
let idx = 0,
len = buffer.length,
prevIndex = this.index,
index = this.index,
@ -75,67 +107,39 @@ MultipartParser.prototype.write = function(buffer) {
boundaryEnd = boundaryLength - 1,
bufferLength = buffer.length,
c,
cl,
mark = function(name) {
self[name + 'Mark'] = i
},
clear = function(name) {
delete self[name + 'Mark']
},
callback = function(name, buffer, start, end) {
if (start !== undefined && start === end) {
return
}
cl
var callbackSymbol =
'on' + name.substr(0, 1).toUpperCase() + name.substr(1)
if (callbackSymbol in self) {
self[callbackSymbol](buffer, start, end)
}
},
dataCallback = function(name, clear) {
var markSymbol = name + 'Mark'
if (!(markSymbol in self)) {
return
}
for (idx = 0; idx < len; idx++) {
c = buffer[idx]
if (!clear) {
callback(name, buffer, self[markSymbol], buffer.length)
self[markSymbol] = 0
} else {
callback(name, buffer, self[markSymbol], i)
delete self[markSymbol]
}
}
for (i = 0; i < len; i++) {
c = buffer[i]
switch (state) {
case S.PARSER_UNINITIALIZED:
return i
case S.START:
case STATE_DICT.PARSER_UNINITIALIZED:
return
case STATE_DICT.START:
index = 0
state = S.START_BOUNDARY
case S.START_BOUNDARY:
state = STATE_DICT.START_BOUNDARY
case STATE_DICT.START_BOUNDARY:
if (index == boundary.length - 2) {
if (c == HYPHEN) {
flags |= F.LAST_BOUNDARY
flags |= FLAG_DICT.LAST_BOUNDARY
} else if (c != CR) {
return i
return
}
index++
break
} else if (index - 1 == boundary.length - 2) {
if (flags & F.LAST_BOUNDARY && c == HYPHEN) {
callback('end')
state = S.END
if (flags & FLAG_DICT.LAST_BOUNDARY && c == HYPHEN) {
this.$end()
state = STATE_DICT.END
flags = 0
} else if (!(flags & F.LAST_BOUNDARY) && c == LF) {
} else if (!(flags & FLAG_DICT.LAST_BOUNDARY) && c == LF) {
index = 0
callback('partBegin')
state = S.HEADER_FIELD_START
this.$partBegin()
state = STATE_DICT.HEADER_FIELD_START
} else {
return i
return
}
break
}
@ -147,14 +151,16 @@ MultipartParser.prototype.write = function(buffer) {
index++
}
break
case S.HEADER_FIELD_START:
state = S.HEADER_FIELD
mark('headerField')
case STATE_DICT.HEADER_FIELD_START:
state = STATE_DICT.HEADER_FIELD
this.#mark('headerField', idx)
index = 0
case S.HEADER_FIELD:
case STATE_DICT.HEADER_FIELD:
if (c == CR) {
clear('headerField')
state = S.HEADERS_ALMOST_DONE
delete this.headerFieldMark
state = STATE_DICT.HEADERS_ALMOST_DONE
break
}
@ -166,66 +172,72 @@ MultipartParser.prototype.write = function(buffer) {
if (c == COLON) {
if (index == 1) {
// empty header field
return i
return
}
dataCallback('headerField', true)
state = S.HEADER_VALUE_START
this.#emit('headerField', buffer, idx, true)
state = STATE_DICT.HEADER_VALUE_START
break
}
cl = lower(c)
if (cl < A || cl > Z) {
return i
if (cl < LETTER_A || cl > LETTER_Z) {
return
}
break
case S.HEADER_VALUE_START:
case STATE_DICT.HEADER_VALUE_START:
if (c == SPACE) {
break
}
mark('headerValue')
state = S.HEADER_VALUE
case S.HEADER_VALUE:
this.#mark('headerValue', idx)
state = STATE_DICT.HEADER_VALUE
case STATE_DICT.HEADER_VALUE:
if (c == CR) {
dataCallback('headerValue', true)
callback('headerEnd')
state = S.HEADER_VALUE_ALMOST_DONE
this.#emit('headerValue', buffer, idx, true)
this.$headerEnd()
state = STATE_DICT.HEADER_VALUE_ALMOST_DONE
}
break
case S.HEADER_VALUE_ALMOST_DONE:
case STATE_DICT.HEADER_VALUE_ALMOST_DONE:
if (c != LF) {
return i
return
}
state = S.HEADER_FIELD_START
state = STATE_DICT.HEADER_FIELD_START
break
case S.HEADERS_ALMOST_DONE:
case STATE_DICT.HEADERS_ALMOST_DONE:
if (c != LF) {
return i
return
}
callback('headersEnd')
state = S.PART_DATA_START
this.$headersEnd()
state = STATE_DICT.PART_DATA_START
break
case S.PART_DATA_START:
state = S.PART_DATA
mark('partData')
case S.PART_DATA:
case STATE_DICT.PART_DATA_START:
state = STATE_DICT.PART_DATA
this.#mark('partData', idx)
case STATE_DICT.PART_DATA:
prevIndex = index
if (index === 0) {
// boyer-moore derrived algorithm to safely skip non-boundary data
i += boundaryEnd
while (i < bufferLength && !(buffer[i] in boundaryChars)) {
i += boundaryLength
idx += boundaryEnd
while (idx < bufferLength && !(buffer[idx] in boundaryChars)) {
idx += boundaryLength
}
i -= boundaryEnd
c = buffer[i]
idx -= boundaryEnd
c = buffer[idx]
}
if (index < boundary.length) {
if (boundary[index] == c) {
if (index === 0) {
dataCallback('partData', true)
this.#emit('partData', buffer, idx, true)
}
index++
} else {
@ -235,29 +247,29 @@ MultipartParser.prototype.write = function(buffer) {
index++
if (c == CR) {
// CR = part boundary
flags |= F.PART_BOUNDARY
flags |= FLAG_DICT.PART_BOUNDARY
} else if (c == HYPHEN) {
// HYPHEN = end boundary
flags |= F.LAST_BOUNDARY
flags |= FLAG_DICT.LAST_BOUNDARY
} else {
index = 0
}
} else if (index - 1 == boundary.length) {
if (flags & F.PART_BOUNDARY) {
if (flags & FLAG_DICT.PART_BOUNDARY) {
index = 0
if (c == LF) {
// unset the PART_BOUNDARY flag
flags &= ~F.PART_BOUNDARY
callback('partEnd')
callback('partBegin')
state = S.HEADER_FIELD_START
flags &= ~FLAG_DICT.PART_BOUNDARY
this.$partEnd()
this.$partBegin()
state = STATE_DICT.HEADER_FIELD_START
break
}
} else if (flags & F.LAST_BOUNDARY) {
} else if (flags & FLAG_DICT.LAST_BOUNDARY) {
if (c == HYPHEN) {
callback('partEnd')
callback('end')
state = S.END
this.$partEnd()
this.$end()
state = STATE_DICT.END
flags = 0
} else {
index = 0
@ -274,54 +286,50 @@ MultipartParser.prototype.write = function(buffer) {
} else if (prevIndex > 0) {
// if our boundary turned out to be rubbish, the captured lookbehind
// belongs to partData
callback('partData', lookbehind, 0, prevIndex)
this.$partData(lookbehind.slice(0, prevIndex))
prevIndex = 0
mark('partData')
this.#mark('partData', idx)
// reconsider the current character even so it interrupted the sequence
// it could be the beginning of a new sequence
i--
idx--
}
break
case S.END:
case STATE_DICT.END:
break
default:
return i
return
}
}
dataCallback('headerField')
dataCallback('headerValue')
dataCallback('partData')
this.#emit('headerField', buffer, idx)
this.#emit('headerValue', buffer, idx)
this.#emit('partData', buffer, idx)
this.index = index
this.state = state
this.flags = flags
return len
}
MultipartParser.prototype.end = function() {
var callback = function(self, name) {
var callbackSymbol = 'on' + name.substr(0, 1).toUpperCase() + name.substr(1)
if (callbackSymbol in self) {
self[callbackSymbol]()
}
}
end() {
if (
(this.state == S.HEADER_FIELD_START && this.index === 0) ||
(this.state == S.PART_DATA && this.index == this.boundary.length)
(this.state === STATE_DICT.HEADER_FIELD_START && this.index === 0) ||
(this.state === STATE_DICT.PART_DATA &&
this.index == this.boundary.length)
) {
callback(this, 'partEnd')
callback(this, 'end')
} else if (this.state != S.END) {
this.$end()
} else if (this.state !== STATE_DICT.END) {
return new Error(
'MultipartParser.end(): stream ended unexpectedly: ' + this.explain()
)
}
}
MultipartParser.prototype.explain = function() {
return 'state = ' + MultipartParser.stateToString(this.state)
explain() {
return 'state = ' + stateToString(this.state)
}
}

View File

@ -1,17 +1,56 @@
import { EventEmitter } from 'events'
import util from 'util'
/**
* {}
* @author yutent<yutent.io@gmail.com>
* @date 2023/10/27 14:23:22
*/
export function OctetParser() {
EventEmitter.call(this)
import { EventEmitter } from 'node:events'
import File from './file.js'
export class OctetParser extends EventEmitter {
#file = null
#byteLen = 0
#wroteLen = 0
constructor(name, type, path) {
super()
this.#file = new File({ path, name, type })
this.#file.open()
}
util.inherits(OctetParser, EventEmitter)
OctetParser.prototype.write = function(buffer) {
this.emit('data', buffer)
return buffer.length
initLength(length) {
this.#byteLen = length
}
OctetParser.prototype.end = function() {
write(buffer) {
this.#file.write(buffer)
this.#wroteLen += buffer.length
}
end() {
this.#file.end(_ => {
if (this.#wroteLen === this.#byteLen) {
this.emit('file', this.#file)
this.emit('end')
} else {
this.emit(
'error',
new Error(
`The uploaded data is incomplete. Expected ${
this.#byteLen
}, Received ${this.#wroteLen} .`
)
)
}
})
}
}
export class EmptyParser extends EventEmitter {
write() {}
end() {
this.emit('end')
}
}

View File

@ -1,27 +0,0 @@
// This is a buffering parser, not quite as nice as the multipart one.
// If I find time I'll rewrite this to be fully streaming as well
import querystring from 'querystring'
export class QuerystringParser {
constructor(maxKeys) {
this.maxKeys = maxKeys
this.buffer = ''
}
write(buffer) {
this.buffer += buffer.toString('ascii')
return buffer.length
}
end() {
var fields = querystring.parse(this.buffer, '&', '=', {
maxKeys: this.maxKeys
})
for (var field in fields) {
this.onField(field, fields[field])
}
this.buffer = ''
this.onEnd()
}
}

26
lib/urlencoded_parser.js Normal file
View File

@ -0,0 +1,26 @@
/**
* {}
* @author yutent<yutent.io@gmail.com>
* @date 2023/10/27 12:14:05
*/
import { parse } from 'node:querystring'
import { EventEmitter } from 'node:events'
export class UrlencodedParser extends EventEmitter {
#buff = Buffer.from('')
write(buffer) {
this.#buff = Buffer.concat([this.#buff, buffer])
}
end() {
let data = this.#buff.toString()
let fields = parse(data)
this.#buff = null
this.emit('field', fields)
this.emit('end')
}
}

View File

@ -1,13 +1,14 @@
{
"name": "@gm5/request",
"version": "1.2.8",
"description": "对Http的request进一步封装, 提供常用的API",
"version": "2.0.0",
"description": "对Http的Request进一步封装, 提供常用的API",
"main": "index.js",
"author": "yutent",
"type": "module",
"keywords": [
"five",
"node-five",
"gmf",
"gm5",
"five.js",
"fivejs",
"request",