ILAY - authorization for Vaadin - Vaadin Add-on Directory
ILAY - Authorization for Vaadin[![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/ilay---authorization-for-vaadin)
[![Stars on Vaadin Directory](https://img.shields.io/vaadin-directory/star/ilay---authorization-for-vaadin.svg)](https://vaadin.com/directory/component/ilay---authorization-for-vaadin)
# abstract
Ilay is a simple-to-use authentication-framework for Vaadin. It does not incorporate frameworks like Spring-Security or Apache Shiro, but
brings it's own api which is custom-tailored for the use with Vaadin. Ilay deals with navigation ( 'is the user allowed to see this view' ) and visibility ( 'should this component be visible to the user' ).
# installation
add this maven-dependency to your pom.xml
```xml
org.ilay
ilay
3.0.0
```
# usage
Please note that thanks to the new API's in Vaadin 10+, no bootstrapping-code is necessary.
Let's assume the case that a certain route-target is only to be accessed by users that have
the role 'administrator'. Now the first step would be to define an AccessEvaluator, that
determines whether or not the current user has that role or not.
```java
class IsAdminAccessEvaluator implements AccessEvaluator {
/*
* instances of this class will be created by VaadinService,
* which will delegate construction to the configured
* DI-provider (CDI, Spring, Guice), if one is configured.
* This is why @Autowired will work here, assuming
* the Spring-Addon for Vaadin is being used.
*/
@Autowired
Supplier userRoleProvider;
@Override
public Access evaluate(Location location, Class> navigationTarget, Annotation annotation) {
return UserRole.ADMIN.equals(userRoleProvider.get())
? Access.granted()
: Access.restricted(UserNotInRoleException.class);
}
}
```
Note that an Access-instance is returned, not a boolean. Access has one granted()-method and
a lot of restricted()-methods, which reflect the different reroute-methods in BeforeEnterEvent,
to which they eventually delegate.
Now we need to connect the IsAdminAccessEvaluator to our view, the glue for this is an annotation
with a nice speaking name and an @NavigationAnnotation on it, that specifies the AccessEvaluator:
```java
@NavigationAnnotation(IsAdminAccessEvaluator.class)
@Retention(RetentionPolicy.RUNTIME)
public interface OnlyForAdmins {
}
```
OnlyForAdmins can then be used to prevent users that are not admins from entering the protected views
```java
@OnlyForAdmins
@Route("admin-view")
public class AdminView extends Div {
}
```
And that's it. Now users without Admin-permission will be redirected to an error-view.
Some readers may have noticed that the AccessEvaluator has a generic type-parameter for the
annotation it is attached to. So if we like to have additional information in there, like:
```java
@NavigationAnnotation(IsAdminAccessEvaluator.class)
@Retention(RetentionPolicy.RUNTIME)
public interface OnlyForAdmins {
String someAdditionalInfo();
}
```
We could change IsAdminAccessEvaluator to
```java
class IsAdminAccessEvaluator implements AccessEvaluator {
Supplier userRoleProvider;
@Override
public Access evaluate(Location location, Class> navigationTarget, OnlyForAdmins annotation) {
Log.info(annotation.someAdditionalInformation());
return UserRole.ADMIN.equals(userRoleProvider.get())
? Access.granted()
: Access.restricted(UserNotInRoleException.class);
}
}
```
# notes
We hope you enjoy working with ilay, if you have any suggestion, feel free to open
a github-issue or PR.
Issue TrackerOnline Demo
Example Source Code
Source Code
ILAY - authorization for Vaadin version 1.0.0-alpha-1
null
ILAY - authorization for Vaadin version 1.0.0
null
ILAY - authorization for Vaadin version 1.0.0-vaadin-7
null
ILAY - authorization for Vaadin version 1.0.0-vaadin-7-alpha-1
compiled for vaadin 7, restrictData not supported
ILAY - authorization for Vaadin version 3.0-Final
stable LTS version of Ilay, see Readme for details