|
@ -12,6 +12,7 @@ import org.jfw.apt.web.annotation.operate.Get;
|
12
|
12
|
import org.jfw.apt.web.annotation.param.JdbcConn;
|
13
|
13
|
import org.jfw.apt.web.annotation.param.ParameterMap;
|
14
|
14
|
import org.jfw.util.PageQueryResult;
|
|
15
|
import org.jfw.util.exception.JfwBaseException;
|
15
|
16
|
import org.jfw.util.jdbc.JdbcUtil;
|
16
|
17
|
import org.jfw.util.jdbc.PreparedStatementConfig;
|
17
|
18
|
|
|
@ -27,11 +28,20 @@ public class Main {
|
27
|
28
|
public static final String MIN_DAY = "00000000";
|
28
|
29
|
|
29
|
30
|
|
|
31
|
private List<String> tns;
|
30
|
32
|
private List<LogHandler> handlers;
|
31
|
33
|
|
32
|
34
|
@Autowrie
|
33
|
35
|
private DayDao dayDao;
|
34
|
36
|
|
|
37
|
public List<String> getTns() {
|
|
38
|
return tns;
|
|
39
|
}
|
|
40
|
|
|
41
|
public void setTns(List<String> tns) {
|
|
42
|
this.tns = tns;
|
|
43
|
}
|
|
44
|
|
35
|
45
|
public List<LogHandler> getHandlers() {
|
36
|
46
|
return handlers;
|
37
|
47
|
}
|
|
@ -59,21 +69,44 @@ public class Main {
|
59
|
69
|
@Get
|
60
|
70
|
@Path("/qm")
|
61
|
71
|
public List<DayData> query(@JdbcConn Connection con, String tn, @Nullable String[] src, @Nullable String[] id, @DefaultValue("com.ekexiu.project.platform.views.service.Main.MIN_DAY") String bt,
|
62
|
|
@DefaultValue("com.ekexiu.project.platform.views.service.Main.MAX_DAY") String et, @Nullable String sort) throws SQLException {
|
|
72
|
@DefaultValue("com.ekexiu.project.platform.views.service.Main.MAX_DAY") String et, @Nullable String sort) throws SQLException, JfwBaseException {
|
|
73
|
if (!this.tns.contains(tn)) {
|
|
74
|
throw new JfwBaseException(-101, "unavailable tn");
|
|
75
|
}
|
63
|
76
|
return dayDao.query(con, tn, src, id, bt, et, sort);
|
64
|
77
|
}
|
65
|
78
|
|
66
|
79
|
@Get
|
67
|
80
|
@Path("/qo")
|
68
|
81
|
public List<DayData> query(@JdbcConn Connection con, String tn, String id, @DefaultValue("com.ekexiu.project.platform.views.service.Main.MIN_DAY") String bt,
|
69
|
|
@DefaultValue("com.ekexiu.project.platform.views.service.Main.MAX_DAY") String et) throws SQLException {
|
|
82
|
@DefaultValue("com.ekexiu.project.platform.views.service.Main.MAX_DAY") String et) throws SQLException, JfwBaseException {
|
|
83
|
if (!this.tns.contains(tn)) {
|
|
84
|
throw new JfwBaseException(-101, "unavailable tn");
|
|
85
|
}
|
70
|
86
|
return dayDao.query(con, tn, id, bt, et);
|
71
|
87
|
}
|
72
|
88
|
|
|
89
|
@Get
|
|
90
|
@Path("/qo/sum")
|
|
91
|
public int query(@JdbcConn Connection con, String tn, final String id) throws SQLException,JfwBaseException {
|
|
92
|
if (!this.tns.contains(tn)) {
|
|
93
|
throw new JfwBaseException(-101, "unavailable tn");
|
|
94
|
}
|
|
95
|
return JdbcUtil.queryInt(con, "SELECT SUM FROM " + tn + "_DAY_SUM WHERE ID = ?", new PreparedStatementConfig() {
|
|
96
|
@Override
|
|
97
|
public void config(PreparedStatement preparedStatement) throws SQLException {
|
|
98
|
preparedStatement.setString(1, id);
|
|
99
|
}
|
|
100
|
}, 0);
|
|
101
|
}
|
|
102
|
|
73
|
103
|
@Get
|
74
|
104
|
@Path("/qs")
|
75
|
105
|
public List<DayData> query(@JdbcConn Connection con, String tn, @Nullable String[] src, @DefaultValue("com.ekexiu.project.platform.views.service.Main.MIN_DAY") String bt,
|
76
|
|
@DefaultValue("com.ekexiu.project.platform.views.service.Main.MAX_DAY") String et, @DefaultValue("20") int rows) throws SQLException {
|
|
106
|
@DefaultValue("com.ekexiu.project.platform.views.service.Main.MAX_DAY") String et, @DefaultValue("20") int rows) throws SQLException, JfwBaseException {
|
|
107
|
if (!this.tns.contains(tn)) {
|
|
108
|
throw new JfwBaseException(-101, "unavailable tn");
|
|
109
|
}
|
77
|
110
|
return dayDao.query(con, tn, bt, et, src, rows);
|
78
|
111
|
}
|
79
|
112
|
|
|
@ -89,9 +122,12 @@ public class Main {
|
89
|
122
|
}
|
90
|
123
|
|
91
|
124
|
@Get
|
92
|
|
@Path("/article/total")
|
93
|
|
public List<Map<String, Object>> total(@JdbcConn Connection con, @DefaultValue("com.ekexiu.project.platform.views.service.Main.MIN_DAY") final String bt) throws SQLException {
|
94
|
|
return JdbcUtil.queryMaps(con, "SELECT day,sum(pv)as pv,source FROM article_day WHERE day>=? GROUP BY day,source ORDER BY day DESC ", new PreparedStatementConfig() {
|
|
125
|
@Path("/total")
|
|
126
|
public List<Map<String, Object>> total(@JdbcConn Connection con,String tn, @DefaultValue("com.ekexiu.project.platform.views.service.Main.MIN_DAY") final String bt) throws SQLException, JfwBaseException {
|
|
127
|
if (!this.tns.contains(tn)) {
|
|
128
|
throw new JfwBaseException(-101, "unavailable tn");
|
|
129
|
}
|
|
130
|
return JdbcUtil.queryMaps(con, "SELECT day,sum(pv)as pv,source FROM "+tn+"_day WHERE day>=? GROUP BY day,source ORDER BY day DESC ", new PreparedStatementConfig() {
|
95
|
131
|
@Override
|
96
|
132
|
public void config(PreparedStatement preparedStatement) throws SQLException {
|
97
|
133
|
preparedStatement.setString(1, bt);
|