This project provides a simple method to integrate user registration and password recovery to your project.
The cool thing is that it is based on play’s security concept. So we don’t re-invent the wheel
but simply add some stuff.
- Signup / Registration of new users
- Sending of signup email for email verification
- Password recovery when user lost password
- Views fully customizable
- ReCaptcha protection against bots
- Login via different url (eg. login / registration via https, rest of app handled via http)
- Simple management of arbitrary roles
- AfterUserCreationHook => do something when a user has been created
- Built-in Support for Siena ORM (dependency casinosiena) and JPA (module casinojpa)
- Own user model with any ORM you like can be used
- Integrated bcrypt support for password hashing
- Add – play → casino-xx to your dependencies.yml
- For JPA support: Add – play → casinojpa-xx to your dependencies.yml
- For Siena support: Add – play → casinosiena-xx to your dependencies.yml
- Add the following properties to your application conf:
- [email protected]
- ugot.recaptcha.privateKey=YOUR RECAPTCHA KEY
- ugot.recaptcha.publicKey=YOUR RECAPTCHA KEY
- more on recaptcha keys":http://www.wikipedia.orghttp://www.playframework.org/modules/recaptcha-1.2/home
- For JPA support add: casino.userManager=models.casino.jpa.JpaUserManager
- For Siena support add casino.userManager=models.casino.SienaUserManager
Please check out also the test configuration at https://github.com/reyez/casino-play/blob/master/casino-test/conf/application.conf
I would recommend checking out the source of casino-test. If you run the application using play test you can examine everything.
Basic routes provided:
- /login
- /logout
- /registration
- /registration/lostpassword
Most likely you’ll find Casino!’s views nasty and not fitting your nicely crafted ui design. We know that :) And you can and should implement your own views and email message templates. Simply copy the directory
structure of app/views/casino and style them the way you want.
Transmitting passwords should ALWAYS go to https. Regular traffic to your website not necessarily. Casino!
supports sending your password to a secure url and redirecting to the regular http. Casino! signs both
urls with the play! cookie. So your app runs on both urls.
This is for instance needed on Google AppEngne. https is server off https://myapp.appspot.com, but regularily you
want the user being able to use http://www.myapp.com. Using Casino! you can simply specify
- casino.regularUrl=http://www.myapp.com
- casino.secureUrl=https://myapp.appspot.com
And you are done. Both urls are signed with by Casino! with Play!’s session cookie and the user logged in.
If you use the standard User models distributed by Casino! you are getting all you need: Password management for a user, role management and more.
But sometimes you need more. Generate a Settings Entity right after a user is executed for instance.
The way to accomplish this in Casino! is simple:
- Implement a class in your project that inherits casino.AfterUserCreationHook
- Implement method execute(String email) – this method will be called right after a user is created in your database.
- in your application.conf file specify a new parameter casino.afterUserCreationHook and specify the class you just created
- casino.afterUserCreationHook=myapplication.MySpecialAfterUserCreationHook
You can use your own way of handling user management. You’ll still profit of all basic functions Casino! provides: password hashing, all views responsible for signup and password recovery.
The only thing you have to do is implementing your own CasinoUserManager.
- Implement a class in your project that inherits casino.CasinoUserManager
- Implement all methods.
- in your application.conf file specify a new parameter casino.userManager and specify the class you just created
And that’s it.
- General lifecycle: https://github.com/reyez/casino-play/blob/master/casino-test/test/RegistrationLifecycle.test.html
- General configuration: https://github.com/reyez/casino-play/blob/master/casino-test/conf
- Uses siena for persistence of the user object
- Uses bcrypt to hash password (should be safe in the next years)
- Uses re-captcha to block bots from using your stuff
- complete selenium usecase is at casino-test/test/!RegistrationLifecycle.html
- Time based invalidation for confirmation codes in User model
- OAuth integration => facebook login / google login (module securesocial?)
- Deadbolt integration?
- clone sources from github
- generate a link to casino from your play/modules directory:
- ln -s mycheckoutdirectory/casino-play/casino casino-1.x (x is the version you want to reference)
- generate a link to casinojpa from your play/modules directory:
- ln -s mycheckoutdirectory/casino-play/casinojpa casino-1.x (x is the version you want to reference)
- generate a link to casinosiena from your play/modules directory:
- ln -s mycheckoutdirectory/casino-play/casinosiena casino-1.x (x is the version you want to reference)
- run “play deps —sync” and “play ec” in both casino and casino-test
- run “play auto-test” in casino-test – the result should be “All tests passed”
~ 7 tests to run:
~
~ models/casino/UserTest… PASSED 0s
~ ApplicationTest… PASSED 1s
~ controllers/casino/AfterUserCreationHookTest… PASSED 0s
~ controllers/casino/BaseFunctionalTest… PASSED 0s
~ controllers/casino/Helper… PASSED 0s
~ controllers/casino/SecurityCasinoTest… PASSED 1s
~ RegistrationLifecycle… PASSED 11s
~
~ All tests passed
- import projects into eclipse if you wish
… Happy coding :)
- Test project is under casino-test
- Run tests via “play test” or “play auto-test”
- play build-module
- Use /dist/casino-0.X.zip for distribution :)