1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package com.vci.ubcs.code.controller;
 
import com.alibaba.fastjson.JSONObject;
import com.vci.ubcs.code.dto.datapush.result.ResultJsonDTO;
import com.vci.ubcs.code.dto.datapush.result.ResultNodeDataDTO;
import com.vci.ubcs.code.dto.datapush.result.ResultNodeObjectDTO;
import com.vci.ubcs.code.service.UniversalInterfaceI;
import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.DomDriver;
import com.vci.starter.web.annotation.controller.VciUnCheckRight;
import com.vci.starter.web.annotation.controller.VciUnUseResponseAdvice;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
import java.util.Arrays;
 
/**
 * 主题库分类控制器
 *
 * @author weidy
 * @date 2022-01-20
 */
@RestController
@VciUnCheckRight
@RequestMapping("/codeSyncUniversalControoler")
public class CodeApplySyncController {
    /**
     * 日志
     */
    private Logger logger = LoggerFactory.getLogger(getClass());
    /**
     * 接口集成服务
     */
    @Autowired
    private UniversalInterfaceI universalInterface;
    /****
     * 申请接口
     * @param dataString 属性信息
     * @param dataType 数据格式类型
     * @return
     * @throws Throwable
     */
    @VciUnCheckRight
    @VciUnUseResponseAdvice
    @PostMapping("/applyCode")
   public String applyCode(@RequestParam("dataString")String dataString,@RequestParam("dataType")String dataType)  {
        String result="";
        try {
            result = universalInterface.applyCode(dataString, dataType);
        }catch (Throwable e){
            e.printStackTrace();
            logger.error("applyCode->"+e.getMessage());
        }
         return result;
    }
 
    /****
     * 更新/删除/状态接口
     * @param dataString 属性信息
     * @param dataType 数据格式类型
     * @return
     * @throws Throwable
     */
    @VciUnCheckRight
    @VciUnUseResponseAdvice
    @PostMapping("/syncData")
    public String syncData(@RequestParam("dataString")String dataString,@RequestParam("dataType")String dataType)  {
        String result="";
        try {
            result= universalInterface.syncEditData(dataString,dataType);
        }catch (Throwable e){
            e.printStackTrace();;
            logger.error("syncData->"+e.getMessage());
        }
        return result;
    }
 
 
    /****
     * 查询分类口
     * @param dataString 属性信息
     * @param dataType 数据格式类型
     * @return
     * @throws Throwable
     */
    @VciUnCheckRight
    @VciUnUseResponseAdvice
    @PostMapping("/queryClassify")
    public String queryClassify(@RequestParam("dataString")String dataString,@RequestParam("dataType")String dataType) throws Throwable {
        String result="";
        try {
             result = universalInterface.queryClassify(dataString, dataType);
        }catch (Throwable e){
            e.printStackTrace();
            logger.error("queryClassify->"+e.getMessage());
        }
        return result;
    }
 
    /****
     * 查询分类口
     * @param dataString 属性信息
     * @param dataType 数据格式类型
     * @return
     * @throws Throwable
     */
    @VciUnCheckRight
    @VciUnUseResponseAdvice
    @PostMapping("/queryData")
    public String queryData(@RequestParam("dataString")String dataString,@RequestParam("dataType")String dataType) throws Throwable {
        String result="";
        try {
            result= universalInterface.queryData(dataString,dataType);
        }catch (Throwable e){
            e.printStackTrace();
            logger.error("queryData->"+e.getMessage());
        }
        return result;
    }
 
    /****
     * 查询分类口
     * @param dataString 属性信息
     * @param dataType 数据格式类型
     * @return
     * @throws Throwable
     */
    @VciUnCheckRight
    @VciUnUseResponseAdvice
    @PostMapping("/testPushData")
    public String testPushData(@RequestParam("dataString")String dataString, @RequestParam("dataType")String dataType) throws Throwable {
        String result="";
        ResultJsonDTO resultJsonDTO=new ResultJsonDTO();
        ResultNodeDataDTO resultNodeDataDTO =new ResultNodeDataDTO();
        ResultNodeObjectDTO resultNodeObjectDTO=new ResultNodeObjectDTO();
        resultNodeObjectDTO.setCode("01001");
        resultNodeObjectDTO.setOid("0001");
        resultNodeObjectDTO.setMsg("测试成功");
        resultNodeObjectDTO.setErroid("0");
        resultNodeDataDTO.setObject(Arrays.asList(resultNodeObjectDTO));
        if(dataType.equalsIgnoreCase("json")){
            resultJsonDTO.setData(resultNodeDataDTO);
            Object object = JSONObject.toJSON(resultJsonDTO);
            result = object.toString();
        }else{
            //组织返回接口信息
            XStream xStream = new XStream(new DomDriver());
            xStream.processAnnotations(ResultNodeDataDTO.class);
            xStream.autodetectAnnotations(true);
            String results=xStream.toXML(resultNodeDataDTO);
            result ="<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n" + results;
 
        }
       //result="\"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" ?><data>\\n  <object code=\\\"01001\\\" oid=\\\"0001\\\" erroid=\\\"0\\\" msg=\\\"测试成功\\\"/>\\n</data>\"";
        //组织返回接口信息
       /* XStream xStream = new XStream(new DomDriver());
        xStream.processAnnotations(ResultNodeDataDTO.class);
        xStream.autodetectAnnotations(true);
        ResultNodeDataDTO resultNodeDataDTOs = (ResultNodeDataDTO) xStream.fromXML(result);
        resultJsonDTO.setData(resultNodeDataDTO);*/
        return result;
    }
 
}