|
@ -70,58 +70,60 @@ public class Main {
|
70
|
70
|
|
71
|
71
|
@Get
|
72
|
72
|
@Path("/qm")
|
73
|
|
public List<DayData> query(@JdbcConn Connection con, String tn, @Nullable String[] src, @Nullable String[] id, @DefaultValue("com.ekexiu.portal.views.service.Main.MIN_DAY") String bt,
|
|
73
|
public List<DayData> query(@JdbcConn Connection con, String tn,String platform, @Nullable String[] src, @Nullable String[] id, @DefaultValue("com.ekexiu.portal.views.service.Main.MIN_DAY") String bt,
|
74
|
74
|
@DefaultValue("com.ekexiu.portal.views.service.Main.MAX_DAY") String et, @Nullable String sort) throws SQLException, JfwBaseException {
|
75
|
75
|
if (!this.tns.contains(tn)) {
|
76
|
76
|
throw new JfwBaseException(-101, "unavailable tn");
|
77
|
77
|
}
|
78
|
|
return dayDao.query(con, tn, src, id, bt, et, sort);
|
|
78
|
return dayDao.query(con, tn,platform, src, id, bt, et, sort);
|
79
|
79
|
}
|
80
|
80
|
|
81
|
81
|
@Get
|
82
|
82
|
@Path("/qo")
|
83
|
|
public List<DayData> query(@JdbcConn Connection con, String tn, String id, @DefaultValue("com.ekexiu.portal.views.service.Main.MIN_DAY") String bt,
|
|
83
|
public List<DayData> query(@JdbcConn Connection con, String tn,String platform, String id, @DefaultValue("com.ekexiu.portal.views.service.Main.MIN_DAY") String bt,
|
84
|
84
|
@DefaultValue("com.ekexiu.portal.views.service.Main.MAX_DAY") String et) throws SQLException, JfwBaseException {
|
85
|
85
|
if (!this.tns.contains(tn)) {
|
86
|
86
|
throw new JfwBaseException(-101, "unavailable tn");
|
87
|
87
|
}
|
88
|
|
return dayDao.query(con, tn, id, bt, et);
|
|
88
|
return dayDao.query(con, tn,platform, id, bt, et);
|
89
|
89
|
}
|
90
|
90
|
|
91
|
91
|
@Get
|
92
|
92
|
@Path("/qo/sum")
|
93
|
|
public int query(@JdbcConn Connection con, String tn, final String id) throws SQLException,JfwBaseException {
|
|
93
|
public int query(@JdbcConn Connection con, String tn, final String platform, final String id) throws SQLException,JfwBaseException {
|
94
|
94
|
if (!this.tns.contains(tn)) {
|
95
|
95
|
throw new JfwBaseException(-101, "unavailable tn");
|
96
|
96
|
}
|
97
|
|
return JdbcUtil.queryInt(con, "SELECT SUM FROM " + tn + "_DAY_SUM WHERE ID = ?", new PreparedStatementConfig() {
|
|
97
|
return JdbcUtil.queryInt(con, "SELECT SUM FROM " + tn + "_DAY_SUM WHERE PLATFORM = ? AND ID = ?", new PreparedStatementConfig() {
|
98
|
98
|
@Override
|
99
|
99
|
public void config(PreparedStatement preparedStatement) throws SQLException {
|
100
|
|
preparedStatement.setString(1, id);
|
|
100
|
preparedStatement.setString(1,platform);
|
|
101
|
preparedStatement.setString(2, id);
|
101
|
102
|
}
|
102
|
103
|
}, 0);
|
103
|
104
|
}
|
104
|
105
|
|
105
|
106
|
@Get
|
106
|
107
|
@Path("/qs")
|
107
|
|
public List<DayData> query(@JdbcConn Connection con, String tn, @Nullable String[] src, @DefaultValue("com.ekexiu.portal.views.service.Main.MIN_DAY") String bt,
|
|
108
|
public List<DayData> query(@JdbcConn Connection con, String tn,String platform, @Nullable String[] src, @DefaultValue("com.ekexiu.portal.views.service.Main.MIN_DAY") String bt,
|
108
|
109
|
@DefaultValue("com.ekexiu.portal.views.service.Main.MAX_DAY") String et, @DefaultValue("20") int rows) throws SQLException, JfwBaseException {
|
109
|
110
|
if (!this.tns.contains(tn)) {
|
110
|
111
|
throw new JfwBaseException(-101, "unavailable tn");
|
111
|
112
|
}
|
112
|
|
return dayDao.query(con, tn, bt, et, src, rows);
|
|
113
|
return dayDao.query(con, tn,platform, bt, et, src, rows);
|
113
|
114
|
}
|
114
|
115
|
|
115
|
116
|
@Get
|
116
|
117
|
@Path("/total")
|
117
|
|
public List<Map<String, Object>> total(@JdbcConn Connection con,String tn, @DefaultValue("com.ekexiu.portal.views.service.Main.MIN_DAY") final String bt) throws SQLException, JfwBaseException {
|
|
118
|
public List<Map<String, Object>> total(@JdbcConn Connection con, String tn, final String platform, @DefaultValue("com.ekexiu.portal.views.service.Main.MIN_DAY") final String bt) throws SQLException, JfwBaseException {
|
118
|
119
|
if (!this.tns.contains(tn)) {
|
119
|
120
|
throw new JfwBaseException(-101, "unavailable tn");
|
120
|
121
|
}
|
121
|
|
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() {
|
|
122
|
return JdbcUtil.queryMaps(con, "SELECT day,sum(pv)as pv,source FROM "+tn+"_day WHERE PLATFORM = ? AND day>=? GROUP BY day,source ORDER BY day DESC ", new PreparedStatementConfig() {
|
122
|
123
|
@Override
|
123
|
124
|
public void config(PreparedStatement preparedStatement) throws SQLException {
|
124
|
|
preparedStatement.setString(1, bt);
|
|
125
|
preparedStatement.setString(1,platform);
|
|
126
|
preparedStatement.setString(2, bt);
|
125
|
127
|
}
|
126
|
128
|
});
|
127
|
129
|
}
|
|
@ -129,33 +131,33 @@ public class Main {
|
129
|
131
|
|
130
|
132
|
@Get
|
131
|
133
|
@Path("/ware/pq")
|
132
|
|
public PageQueryResult<WareSum> queryWare(@JdbcConn Connection con, @Nullable String name,@Nullable String author, @Nullable String bt, @Nullable String et, String orderBy, int pageSize, int pageNo) throws SQLException {
|
|
134
|
public PageQueryResult<WareSum> queryWare(@JdbcConn Connection con, String platform, @Nullable String name,@Nullable String author, @Nullable String bt, @Nullable String et, String orderBy, int pageSize, int pageNo) throws SQLException {
|
133
|
135
|
if (orderBy.equals("1")) {
|
134
|
|
return dayDao.queryWareTime(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
|
136
|
return dayDao.queryWareTime(con, platform, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
135
|
137
|
} else if (orderBy.equals("2")) {
|
136
|
|
return dayDao.queryWareViews(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
|
138
|
return dayDao.queryWareViews(con, platform, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
137
|
139
|
}
|
138
|
140
|
return null;
|
139
|
141
|
}
|
140
|
142
|
|
141
|
143
|
@Get
|
142
|
144
|
@Path("/ppatent/pq")
|
143
|
|
public PageQueryResult<PpatentSum> queryPpatent(@JdbcConn Connection con, @Nullable String name, @Nullable String author, @Nullable String bt, @Nullable String et, String orderBy, int pageSize, int pageNo) throws SQLException {
|
|
145
|
public PageQueryResult<PpatentSum> queryPpatent(@JdbcConn Connection con, String platform, @Nullable String name, @Nullable String author, @Nullable String bt, @Nullable String et, String orderBy, int pageSize, int pageNo) throws SQLException {
|
144
|
146
|
if (orderBy.equals("1")) {
|
145
|
|
return dayDao.queryPpatentTime(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
|
147
|
return dayDao.queryPpatentTime(con, platform, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
146
|
148
|
} else if (orderBy.equals("2")) {
|
147
|
|
return dayDao.queryPpatentViews(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
|
149
|
return dayDao.queryPpatentViews(con, platform, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
148
|
150
|
}
|
149
|
151
|
return null;
|
150
|
152
|
}
|
151
|
153
|
|
152
|
154
|
@Get
|
153
|
155
|
@Path("/resource/pq")
|
154
|
|
public PageQueryResult<ResourceSum> queryResource(@JdbcConn Connection con, @Nullable String name, @Nullable String author, @Nullable String bt, @Nullable String et, String orderBy, int pageSize, int pageNo) throws SQLException {
|
|
156
|
public PageQueryResult<ResourceSum> queryResource(@JdbcConn Connection con, String platform, @Nullable String name, @Nullable String author, @Nullable String bt, @Nullable String et, String orderBy, int pageSize, int pageNo) throws SQLException {
|
155
|
157
|
if (orderBy.equals("1")) {
|
156
|
|
return dayDao.queryResourceTime(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
|
158
|
return dayDao.queryResourceTime(con, platform, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
157
|
159
|
} else if (orderBy.equals("2")) {
|
158
|
|
return dayDao.queryResourceViews(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
|
160
|
return dayDao.queryResourceViews(con, platform, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
|
159
|
161
|
}
|
160
|
162
|
return null;
|
161
|
163
|
}
|