-
Notifications
You must be signed in to change notification settings - Fork 81
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
Captcha class harder to extend than necessary #479
Comments
Captcha is due for a major overhaul -> #259. That will remove this particular issue completely. There are a lot of static issues like this though 😞 The best solution is to get rid of the static singleton stuff. If there is a compleling reason to keep the singleton, the best approach would be to use PHP's late static binding notation, rather than trying to simulate it:
|
But that does not force me to change the modules for XOOPS 2.5.8 forcibly at this time right? There is always time? |
Right. Nothing about captcha is changing in the 2.5 series. But in 2.6, captcha handling will change to use our service model. Instead of talking to the captcha classes, modules will talk to the captcha service. |
Understand... I posted an issue since it still exists in the 2.6 code. I wouldn't recommend changing this in the 2.5.x codebase. Any modules that are currently released presumably work so there's no reason to mess with those and any new modules can be made to work - so it's not a required change. The intent of this issue was to hopefully highlight it for change "in the future" (2.6 codebase). Since there's still more refactoring to do in the captcha classes it can be taken care of then. Richard, to answer your question - I don't know of a compelling reason for this to be kept as a singleton. |
I'm happy to see the issue. Your insights are always appreciated! Issues are like questions - the only bad one is the one that wasn't presented. |
But for individual modules that use currently singleton internally, what would be the best replacement, so we could standardize around it for all modules? |
I found this:
|
Sorry. Didn't mean to stir things up so much. Let me back up just a bit. This was more strategic planning comment than a call to action right now. Here is a overview of the singleton pattern. It tagets java, but the issues are common to all OOP languages including PHP: When you have to have a singleton, a good PHP implementation of the pattern is decribed here: Singletons are easy, and they are tempting, especially when the system is filled with them, I've used them recently. But that ease comes with a cost. Singletons reduce the reuseability of code, both the singleton class and any consumers. They form tight explicit dependencies. We need to steer away from them, but the pattern is quite entrenched in XOOPS. If we don't rethink this, it will limit us. When you realize you are talking about extending a singleton, you face the question "Why do I need many, when it is designed to be one?" Once you start thinking about that, there are more questions:
Ask these questions in future development and refactoring. This isn't a quick fix, it is a paradigm shift. |
Extending the XoopsCaptcha class requires the getInstance() method be overloaded since the method is static and uses CLASS instead of using get_called_class(). If a new class extends XoopsCaptcha and then attempts to get a new instance, an instance of XoopsCaptcha class is created instead of creating a new instance of the calling class.
need to replace $class = CLASS; with $class = get_called_class();
The same issue exists in Xoops 2.5.x series. Obviously this can be circumvented in the new calling class by overloading the getInstance() method, but it shouldn't have to...
The text was updated successfully, but these errors were encountered: