Disasterpiece
07-06-2011, 05:41 AM
Hello,
I am trying to develop an alternative login/authentication method.
For this, it's relevant that the user should not be forced to enter an email adress or a password.
Regular users should still be required to register with their email adress, which still gets validated if the admin chooses so.
The Problem I'm encountering is: When I create a new user via datamanager, all values get validated, which is a good thing.
However, if the email remains empty and I try to save the new user object, it throws an error that the email isn't valid.
And the error message itself is in phrase context, so I can't let's say filter out the error "invalid_email", but I had to filter out the error message "<li>The email you entered is ..." depending on the current active language. This isn't a good way to do it I guess and still, the user object wouldn't be saved.
Also, many forum services build up on the email functionality, so it's crucial to control the case, if an user didn't enter an email adress and not breaking modifications which rely on that.
Currently, to set up a working prototype, I set the email from these specific users to the webmaster email adress, that way I can ensure them being valid and not bounce back any emails.
I'm still not sure what's the best way to handle it, since vB doesn't seem to offer any routines to make email adresses totally optional.
To elaborate a bit on what I'm trying to do:
I want to provide an open-ID sign in via Steam API which allows to quick-register and login with information/authentication provided by the steam account. Just like the Facebook Connect.
Usergroup A is a regular usergroup like it exists on any standard vbulletin installation.
Usergroup B is memebr of the same vb Usergroup (id if you will), it only differs in the fact, that a user from Usergroup B uses a different registration method (Steam Open-ID) than a User from Usergroup A, just like some users registering via registration form and some via facebook connect.
Usergroup A should be forced to enter a valid email adress and a password, where Usergroup B doesn't need to enter a password or an email adress, because they use another method to authenticate themselves with the forum.
For Usergroup B, it's optional to provide a password and/or email. If they choose so, they are able to login with the forum loginform too, and/or be able to use forum services which require email adresses like forum subscriptions, email notifications on new PMs and such.
So basically I want some user preferences to be active only for Usergroup A, others only for Usergroup B without unnecessarily complicating the forum flow.
Any ideas on this?
I am trying to develop an alternative login/authentication method.
For this, it's relevant that the user should not be forced to enter an email adress or a password.
Regular users should still be required to register with their email adress, which still gets validated if the admin chooses so.
The Problem I'm encountering is: When I create a new user via datamanager, all values get validated, which is a good thing.
However, if the email remains empty and I try to save the new user object, it throws an error that the email isn't valid.
And the error message itself is in phrase context, so I can't let's say filter out the error "invalid_email", but I had to filter out the error message "<li>The email you entered is ..." depending on the current active language. This isn't a good way to do it I guess and still, the user object wouldn't be saved.
Also, many forum services build up on the email functionality, so it's crucial to control the case, if an user didn't enter an email adress and not breaking modifications which rely on that.
Currently, to set up a working prototype, I set the email from these specific users to the webmaster email adress, that way I can ensure them being valid and not bounce back any emails.
I'm still not sure what's the best way to handle it, since vB doesn't seem to offer any routines to make email adresses totally optional.
To elaborate a bit on what I'm trying to do:
I want to provide an open-ID sign in via Steam API which allows to quick-register and login with information/authentication provided by the steam account. Just like the Facebook Connect.
Usergroup A is a regular usergroup like it exists on any standard vbulletin installation.
Usergroup B is memebr of the same vb Usergroup (id if you will), it only differs in the fact, that a user from Usergroup B uses a different registration method (Steam Open-ID) than a User from Usergroup A, just like some users registering via registration form and some via facebook connect.
Usergroup A should be forced to enter a valid email adress and a password, where Usergroup B doesn't need to enter a password or an email adress, because they use another method to authenticate themselves with the forum.
For Usergroup B, it's optional to provide a password and/or email. If they choose so, they are able to login with the forum loginform too, and/or be able to use forum services which require email adresses like forum subscriptions, email notifications on new PMs and such.
So basically I want some user preferences to be active only for Usergroup A, others only for Usergroup B without unnecessarily complicating the forum flow.
Any ideas on this?