/* * FinTP - Financial Transactions Processing Application * Copyright (C) 2013 Business Information Systems (Allevo) S.R.L. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> * or contact Allevo at : 031281 Bucuresti, 23C Calea Vitan, Romania, * phone +40212554577, office@allevo.ro <mailto:office@allevo.ro>, www.allevo.ro. */ package ro.allevo.fintpws.resources; import java.math.BigDecimal; import java.net.URI; import java.text.ParseException; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.EntityNotFoundException; import javax.persistence.Query; import javax.persistence.RollbackException; import javax.ws.rs.Consumes; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.core.UriBuilder; import javax.ws.rs.core.UriInfo; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codehaus.jettison.json.JSONArray; import org.codehaus.jettison.json.JSONException; import org.codehaus.jettison.json.JSONObject; import org.springframework.beans.factory.annotation.Autowired; import ro.allevo.fintpws.exceptions.ApplicationJsonException; import ro.allevo.fintpws.model.UserEntity; import ro.allevo.fintpws.security.CustomPasswordEncoder; import ro.allevo.fintpws.util.JsonResponseWrapper; public class UsersResource extends PagedCollection{ @Autowired CustomPasswordEncoder customPasswordEncoder; /** * Field logger */ private static final Logger logger = LogManager .getLogger(TimeLimitsResource.class.getName()); /** * Field ERROR_MESSAGE_GET_TIME_LIMITS. (value is ""Error returning time * limits: "") */ static final String ERROR_MESSAGE_GET_USERS= "Error returning time limits : "; /** * Field ERROR_MESSAGE_POST_TIME_LIMITS. (value is ""Error creating time * limits : "") */ static final String ERROR_MESSAGE_POST_USERS = "Error creating time limits : "; /** * Field ERROR_REASON_JSON. (value is ""json"") */ static final String ERROR_REASON_JSON = "json"; /** * Field ERROR_REASON_NUMBER_FORMAT. (value is ""number format"") */ static final String ERROR_REASON_NUMBER_FORMAT = "number format"; /** * Field ERROR_REASON_ROLLBACK_EXCEPTION. (value is ""conflict"") */ static final String ERROR_REASON_CONFLICT = "conflict"; /** * Field ERROR_REASON_ROLLBACK. (value is ""rollback"") */ static final String ERROR_REASON_ROLLBACK = "rollback"; /** * Field ERROR_REASON_PARSE. (value is ""parse"") */ static final String ERROR_REASON_PARSE = "parse"; /** * Field entityManagerConfig */ private final EntityManager entityManagerConfig; /** * Returns a time limit sub-resource with guid * * @param guid * String guid of the time limit as last element in the path * * @return TimeLimitResource The time limit sub-resource */ @Path("{username}") public UserResource getUserResource( @PathParam("username") String username) { return new UserResource(getUriInfo(), entityManagerConfig, username); } /** * * @param uriInfo * @param itemsQuery * @param totalQuery */ public UsersResource(UriInfo uriInfo, EntityManager entityManagerConfig, UserEntity usersEntity) { super(uriInfo, entityManagerConfig.createNamedQuery("UserEntity.findAll", UserEntity.class), entityManagerConfig.createNamedQuery("UserEntity.findTotal", Long.class)); this.entityManagerConfig = entityManagerConfig; } /** * GET method : returns an application/json formatted list of time limits * * @return JSONObject The list of time limits */ @GET @Produces(MediaType.APPLICATION_JSON) public JSONObject getUsersAsJson() { try { getPage(); return asJson(); } catch (JSONException je) { logger.error(ERROR_MESSAGE_GET_USERS+ ERROR_REASON_JSON, je); throw new ApplicationJsonException(je, ERROR_MESSAGE_GET_USERS+ ERROR_REASON_JSON, Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()); } } /** * POST method : creates a user * * @param jsonEntity * JSONObject * @return Response */ @POST @Consumes(MediaType.APPLICATION_JSON) public Response postForm(JSONObject jsonEntity) { String id; final UserEntity userEntity = new UserEntity(); URI timeLimitUri = null; try { userEntity.setUsername(jsonEntity.getString("username")); CustomPasswordEncoder passEncoder = new CustomPasswordEncoder(); userEntity.setPassword(passEncoder.encodePassword( jsonEntity.getString("password"), null)); userEntity.setFirstname(jsonEntity.optString("firstname")); userEntity.setLastname(jsonEntity.optString("lastname")); userEntity.setSkincolor(jsonEntity.optString("skincolor", "Blue")); userEntity.setIslocked(new Long(jsonEntity.optLong("islocked", 0))); userEntity.setNoretry(new Long(jsonEntity.optLong("noretry", 0))); userEntity.setEmail(jsonEntity.optString("email")); entityManagerConfig.getTransaction().begin(); entityManagerConfig.persist(userEntity); id = entityManagerConfig.getEntityManagerFactory() .getPersistenceUnitUtil().getIdentifier(userEntity).toString(); entityManagerConfig.getTransaction().commit(); } catch (JSONException je) { logger.error(ERROR_MESSAGE_POST_USERS+ ERROR_REASON_JSON, je); throw new ApplicationJsonException(je, ERROR_MESSAGE_POST_USERS + ERROR_REASON_JSON, Response.Status.BAD_REQUEST.getStatusCode()); } catch (NumberFormatException nfe) { logger.error(ERROR_MESSAGE_POST_USERS + ERROR_REASON_NUMBER_FORMAT, nfe); throw new ApplicationJsonException( nfe, ERROR_MESSAGE_POST_USERS+ ERROR_REASON_NUMBER_FORMAT, Response.Status.BAD_REQUEST.getStatusCode()); } catch (RollbackException re) { ApplicationJsonException.handleSQLException(re, ERROR_MESSAGE_POST_USERS, logger); logger.error( ERROR_MESSAGE_POST_USERS+ ERROR_REASON_ROLLBACK, re); throw re; } finally { if (null != entityManagerConfig) { entityManagerConfig.close(); } } timeLimitUri = getUriInfo().getAbsolutePathBuilder() .path(userEntity.toString()).build(); return JsonResponseWrapper.getResponse(id, Response.Status.CREATED, timeLimitUri); } /** * Returns the resource formatted as json * * @throws JSONException * @return JSONObject * */ @SuppressWarnings("unchecked") public JSONObject asJson() throws JSONException { final JSONObject usersAsJson = super.asJson(); // fill data final JSONArray usersArray = new JSONArray(); final List<?> items = getItems(); if (items.size() > 0) { for (UserEntity userEntity : (List<UserEntity>) items) { usersArray.put(UserResource.asJson( userEntity, UriBuilder.fromPath(getUriInfo().getPath()) .path(userEntity.toString()).build() .getPath())); } } usersAsJson.put("users", usersArray); return usersAsJson; } }