-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event system ZfcUser 3 seriously broken #678
Comments
Thank you, roelvanduijnhoven, your PR fixed one of our problems when we migrated an app to ZF3. We hooked to the 'authenticate' event of the ZfcUser AdapterChain, but our callback was never called. Now this works. We still have another problem related. We attached to the 'init' event of the ZfcUser\Form\LoginFilter, in order to reset the validator chain (we don't need password length >= 6). This was done in our app's onBootstrap($e) function with this code:
, but unfortunately it never got called. Now, that you removed |
@gkzsolt I used a delegator to do this. class AdaptLoginFormDelegator implements DelegatorFactoryInterface
{
public function __invoke(ContainerInterface $container, $requestedName, callable $callback, array $options = null)
{
$form = $callback();
$form->getInputFilter()->remove('credential');
return $form;
}
} @Danielss89 Any thought on this PR? Would be great to merge it! |
@roelvanduijnhoven, excellent idea, thank you ! I agree that this PR would be great to merge in. Any thoughts from the main developers? |
Sadly this project seems abandoned.... Any news @Danielss89 ? |
Sorry, i haven't had the time to look into this yet. |
@Danielss89 We have been running it on our production environment for some time; but I created this PR: so not the best reference material ;). |
It'd be awesome to get this working. I'm starting to feel left behind in ZF2, but I can't upgrade without this package. I wish I knew ZF3 event manager well enough to be able to look this over. |
@Danielss89 We are also using it in production, and if it's not merged, risk to not keep with the master. Is there a reason to not merge it? |
Solid working ZfcUser is the main reason we are holding out upgrading to ZF3 from ZF2. |
What about merging this PR to a @kingharrison Did you test this patch already? If not: please do so we are sure we are not missing anything. Also tests need to be revised on my PR. Anybody that wants to help with that? |
👍 |
It looks to work for me.
On May 22, 2018 at 8:45:28 AM, Roel van Duijnhoven ([email protected]) wrote:
What about merging this PR to a zf3 branch for the time being? And mark the
default branch EOL. When we agree that zf3 branch is stable we can bump a
new 4.0 release that is ZF3-only.
@kingharrison <https://github.com/kingharrison> Did you test this patch
already? If not: please do so we are sure we are not missing anything.
Also tests need to be revised on my PR. Anybody that wants to help with
that?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#678 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AF1OcJ2u1u0HX9SI8hsHpBg9QcO3UUU_ks5t1AhmgaJpZM4Qre3o>
.
|
Maybe this can be merged in now? |
The way ZfcUser 3 works with events is seriously broken:
SharedEventManager
. All services should implementEventManagerAwareInterface
in order forZend\Mvc
to inject it propertly (plus: there is a bug in theEventProvider
that comes bundled: Fix broken event system #677).RegisterFilter
. The only way to use it would normally be the shared manager. However that is in ZF3 only injected after construction using an initializer.AdapterChainServiceFactory
. If we were to properly mark theAdapterClass
as aEventManagerAwareInterface
capable service, the event manager would be overwritten directly after construction (again via the bundled Initializer of ZF3 in Mvc). And thus the adapters will never receive theauthenticate
event.AdapterChain
is super weird. And is different from how it worked under ZF2. The event is passed as the$target
parameter! What we need to do is use thetriggerEvent
method of theEventManager
.I have a PR that fixes all of this. See #677
The text was updated successfully, but these errors were encountered: