zfcuser add user role after registration

前端 未结 4 2072
没有蜡笔的小新
没有蜡笔的小新 2021-02-10 06:08

I\'m using Zend Framework 2 with ZfcUser, BjyAuthorize and Doctrine for the database. Registration etc. works very well so far. My problem is, that registered users have no role

4条回答
  •  长情又很酷
    2021-02-10 06:54

    Building on DangelZM's answer, and using another reference (see link at end of my post) about the Event Manager, I came up with this solution which organizes the potential ZfcUser event listeners out into a user listener object.

    Note: I created my own user module called NvUser, so depending on the name of your module you'll have to replace all references of NvUser to your user module name.

    Summary

    I created an NvUserListener object that can itself attach event listeners to the shared event manager, and house the event listener callbacks.

    Inside NvUser/Module.php:

    getApplication()->getEventManager();
            $em->attach(new NvUserListener());
        }               
    }
    

    Inside NvUser/src/NvUser/Listener/NvUserListener.php:

    getSharedManager();
            $this->listeners[] = $sharedManager->attach('ZfcUser\Service\User', 'register', array($this, 'onRegister'));
            $this->listeners[] = $sharedManager->attach('ZfcUser\Service\User', 'register.post', array($this, 'onRegisterPost'));
        }
    
        public function onRegister(Event $e)
        {
            $sm = $e->getTarget()->getServiceManager();
            $em = $sm->get('doctrine.entitymanager.orm_default');
            $user = $e->getParam('user');
            $config = $sm->get('config');
            $criteria = array('roleId' => $config['zfcuser']['new_user_default_role']);
            $defaultUserRole = $em->getRepository('NvUser\Entity\Role')->findOneBy($criteria);
    
            if ($defaultUserRole !== null)
            {
                $user->addRole($defaultUserRole);
            }
        }
    
        public function onRegisterPost(Event $e)
        {
            $user = $e->getParam('user');
            $form = $e->getParam('form');
    
            // Do something after user has registered
        }
    }
    

    Inside NvUser/config/module.config.php:

     array(
            'new_user_default_role' => 'user',
        ),
    );
    

    References:

    Understanding the Zend Framework 2 Event Manager

提交回复
热议问题