SearchExplainerController.java
3.23 KB
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
package com.yoho.search.restapi.tools;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import com.yoho.search.base.utils.HttpServletRequestUtils;
import com.yoho.search.service.searchexplainer.SearchExplainerService;
/**
* Created by ginozhang on 2016/11/16.
*/
@Controller
public class SearchExplainerController {
private static final Logger logger = LoggerFactory.getLogger(SearchExplainerController.class);
@Autowired
private SearchExplainerService searchExplainerService;
@RequestMapping(value = "/tools/explain")
@ResponseBody
public Map<String, Object> explain(HttpServletRequest request) {
Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
try {
return searchExplainerService.explain(paramMap);
} catch (Throwable t) {
logger.error(t.getMessage(), t);
return errorResult(t.getMessage());
}
}
@RequestMapping(value = "/tools/show")
@ResponseBody
public Map<String, Object> show(HttpServletRequest request) {
Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
try {
return searchExplainerService.show(paramMap);
} catch (Throwable t) {
logger.error(t.getMessage(), t);
return errorResult(t.getMessage());
}
}
@RequestMapping(value = "/tools/clearExplainCachedData")
@ResponseBody
public Map<String, Object> clearExplainCachedData() {
try {
searchExplainerService.clearCachedData();
Map<String, Object> map = new HashMap<>();
map.put("code", "200");
map.put("message", "succeed");
return map;
} catch (Throwable t) {
logger.error(t.getMessage(), t);
return errorResult(t.getMessage());
}
}
@RequestMapping(value = "/tools/tokens")
@ResponseBody
public Map<String, Object> getTokens(@RequestParam String skn) {
try {
return searchExplainerService.getTokens(skn);
} catch (Throwable t) {
logger.error(t.getMessage(), t);
return errorResult(t.getMessage());
}
}
private Map<String, Object> errorResult(String message) {
Map<String, Object> map = new HashMap<>();
map.put("code", "400");
map.put("message", message);
return map;
}
@RequestMapping(value = "/tools/multiFieldAnalyzeList")
@ResponseBody
public Map<String, Object> multiFieldAnalyzeList(HttpServletRequest request) {
Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
try {
return searchExplainerService.multiFieldAnalyzeList(paramMap);
} catch (Throwable t) {
logger.error(t.getMessage(), t);
return errorResult(t.getMessage());
}
}
}