【Express】创建防盗链中间件(HotLinking)

比如我们可以在 http://localhost:3000/assets/index.html 网站中获取某个图片,但是在 http://127.0.0.1:3000/assets/index.html 不可以获取,就是因为该网站设置了防盗链,而localhost 在白名单内。

const whiteList = ['localhost']
const HotLinking = (req,res,next)=> {
    const referer = req.get('referer')
    if (referer) {
        const {hostname} = new URL(referer)
        if (!whiteList.includes(hostname)) {
            res.status(403).send('禁止访问')
            return
        }
    }
    next();
}
module.exports = HotLinking
const HotLinkingMiddleware = require('./middleware/hotlinking')
app.use(HotLinkingMiddleware)
app.use('/assets', express.static('static'))

【Express】创建防盗链中间件(HotLinking)_第1张图片

http://127.0.0.1:3000/assets/index.html 不可以获取:

【Express】创建防盗链中间件(HotLinking)_第2张图片

你可能感兴趣的:(Express,express)