Преглед на файлове

服务专利资源的平台浏览量统计

XMTT преди 6 години
родител
ревизия
562836ded8

+ 18 - 15
src/main/java/com/ekexiu/portal/views/dao/DayDao.java

@ -25,11 +25,11 @@ import java.util.List;
25 25
26 26
@DAO
27 27
public abstract class DayDao {
28
    public List<DayData> query(Connection con, String tablePrefix, String[] srcs, String[] ids, String bt, String et, String sortStr) throws SQLException {
28
    public List<DayData> query(Connection con, String tablePrefix,String platform, String[] srcs, String[] ids, String bt, String et, String sortStr) throws SQLException {
29 29
        StringBuilder sb = new StringBuilder();
30 30
        boolean hasSource = srcs != null && srcs.length > 0;
31 31
        boolean hasid = ids != null && ids.length > 0;
32
        sb.append("SELECT ID,DAY,SOURCE,PV FROM ").append(tablePrefix).append("_DAY WHERE DAY>=? AND DAY<=?");
32
        sb.append("SELECT ID,DAY,SOURCE,PV FROM ").append(tablePrefix).append("_DAY WHERE PLATFORM = ? AND DAY>=? AND DAY<=?");
33 33
        if (hasSource) {
34 34
            sb.append(" AND SOURCE IN(");
35 35
            for (int i = 0; i < srcs.length; ++i) {
@ -50,6 +50,7 @@ public abstract class DayDao {
50 50
        int idx = 1;
51 51
        java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
52 52
        try {
53
            ps.setString(idx++,platform);
53 54
            ps.setString(idx++, bt);
54 55
            ps.setString(idx++, et);
55 56
            if (hasSource) {
@ -88,14 +89,15 @@ public abstract class DayDao {
88 89
        }
89 90
    }
90 91
91
    public List<DayData> query(Connection con, String tablePrefix, String id, String bt, String et) throws SQLException {
92
    public List<DayData> query(Connection con, String tablePrefix,String platform, String id, String bt, String et) throws SQLException {
92 93
        StringBuilder sb = new StringBuilder();
93
        sb.append("SELECT ID,DAY,SOURCE,PV FROM ").append(tablePrefix).append("_DAY WHERE DAY>=? AND DAY<=? AND ID=? ORDER BY DAY");
94
        sb.append("SELECT ID,DAY,SOURCE,PV FROM ").append(tablePrefix).append("_DAY WHERE PLATFORM = ? AND DAY>=? AND DAY<=? AND ID=? ORDER BY DAY");
94 95
        java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
95 96
        try {
96
            ps.setString(1, bt);
97
            ps.setString(2, et);
98
            ps.setString(3, id);
97
            ps.setString(1,platform);
98
            ps.setString(2, bt);
99
            ps.setString(3, et);
100
            ps.setString(4, id);
99 101
            List<DayData> ret = new LinkedList<DayData>();
100 102
            java.sql.ResultSet rs = ps.executeQuery();
101 103
            try {
@ -122,10 +124,10 @@ public abstract class DayDao {
122 124
        }
123 125
    }
124 126
125
    public List<DayData> query(Connection con, String tablePrefix, String bt, String et, @Nullable String[] srcs, int rows) throws SQLException {
127
    public List<DayData> query(Connection con, String tablePrefix,String platform, String bt, String et, @Nullable String[] srcs, int rows) throws SQLException {
126 128
        boolean hasSource = srcs != null && srcs.length > 0;
127 129
        StringBuilder sb = new StringBuilder();
128
        sb.append("SELECT ID,SUM(PV) PV FROM ").append(tablePrefix).append("_DAY WHERE DAY>=? AND DAY<=?");
130
        sb.append("SELECT ID,SUM(PV) PV FROM ").append(tablePrefix).append("_DAY WHERE PLATFORM = ? AND DAY>=? AND DAY<=?");
129 131
        if (hasSource) {
130 132
            sb.append(" AND SOURCE IN (");
131 133
            for (int i = 0; i < srcs.length; ++i) {
@ -137,6 +139,7 @@ public abstract class DayDao {
137 139
        java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
138 140
        try {
139 141
            int idx = 1;
142
            ps.setString(idx++,platform);
140 143
            ps.setString(idx++, bt);
141 144
            ps.setString(idx++, et);
142 145
            if (hasSource) {
@ -172,7 +175,7 @@ public abstract class DayDao {
172 175
    @PageQuery
173 176
    @OrderBy("ORDER BY c.MODIFY_TIME DESC NULLS LAST")
174 177
    @Exclude("descp")
175
    public abstract PageQueryResult<WareSum> queryWareTime(Connection con, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
178
    public abstract PageQueryResult<WareSum> queryWareTime(Connection con, String platform, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
176 179
            "CATEGORY='1' AND OWNER IN(SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
177 180
            "CATEGORY ='2' AND OWNER IN(SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)"},
178 181
            additional = 1, isAnd = false, force = true) String author, @Nullable @GtEq @Alias("modifyTime") String bt, @Nullable @Alias("modifyTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
@ -180,7 +183,7 @@ public abstract class DayDao {
180 183
    @PageQuery
181 184
    @OrderBy("ORDER BY cds.SUM DESC")
182 185
    @Exclude("descp")
183
    public abstract PageQueryResult<WareSum> queryWareViews(Connection con, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
186
    public abstract PageQueryResult<WareSum> queryWareViews(Connection con, String platform, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
184 187
            "CATEGORY='1' AND OWNER IN(SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
185 188
            "CATEGORY ='2' AND OWNER IN(SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)"},
186 189
            additional = 1, isAnd = false, force = true) String author, @Nullable @GtEq @Alias("modifyTime") String bt, @Nullable @Alias("modifyTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
@ -188,18 +191,18 @@ public abstract class DayDao {
188 191
    @Exclude("summary")
189 192
    @PageQuery
190 193
    @OrderBy("ORDER BY c.CREATE_TIME DESC NULLS LAST")
191
    public abstract PageQueryResult<PpatentSum> queryPpatentTime(Connection con, @Nullable @Like String name,@Nullable @Like String authors,@Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
194
    public abstract PageQueryResult<PpatentSum> queryPpatentTime(Connection con, String platform, @Nullable @Like String name,@Nullable @Like String authors,@Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
192 195
193 196
    @Exclude("summary")
194 197
    @PageQuery
195 198
    @OrderBy("ORDER BY cds.SUM DESC NULLS LAST")
196
    public abstract PageQueryResult<PpatentSum> queryPpatentViews(Connection con, @Nullable @Like String name,@Nullable @Like String authors,@Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
199
    public abstract PageQueryResult<PpatentSum> queryPpatentViews(Connection con, String platform, @Nullable @Like String name,@Nullable @Like String authors,@Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
197 200
198 201
199 202
    @PageQuery
200 203
    @OrderBy(" ORDER BY c.publish_time DESC NULLS LAST")
201 204
    @Exclude("descp")
202
    public abstract PageQueryResult<ResourceSum> queryResourceTime(Connection con, @Nullable @Like String resourceName,@Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
205
    public abstract PageQueryResult<ResourceSum> queryResourceTime(Connection con, String platform, @Nullable @Like String resourceName,@Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
203 206
            "RESOURCE_TYPE='1' AND PROFESSOR_ID IN(SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
204 207
            "RESOURCE_TYPE ='2' AND ORGANIZATION_ID IN(SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)"},
205 208
            additional = 1, isAnd = false, force = true) String author, @Nullable @GtEq @Alias("publishTime") String bt, @Nullable @Alias("publishTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
@ -207,7 +210,7 @@ public abstract class DayDao {
207 210
    @PageQuery
208 211
    @OrderBy(" ORDER BY cds.sum DESC")
209 212
    @Exclude("descp")
210
    public abstract PageQueryResult<ResourceSum> queryResourceViews(Connection con, @Nullable @Like String resourceName,@Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
213
    public abstract PageQueryResult<ResourceSum> queryResourceViews(Connection con, String platform, @Nullable @Like String resourceName,@Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
211 214
            "RESOURCE_TYPE='1' AND PROFESSOR_ID IN(SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
212 215
            "RESOURCE_TYPE ='2' AND ORGANIZATION_ID IN(SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)"},
213 216
            additional = 1, isAnd = false, force = true) String author, @Nullable @GtEq @Alias("publishTime") String bt, @Nullable @Alias("publishTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;

+ 12 - 0
src/main/java/com/ekexiu/portal/views/pojo/PpatentSum.java

@ -4,6 +4,7 @@ import com.ekexiu.portal.po.Ppatent;
4 4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5 5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6 6
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
7
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7 8
8 9
/**
9 10
 * Created by TT on 2019/3/14.
@ -11,6 +12,17 @@ import org.jfw.apt.orm.core.defaultImpl.IntHandler;
11 12
@ExtendView(fromSentence = "ppatent c INNER JOIN ppatent_day_sum cds on c.id = cds.id", tableAlias = "c")
12 13
public class PpatentSum extends Ppatent {
13 14
    private int sum;
15
    private String platform;
16
17
    @CalcColumn(handlerClass = StringHandler.class, column = "cds.platform")
18
    public String getPlatform() {
19
        return platform;
20
    }
21
22
    public void setPlatform(String platform) {
23
        this.platform = platform;
24
    }
25
14 26
15 27
    @CalcColumn(handlerClass = IntHandler.class, column = "cds.sum")
16 28
    public int getSum() {

+ 12 - 0
src/main/java/com/ekexiu/portal/views/pojo/ResourceSum.java

@ -4,6 +4,7 @@ import com.ekexiu.portal.po.Resource;
4 4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5 5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6 6
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
7
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7 8
8 9
/**
9 10
 * Created by TT on 2019/3/14.
@ -12,6 +13,17 @@ import org.jfw.apt.orm.core.defaultImpl.IntHandler;
12 13
public class ResourceSum extends Resource {
13 14
    private int sum;
14 15
16
    private String platform;
17
18
    @CalcColumn(handlerClass = StringHandler.class, column = "cds.platform")
19
    public String getPlatform() {
20
        return platform;
21
    }
22
23
    public void setPlatform(String platform) {
24
        this.platform = platform;
25
    }
26
15 27
    @CalcColumn(handlerClass = IntHandler.class, column = "cds.sum")
16 28
    public int getSum() {
17 29
        return sum;

+ 11 - 0
src/main/java/com/ekexiu/portal/views/pojo/WareSum.java

@ -4,6 +4,7 @@ import com.ekexiu.portal.ware.Ware;
4 4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5 5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6 6
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
7
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7 8
8 9
/**
9 10
 * Created by TT on 2019/3/14.
@ -11,6 +12,16 @@ import org.jfw.apt.orm.core.defaultImpl.IntHandler;
11 12
@ExtendView(fromSentence = "ware c INNER JOIN ware_day_sum cds on c.id = cds.id", tableAlias = "c")
12 13
public class WareSum extends Ware {
13 14
    private int sum;
15
    private String platform;
16
17
    @CalcColumn(handlerClass = StringHandler.class, column = "cds.platform")
18
    public String getPlatform() {
19
        return platform;
20
    }
21
22
    public void setPlatform(String platform) {
23
        this.platform = platform;
24
    }
14 25
15 26
    @CalcColumn(handlerClass = IntHandler.class, column = "cds.sum")
16 27
    public int getSum() {

+ 23 - 21
src/main/java/com/ekexiu/portal/views/service/Main.java

@ -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
    }