第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在驗(yàn)證用戶與 Symfony 4 和 FOSUserBundle 連接后重定向用戶

在驗(yàn)證用戶與 Symfony 4 和 FOSUserBundle 連接后重定向用戶

PHP
躍然一笑 2022-05-27 10:18:37
你好世界 !我是一名 laravel 開(kāi)發(fā)人員,但有一段時(shí)間我一直在從事 symfony 項(xiàng)目。在我的工作中,我剛剛遇到了一個(gè)主要問(wèn)題,即在檢查用戶是否登錄后運(yùn)行一段代碼。在 laravel 上,我可以使用提供者、中間件或基本控制器來(lái)做到這一點(diǎn)。但是在 Symfony 4 上我被阻止了。 每次檢查是否可以運(yùn)行此方法時(shí),我都會(huì)使用我想要的方法:$this->denyAccessUnlessGranted('IS_AUTHENTICATED_FULLY');if ($this->getUser()->getMetaValue('level') == "ADMIN") {     $ip = file_get_contents("http://ipecho.net/plain");     $record = $this->get('geoip2.reader')->city($ ip);     $isoCode = $record->country->isoCode;     if ($isoCode! = "USA") {         return $this->render('backOffice/vpn_error.html.twig');     }}因此,每次連接管理員時(shí),我們都會(huì)檢查它是否從美國(guó)連接,否則會(huì)被要求使用 VPN 來(lái)獲得 IP 地址。感謝您的關(guān)注。
查看完整描述

1 回答

?
jeck貓

TA貢獻(xiàn)1909條經(jīng)驗(yàn) 獲得超7個(gè)贊

我找到了解決方案,但我知道這不是最好的,但目前它讓我滿意。我已經(jīng)編輯了denyAccessUnlessGranted() 方法,并使用回顯強(qiáng)制顯示錯(cuò)誤 我的解決方案是這樣的:


    /**

     * Throws an exception unless the attributes are granted against the current authentication token and optionally

     * supplied subject.

     *

     * @throws AccessDeniedException

     *

     * @final

     */

    protected function denyAccessUnlessGranted($attributes, $subject = null, string $message = 'Access Denied.')

    {

        if (!$this->isGranted($attributes, $subject)) {

            $exception = $this->createAccessDeniedException($message);

            $exception->setAttributes($attributes);

            $exception->setSubject($subject);


            throw $exception;

        } 

        if ($this->getUser()->getMetaValue('level') == "ADMIN") {

            $ip = file_get_contents("http://ipecho.net/plain");

            $record = $this->get('geoip2.reader')->city($ ip);

            $isoCode = $record->country->isoCode;

            if ($isoCode!= "USA") {

                echo $this->renderView('backOffice/vpn_error.html.twig');

                die();

            } 

        }

    }


查看完整回答
反對(duì) 回復(fù) 2022-05-27
  • 1 回答
  • 0 關(guān)注
  • 101 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)