39 lines
902 B
JavaScript
39 lines
902 B
JavaScript
/**
|
|
* 跨域中间件
|
|
* @author yutent<yutent.io@gmail.com>
|
|
* @date 2020/09/18 14:55:49
|
|
*/
|
|
|
|
import url from 'url'
|
|
|
|
export default function(req, res, next) {
|
|
var CORS = this.get('cors')
|
|
|
|
if (CORS.enabled) {
|
|
var origin = req.header('origin') || req.header('referer') || ''
|
|
var headers = req.header('access-control-request-headers')
|
|
var { hostname, host, protocol } = url.parse(origin)
|
|
|
|
if (CORS.origin.length && hostname) {
|
|
if (!CORS.origin.includes(hostname)) {
|
|
return res.end('')
|
|
}
|
|
}
|
|
res.set('Access-Control-Allow-Credentials', 'true')
|
|
res.set('Access-Control-Allow-Origin', `${protocol}//${host}`)
|
|
|
|
if (headers) {
|
|
res.set('Access-Control-Allow-Headers', headers)
|
|
}
|
|
|
|
if (CORS.maxAge) {
|
|
res.set('Access-Control-Max-Age', CORS.maxAge)
|
|
}
|
|
|
|
if (req.method === 'OPTIONS') {
|
|
return res.end('')
|
|
}
|
|
}
|
|
next()
|
|
}
|
JavaScript
100%