/** * * 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.context.administration; import java.util.Collections; import java.util.Comparator; import java.util.List; import org.qi4j.api.constraint.Name; import org.qi4j.api.injection.scope.Structure; import org.qi4j.api.mixin.Mixins; import org.qi4j.api.specification.Specification; import org.qi4j.api.structure.Module; import org.qi4j.api.util.Iterables; import se.streamsource.dci.api.Context; import se.streamsource.dci.api.CreateContext; import se.streamsource.dci.api.IndexContext; import se.streamsource.dci.api.RoleMap; import se.streamsource.streamflow.web.domain.Describable; import se.streamsource.streamflow.web.domain.structure.organization.Priorities; import se.streamsource.streamflow.web.domain.structure.organization.Priority; import se.streamsource.streamflow.web.domain.structure.organization.PrioritySettings; /** * Case priorities context */ @Mixins( PrioritiesContext.Mixin.class ) public interface PrioritiesContext extends IndexContext<Iterable<Priority>>, CreateContext<String,Priority>, Context { public Priority create( @Name( "name" ) String name ); public void up( @Name( "id" ) String id ); public void down( @Name( "id" ) String id ); abstract class Mixin implements PrioritiesContext { @Structure Module module; public Iterable<Priority> index() { Priorities.Data priorities = RoleMap.role( Priorities.Data.class ); List<Priority> sortedList = priorities.prioritys().toList(); Collections.sort( sortedList, new Comparator<Priority>() { public int compare( Priority o1, Priority o2 ) { return ((PrioritySettings.Data)o1).priority().get().compareTo( ((PrioritySettings.Data)o2).priority().get() ); } } ); return sortedList; } public Priority create( final String name ) { Priorities priorities = RoleMap.role( Priorities.class ); Priority priority = null; if( !Iterables.matchesAny( new Specification<Describable>() { public boolean satisfiedBy( Describable describable ) { return name.equals( describable.getDescription() ); } }, ((Priorities.Data)priorities).prioritys().toList() ) ) { priority = priorities.createPriority( ); priority.changeDescription( name ); } return priority; } public void up( String id ) { RoleMap.role( Priorities.class ).changePriorityOrder( module.unitOfWorkFactory().currentUnitOfWork().get( Priority.class, id ), - 1 ); } public void down( String id ) { RoleMap.role( Priorities.class ).changePriorityOrder( module.unitOfWorkFactory().currentUnitOfWork().get( Priority.class, id ), 1 ); } } }