Shiro is a flexible authentication and authorization framework for Java that has a corresponding Grails plugin for simplifying access control in Grails applications. This plugin extends the base Shiro plugin with support for authentication using the Shiro CAS integration.
This assumes that you've already configured the Shiro plugin.
To install the plugin, add declaration to your BuildConfig.groovy plugins section in the form compile ":shiro-cas:VERSION".
Next, you need to re-configure your ShiroSecurityFilters. The easiest way to accomplish this is to make your class extend org.apache.shiro.cas.grails.ShiroCasSecurityFilters. If that's not an option, you can copy the onNotAuthenticated handler into your class.
Finally, you need a CAS-enabled Shiro realm. Run grails create-cas-realm to create such a realm based on a template. If desired, you can customize the name by specifying --prefix=PACKAGE. or --prefix=PACKAGE.CLASSPREFIX. Modify the generated class as needed for your application.
security.shiro.cas.serverUrl(REQUIRED): The URL of the CAS instance to authenticate against. This should be an HTTPS URL.security.shiro.cas.serviceUrl(REQUIRED): The URL to pass to CAS as theserviceparameter (see CAS Protocol for more details on how this is used). This should be the URL at which end-users can reach the/shiro-caspath within the current application (which is automatically registered by this plugin).security.shiro.cas.loginUrl(OPTIONAL): The URL that users are redirected to when login is required. By default, this directs users to/loginwithin theserverUrl, passing along the service as a query parameter.security.shiro.cas.logoutUrl(OPTIONAL): The URL that users are redirected to when logging out. By default, this directs users to/logoutwithin theserverUrl, passing along the service as a query parameter.config.security.shiro.cas.failureUrl(OPTIONAL): The URL that users are redirected to if ticket validation fails.
Assuming that:
- your CAS instance is deployed at context path
/casonsso.example.comon the default HTTPS port - your Grails application is accessed via a load-balancer at https://apps.example.com/my-app
A valid configuration would be:
security.shiro.cas.serverUrl='https://sso.example.com/cas'
security.shiro.cas.serviceUrl='https://apps.example.com/my-app/shiro-cas'