Laravel 使用通配符设置 Cookie 不加密 (利用正则或者 Str 函数)

通常我们在中间件里这样配置
app\Http\Middleware\EncryptCookies.php

/**
 * The names of the cookies that should not be encrypted.
 *
 * @var array
 */
protected $except = [
    'cookie_name',
];

如果我们的 cookie 名称是可变动态的该怎么办呢?
可以使用通配符这样处理:

/**
 * The names of the cookies that should not be encrypted.
 *
 * @var array
 */
protected $except = [
    'cookie_name',
    'cookie_name_*',
];

public function isDisabled($name)
{
    if (in_array($name, $this->except))
    {
        return true;
    }
    foreach ($this->except as $pattern)
    {
        if (Str::is($pattern, $name))
        {
            return true;
        }
    }
    return false;
}

或者使用正则:

/**
 * The names of the cookies that should not be encrypted.
 *
 * @var array
 */
protected $except = [
    'cookie_name',
    '/^cookie_name_\d+$/',
];

public function isDisabled($name)
{
    if (in_array($name, $this->except))
    {
        return true;
    }
    foreach ($this->except as $pattern)
    {
        if (preg_match($pattern, $name))
        {
            return true;
        }
    }
    return false;
}

这个功能在strongshop 开源商城也有所应用
Gitee 地址:https://gitee.com/openstrong/strongshop

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值