Java tutorial
/** * Copyright 2009 the original author or authors * * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0 * * 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 it.av.eatt.service.impl; import it.av.eatt.JackWicketException; import it.av.eatt.UserAlreadyExistsException; import it.av.eatt.ocm.model.Eater; import it.av.eatt.ocm.model.EaterRelation; import it.av.eatt.service.EaterProfileService; import it.av.eatt.service.EaterRelationService; import it.av.eatt.service.EaterService; import java.util.ArrayList; import java.util.Collection; import java.util.List; import org.apache.commons.lang.StringUtils; import org.hibernate.criterion.Criterion; import org.hibernate.criterion.Restrictions; import org.hibernate.exception.ConstraintViolationException; import org.jasypt.util.password.StrongPasswordEncryptor; import org.springframework.dao.DataAccessException; /** * * @author <a href='mailto:a.vincelli@gmail.com'>Alessandro Vincelli</a> */ public class EaterServiceHibernate extends ApplicationServiceHibernate<Eater> implements EaterService { private StrongPasswordEncryptor passwordEncoder; private EaterProfileService userProfileService; private EaterRelationService userRelationService; /** * {@inheritDoc} */ @Override public Eater addRegolarUser(Eater object) { object.setUserProfile(userProfileService.getRegolarUserProfile()); try { return add(object); } catch (ConstraintViolationException e) { throw new UserAlreadyExistsException(e.getMessage()); } } /** * {@inheritDoc} */ @Override public Eater add(Eater object) { if (object == null || StringUtils.isBlank(object.getEmail())) { throw new JackWicketException("Eater is null or email is empty"); } object.setPassword(passwordEncoder.encryptPassword(object.getPassword())); if (object.getUserProfile() == null) { object.setUserProfile(userProfileService.getRegolarUserProfile()); } return super.save(object); } /** * {@inheritDoc} */ @Override public Eater update(Eater object) { try { super.save(object); } catch (DataAccessException e) { throw new JackWicketException(e); } return object; } /** * {@inheritDoc} */ @Override public Eater getByEmail(String email) { Criterion crit = Restrictions.eq(Eater.EMAIL, email); List<Eater> result = super.findByCriteria(crit); if (result != null && result.size() == 1) { return result.get(0); } else { return null; } } /** * {@inheritDoc} */ @Override public Collection<Eater> findUserWithoutRelation(Eater forUser, String pattern) { // TODO can be improved with an outer join Collection<EaterRelation> relatedUser = userRelationService.getAllRelations(forUser); ArrayList<String> relatedUserId = new ArrayList<String>(relatedUser.size()); for (EaterRelation userRelation : relatedUser) { relatedUserId.add(userRelation.getToUser().getId()); } List<Criterion> criterions = new ArrayList<Criterion>(3); if (StringUtils.isNotBlank(pattern)) { criterions.add(Restrictions.or(Restrictions.ilike(Eater.FIRSTNAME, pattern), Restrictions.ilike(Eater.LASTNAME, pattern))); } if (relatedUserId.size() > 0) { criterions.add(Restrictions.not(Restrictions.in(Eater.ID, relatedUserId))); } // escludes the forUser from the search criterions.add(Restrictions.not(Restrictions.idEq(forUser.getId()))); List<Eater> results = super.findByCriteria(criterions.toArray(new Criterion[criterions.size()])); return results; } /** * {@inheritDoc} */ @Override public Collection<Eater> findUserWithoutRelation(Eater forUser) { return findUserWithoutRelation(forUser, null); } /** * {@inheritDoc} */ @Override public void remove(Eater user) { super.remove(user); } public void setPasswordEncoder(StrongPasswordEncryptor passwordEncoder) { this.passwordEncoder = passwordEncoder; } public void setUserProfileService(EaterProfileService userProfileService) { this.userProfileService = userProfileService; } public void setUserRelationService(EaterRelationService userRelationService) { this.userRelationService = userRelationService; } /** * {@inheritDoc} */ @Override public Collection<Eater> find(String pattern) { Criterion critByName = Restrictions.ilike(Eater.LASTNAME, pattern); List<Eater> results = findByCriteria(critByName); return results; } }