i m new to Grails and using some Shiro security. I have made a little site with login page and if login successful it redirects me to another loggedin page.

now i want to implement Shiro Security. I have run that plugin and quick start app of Shiro on new Grails Project.

what i want to achieve is that how can i implement my security on my own pages using the Quick Start Files and code. Please guide. a little. which files should i use from that quick start and what changing should i made. ?

waiting for some positive response :)

link|improve this question

76% accept rate
feedback

1 Answer

up vote 6 down vote accepted

let's first start with a fresh app:

grails create-app ShiroDemo

now install shiro:

grails install-plugin shiro

we need the auth controller and the wildcard-realm:

grails create-auth-controller
grails create-wildcard-realm

now let's create a dummy user with the needed role and permissions in bootstrap.groovy:

import org.apache.shiro.crypto.hash.Sha256Hash
class BootStrap {
    def init = { servletContext ->
        def roleUser = new ShiroRole(name:'USER')
        roleUser.addToPermissions('auth:*')
        roleUser.addToPermissions('controller:action')
        roleUser.save(flush:true, failOnError: true)
        def testUser = new ShiroUser(username:'kermit',passwordHash:new Sha256Hash("password").toHex())
        testUser.addToRoles(roleUser)
        testUser.save(flush:true, failOnError: true)
    }
    def destroy = {
    }
}

Take a look at the role.User.addToPermissions lines. Here you grant permissions to your controllers and actions. If the role is missing a permission, a user will be redirected to the access denied page. You'll find a good description of how to specify permissions on the shiro plugin page: http://www.grails.org/plugin/shiro You'll have to add more permissions for the rest of your application functionality. You can add those permission also directly to the user - sometimes useful for testing or if you don't want to setup a new role for something special.

btw: make sure to use the sha256hash and not the sha1hash which will not work with the current shiro version.

last thing we have to do is create the /conf/SecurityFilters.groovy class:

class SecurityFilters {
    def filters = {
        all(uri: "/**") {
            before = {
                // Ignore direct views (e.g. the default main index page).
                if (!controllerName) return true

                // Access control by convention. 
                accessControl() 
            } 
        } 
    } 
}

This will install access control for all controllers but not direct views (our index page).

Now give it a try and run your project:

grails run-app

hope that helps!

link|improve this answer
Dear Ralf. Ofcourse for that we Need to add User and Role Domain Classes.. can you please edit in the Content for User and Role domain . please. :) and also that should we create the views using command grails generate-views ? – sHaH.. Apr 29 '11 at 7:33
the example is complete and working - the ShiroRole and ShiroUser are generated by the statements above! – Ralf Apr 29 '11 at 7:39
Dear Ralf You Gudings are Perfect Thnks.. well now i want that i already have User and Role Class and an index page. (Views). i have a controller named UserController and have actions login and logout. Now how can i applyy that security into that code? – sHaH.. Apr 29 '11 at 7:39
If you need to administrate your users, you can create views and controllers for the ShiroUser and ShiroRole through the standard grails mechanisms (generate-all). – Ralf Apr 29 '11 at 7:40
If you want to user your own AuthController, just take a look at the auto generated one, copy & paste the signIn and signOut code. Unfortunately, the location for the login page seems to be hardcoded. So whenever the system needs to redirect to the login page, it will redirect to /auth/login - you may use the UrlMappings to redirect this to your own controller – Ralf Apr 29 '11 at 7:45
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.