/* * Copyright 2011, Nabil Benothman, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package com.ubike.rest.service; import com.ubike.model.PrivacyPreferences; import javax.ws.rs.Path; import javax.ws.rs.GET; import javax.ws.rs.PUT; import javax.ws.rs.DELETE; import javax.ws.rs.Produces; import javax.ws.rs.Consumes; import javax.ws.rs.QueryParam; import javax.ws.rs.DefaultValue; import javax.ws.rs.core.Context; import javax.ws.rs.core.UriInfo; import com.sun.jersey.api.core.ResourceContext; import javax.ws.rs.WebApplicationException; import javax.persistence.NoResultException; import javax.persistence.EntityManager; import com.ubike.model.UbikeUser; import com.ubike.rest.converter.PrivacyPreferencesConverter; import javax.ejb.Stateless; import org.springframework.context.annotation.Scope; import org.springframework.security.annotation.Secured; import org.springframework.stereotype.Component; /** * {@code PrivacyPreferencesResource} * <p></p> * * Created on Jun 6, 2011 at 7:17:22 PM * * @author <a href="mailto:nabil.benothman@gmail.com">Nabil Benothman</a> */ @Stateless @Component @Scope("request") public class PrivacyPreferencesResource { @Context protected UriInfo uriInfo; @Context protected ResourceContext resourceContext; protected Long id; /** * Creates a new instance of PrivacyPreferencesResource */ public PrivacyPreferencesResource() { } public void setId(Long id) { this.id = id; } /** * Get method for retrieving an instance of PrivacyPreferences identified by id in XML format. * * @param id identifier for the entity * @return an instance of PrivacyPreferencesConverter */ @Secured({"ROLE_USER", "USER_ACCESS"}) @GET @Produces({"application/xml", "application/json"}) public PrivacyPreferencesConverter get(@QueryParam("expandLevel") @DefaultValue("1") int expandLevel) { PersistenceService persistenceSvc = PersistenceService.getInstance(); try { persistenceSvc.beginTx(); return new PrivacyPreferencesConverter(getEntity(), uriInfo.getAbsolutePath(), expandLevel); } finally { PersistenceService.getInstance().close(); } } /** * Put method for updating an instance of PrivacyPreferences identified by id using XML as the input format. * * @param id identifier for the entity * @param data an PrivacyPreferencesConverter entity that is deserialized from a XML stream */ @PUT @Consumes({"application/xml", "application/json"}) public void put(PrivacyPreferencesConverter data) { PersistenceService persistenceSvc = PersistenceService.getInstance(); try { persistenceSvc.beginTx(); EntityManager em = persistenceSvc.getEntityManager(); updateEntity(getEntity(), data.resolveEntity(em)); persistenceSvc.commitTx(); } finally { persistenceSvc.close(); } } /** * Delete method for deleting an instance of PrivacyPreferences identified by id. * * @param id identifier for the entity */ @DELETE public void delete() { PersistenceService persistenceSvc = PersistenceService.getInstance(); try { persistenceSvc.beginTx(); deleteEntity(getEntity()); persistenceSvc.commitTx(); } finally { persistenceSvc.close(); } } /** * Returns an instance of PrivacyPreferences identified by id. * * @param id identifier for the entity * @return an instance of PrivacyPreferences */ public PrivacyPreferences getEntity() { EntityManager em = PersistenceService.getInstance().getEntityManager(); try { return (PrivacyPreferences) em.createQuery("SELECT e FROM PrivacyPreferences e where e.id = :id").setParameter("id", id).getSingleResult(); } catch (NoResultException ex) { throw new WebApplicationException(new Throwable("Resource for " + uriInfo.getAbsolutePath() + " does not exist."), 404); } } /** * Updates entity using data from newEntity. * * @param entity the entity to update * @param newEntity the entity containing the new data * @return the updated entity */ protected PrivacyPreferences updateEntity(PrivacyPreferences entity, PrivacyPreferences newEntity) { EntityManager em = PersistenceService.getInstance().getEntityManager(); UbikeUser owner = entity.getOwner(); UbikeUser ownerNew = newEntity.getOwner(); entity = em.merge(newEntity); if (owner != null && !owner.equals(ownerNew)) { owner.setPreferences(null); } if (ownerNew != null && !ownerNew.equals(owner)) { ownerNew.setPreferences(entity); } return entity; } /** * Deletes the entity. * * @param entity the entity to deletle */ protected void deleteEntity(PrivacyPreferences entity) { EntityManager em = PersistenceService.getInstance().getEntityManager(); UbikeUser owner = entity.getOwner(); if (owner != null) { owner.setPreferences(null); } em.remove(entity); } /** * Returns a dynamic instance of UbikeUserResource used for entity navigation. * * @param id identifier for the parent entity * @return an instance of UbikeUserResource */ @Path("owner/") public UbikeUserResource getOwnerResource() { OwnerResourceSub resource = resourceContext.getResource(OwnerResourceSub.class); resource.setParent(getEntity()); return resource; } public static class OwnerResourceSub extends UbikeUserResource { private PrivacyPreferences parent; public void setParent(PrivacyPreferences parent) { this.parent = parent; } @Override public UbikeUser getEntity() { UbikeUser entity = parent.getOwner(); if (entity == null) { throw new WebApplicationException(new Throwable("Resource for " + uriInfo.getAbsolutePath() + " does not exist."), 404); } return entity; } } }