ContractMethods.java 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package com.sagacloud.route.processors;
  2. import com.sagacloud.Exceptions.InvalidPostException;
  3. import org.apache.camel.Exchange;
  4. import org.json.JSONObject;
  5. import java.util.ArrayList;
  6. import java.util.HashSet;
  7. import java.util.List;
  8. import java.util.Set;
  9. /**
  10. * Created by wo on 9/4/18.
  11. */
  12. public class ContractMethods {
  13. public static void preQueryEq(Exchange exchange) {
  14. exchange.getIn().setBody("{\"customInfo\":false,\"linkInfos\":false,\"criteria\":{\"type\":[\"Eq\"]}}");
  15. }
  16. public static void extractSupplierContractIds(Exchange exchange) {
  17. extract(exchange, "SupplierContractID", "DPSupplierID", exchange.getProperty("DPSupplierID", String.class));
  18. }
  19. public static void extractInsuranceNum(Exchange exchange) {
  20. extract(exchange, "InsuranceNum", "DPInsurerID", exchange.getProperty("DPInsurerID", String.class));
  21. }
  22. private static void extract(Exchange exchange, String info, String venderInfo, String venderId){
  23. String inStr = exchange.getIn().getBody(String.class);
  24. JSONObject json = new JSONObject(inStr);
  25. if(!json.getString("Result").equalsIgnoreCase("success")){
  26. return;
  27. }
  28. List<JSONObject> contents = new ArrayList<>();
  29. Set<String> contractIds = new HashSet<>();
  30. json.getJSONArray("Content").forEach(obj ->{
  31. JSONObject item = (JSONObject) obj;
  32. JSONObject infos = item.getJSONObject("infos");
  33. if(infos.has(venderInfo) && infos.getString(venderInfo).trim().equalsIgnoreCase(venderId) && infos.has(info)){
  34. if(contractIds.contains(infos.getString(info))){
  35. return;
  36. }
  37. JSONObject content = new JSONObject();
  38. content.put(info, infos.getString(info));
  39. if(info.equalsIgnoreCase("InsuranceNum")){
  40. if(infos.has("InsuranceFile")){
  41. content.put("InsuranceFile", infos.get("InsuranceFile"));
  42. }
  43. }
  44. contents.add(content);
  45. contractIds.add(infos.getString(info));
  46. }
  47. });
  48. JSONObject result = new JSONObject("{\"result\":\"success\",\"resultMsg\":\"\"}");
  49. result.put("content", contents);
  50. exchange.getOut().setBody(result);
  51. }
  52. public static void validateDPSupplierID(Exchange exchange) throws InvalidPostException {
  53. String inStr = exchange.getIn().getBody(String.class);
  54. JSONObject json = new JSONObject(inStr);
  55. if(!json.has("DPSupplierID")){
  56. throw new InvalidPostException("Need DPSupplierID");
  57. }
  58. exchange.setProperty("DPSupplierID", json.getString("DPSupplierID"));
  59. }
  60. public static void validateDPInsurerID(Exchange exchange) throws InvalidPostException {
  61. String inStr = exchange.getIn().getBody(String.class);
  62. JSONObject json = new JSONObject(inStr);
  63. if(!json.has("DPInsurerID")){
  64. throw new InvalidPostException("Need DPInsurerID");
  65. }
  66. exchange.setProperty("DPInsurerID", json.getString("DPInsurerID").trim());
  67. }
  68. }