/** * * Copyright * 2009-2015 Jayway Products AB * 2016-2017 Föreningen Sambruk * * Licensed under AGPL, Version 3.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.gnu.org/licenses/agpl.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package se.streamsource.streamflow.web.domain; import java.lang.annotation.Annotation; import java.lang.reflect.Method; import java.util.Collections; import org.qi4j.api.Qi4j; import org.qi4j.api.common.AppliesTo; import org.qi4j.api.common.AppliesToFilter; import org.qi4j.api.composite.Composite; import org.qi4j.api.concern.GenericConcern; import org.qi4j.api.constraint.Constraint; import org.qi4j.api.constraint.ConstraintDeclaration; import org.qi4j.api.constraint.ConstraintViolation; import org.qi4j.api.constraint.ConstraintViolationException; import org.qi4j.api.constraint.Constraints; import org.qi4j.api.injection.scope.Invocation; import org.qi4j.api.injection.scope.Structure; import org.qi4j.api.injection.scope.This; /** * Check method constraints. A method constraint is an */ @AppliesTo(MethodConstraintsConcern.Filter.class) public class MethodConstraintsConcern extends GenericConcern { Constraint<Annotation, Object> constraint; private Annotation annotation; private @This Composite composite; private @Structure Qi4j api; public MethodConstraintsConcern( @Invocation Method method ) throws IllegalAccessException, InstantiationException { for (Annotation annotation : method.getAnnotations()) { if (annotation.annotationType().getAnnotation( ConstraintDeclaration.class ) != null) { this.annotation = annotation; Constraints constraints = annotation.annotationType().getAnnotation( Constraints.class ); for (Class<? extends Constraint<?, ?>> aClass : constraints.value()) { constraint = (Constraint<Annotation, Object>) aClass.newInstance(); } } } } public Object invoke( Object proxy, Method method, Object[] args ) throws Throwable { if (!constraint.isValid( annotation, api.dereference( composite ) )) throw new ConstraintViolationException(api.dereference( composite ), method, Collections.singleton( new ConstraintViolation(annotation.annotationType().getSimpleName(), annotation, api.dereference( composite )) )); return next.invoke( proxy, method, args ); } public static class Filter implements AppliesToFilter { public boolean appliesTo( Method method, Class<?> mixin, Class<?> compositeType, Class<?> fragmentClass ) { for (Annotation annotation : method.getAnnotations()) { if (annotation.annotationType().getAnnotation( ConstraintDeclaration.class ) != null) { return true; } } return false; } } }