mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Session login and logout fixes
This commit is contained in:
parent
ae84433801
commit
cc8e8f5feb
|
@ -25,18 +25,19 @@ public class CustomerContactResource {
|
||||||
}
|
}
|
||||||
|
|
||||||
@GET
|
@GET
|
||||||
public Response getCustomerContacts(@QueryParam("customerId") String customerId)
|
public Response getCustomerContacts(@QueryParam("sessionId") String sessionId, @QueryParam("customerId") String customerId)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
// TODO , @QueryParam("sessionId") String sessionId
|
// TODO , @QueryParam("sessionId") String sessionId
|
||||||
// authService.getUser(sessionId);
|
authService.authenticateSession(sessionId);
|
||||||
return new ApiResponse(service.getCustomerContacts(customerId)).toResponse();
|
return new ApiResponse(service.getCustomerContacts(customerId)).toResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Path("/{customerId}")
|
@Path("/{customerId}")
|
||||||
@PUT
|
@PUT
|
||||||
public Response updateCustomerContact(@PathParam("customerId") String customerId, CustomerContactRequest request)
|
public Response updateCustomerContact(@QueryParam("sessionId") String sessionId, @PathParam("customerId") String customerId, CustomerContactRequest request)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
System.out.println("in updateCustomerContact()");
|
System.out.println("in updateCustomerContact()");
|
||||||
|
authService.authenticateSession(sessionId);
|
||||||
service.updateCustomerContact(customerId, request.getContactId(), request.getName(), request.getTitle(), request.getWorkPhone(),
|
service.updateCustomerContact(customerId, request.getContactId(), request.getName(), request.getTitle(), request.getWorkPhone(),
|
||||||
request.getPhExt(), request.getMobile(), request.getFax(), request.getEmail(), request.getAddress());
|
request.getPhExt(), request.getMobile(), request.getFax(), request.getEmail(), request.getAddress());
|
||||||
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
||||||
|
@ -44,17 +45,19 @@ public class CustomerContactResource {
|
||||||
|
|
||||||
@Path("/{customerId}/{contactId}/delete")
|
@Path("/{customerId}/{contactId}/delete")
|
||||||
@PUT
|
@PUT
|
||||||
public Response deleteCustomerContact(@PathParam("customerId") String customerId, @PathParam("contactId") int contactId)
|
public Response deleteCustomerContact(@QueryParam("sessionId") String sessionId, @PathParam("customerId") String customerId, @PathParam("contactId") int contactId)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
System.out.println("in deleteCustomerContact()");
|
System.out.println("in deleteCustomerContact()");
|
||||||
|
authService.authenticateSession(sessionId);
|
||||||
service.deleteCustomerContact(customerId, contactId);
|
service.deleteCustomerContact(customerId, contactId);
|
||||||
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
@POST
|
@POST
|
||||||
public Response createCustomerContact(CustomerContactRequest request)
|
public Response createCustomerContact(@QueryParam("sessionId") String sessionId, CustomerContactRequest request)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
System.out.println("in AstuteSyste CustomerContactRequest()");
|
System.out.println("in AstuteSyste CustomerContactRequest()");
|
||||||
|
authService.authenticateSession(sessionId);
|
||||||
service.createCustomerContact(request.getCustomerId(), request.getName(), request.getTitle(), request.getWorkPhone(),
|
service.createCustomerContact(request.getCustomerId(), request.getName(), request.getTitle(), request.getWorkPhone(),
|
||||||
request.getPhExt(), request.getMobile(), request.getFax(), request.getEmail(), request.getAddress());
|
request.getPhExt(), request.getMobile(), request.getFax(), request.getEmail(), request.getAddress());
|
||||||
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
||||||
|
|
|
@ -23,25 +23,27 @@ public class CustomerResource {
|
||||||
}
|
}
|
||||||
|
|
||||||
@GET
|
@GET
|
||||||
public Response getCustomers(@QueryParam("customerId") String customerId)
|
public Response getCustomers(@QueryParam("sessionId") String sessionId, @QueryParam("customerId") String customerId)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
// TODO , @QueryParam("sessionId") String sessionId
|
// TODO , @QueryParam("sessionId") String sessionId
|
||||||
// authService.getUser(sessionId);
|
authService.authenticateSession(sessionId);
|
||||||
return new ApiResponse(service.getCustomers(customerId)).toResponse();
|
return new ApiResponse(service.getCustomers(customerId)).toResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Path("/{poNumber}")
|
@Path("/{poNumber}")
|
||||||
@GET
|
@GET
|
||||||
public Response getCustomer(@PathParam("poNumber") String poNumber)
|
public Response getCustomer(@QueryParam("sessionId") String sessionId, @PathParam("poNumber") String poNumber)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
|
authService.authenticateSession(sessionId);
|
||||||
return new ApiResponse(service.getCustomer(poNumber)).toResponse();
|
return new ApiResponse(service.getCustomer(poNumber)).toResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Path("/{customerId}")
|
@Path("/{customerId}")
|
||||||
@PUT
|
@PUT
|
||||||
public Response updateCustomer(@PathParam("customerId") String customerId, CustomerRequest request)
|
public Response updateCustomer(@QueryParam("sessionId") String sessionId, @PathParam("customerId") String customerId, CustomerRequest request)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
System.out.println("in updateCustomer()");
|
System.out.println("in updateCustomer()");
|
||||||
|
authService.authenticateSession(sessionId);
|
||||||
service.updateCustomer(customerId, request.getCustomerName(), request.getBillToDept(), request.getAdd1(),
|
service.updateCustomer(customerId, request.getCustomerName(), request.getBillToDept(), request.getAdd1(),
|
||||||
request.getAdd2(), request.getCity(), request.getState(), request.getZip(), request.getZiplast4(), request.getEmail(), request.getPhone(), request.getPhExt(), request.getFax());
|
request.getAdd2(), request.getCity(), request.getState(), request.getZip(), request.getZiplast4(), request.getEmail(), request.getPhone(), request.getPhExt(), request.getFax());
|
||||||
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
||||||
|
@ -49,17 +51,19 @@ public class CustomerResource {
|
||||||
|
|
||||||
@Path("/{customerId}/delete")
|
@Path("/{customerId}/delete")
|
||||||
@PUT
|
@PUT
|
||||||
public Response deleteCustomer(@PathParam("customerId") String customerId)
|
public Response deleteCustomer(@QueryParam("sessionId") String sessionId, @PathParam("customerId") String customerId)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
System.out.println("in deleteCustomer()");
|
System.out.println("in deleteCustomer()");
|
||||||
|
authService.authenticateSession(sessionId);
|
||||||
service.deleteCustomer(customerId);
|
service.deleteCustomer(customerId);
|
||||||
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
@POST
|
@POST
|
||||||
public Response createCustomer(CustomerRequest request)
|
public Response createCustomer(@QueryParam("sessionId") String sessionId, CustomerRequest request)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
System.out.println("in AstuteSyste createCustomer()");
|
System.out.println("in AstuteSyste createCustomer()");
|
||||||
|
authService.authenticateSession(sessionId);
|
||||||
return new ApiResponse(service.createCustomer(request.getCustomerId(), request.getCustomerName(), request.getBillToDept(), request.getAdd1(),
|
return new ApiResponse(service.createCustomer(request.getCustomerId(), request.getCustomerName(), request.getBillToDept(), request.getAdd1(),
|
||||||
request.getAdd2(), request.getCity(), request.getState(), request.getZip(), request.getZiplast4(), request.getEmail(), request.getPhone(), request.getPhExt(), request.getFax())).toResponse();
|
request.getAdd2(), request.getCity(), request.getState(), request.getZip(), request.getZiplast4(), request.getEmail(), request.getPhone(), request.getPhExt(), request.getFax())).toResponse();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user