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

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

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

+ 17 - 11
src/main/java/com/ekexiu/portal/job/TaskJob.java

@ -1,5 +1,16 @@
1 1
package com.ekexiu.portal.job;
2 2

3
import com.ekexiu.portal.cms.TemplateService;
4
import com.ekexiu.portal.service.WeixinService;
5
import com.ekexiu.portal.views.handler.LogHandler;
6
import com.ekexiu.portal.views.service.Main;
7
import com.ekexiu.push.service.PushService;
8
import org.jfw.apt.annotation.Bean;
9
import org.jfw.util.bean.AfterBeanFactory;
10
import org.jfw.util.bean.BeanFactory;
11
import org.jfw.util.context.JfwAppContext;
12

13
import javax.sql.DataSource;
3 14
import java.text.DateFormat;
4 15
import java.text.ParseException;
5 16
import java.text.SimpleDateFormat;
@ -7,17 +18,6 @@ import java.util.Date;
7 18
import java.util.concurrent.ScheduledExecutorService;
8 19
import java.util.concurrent.TimeUnit;
9 20

10
import javax.sql.DataSource;
11

12
import org.jfw.apt.annotation.Bean;
13
import org.jfw.util.bean.AfterBeanFactory;
14
import org.jfw.util.bean.BeanFactory;
15
import org.jfw.util.context.JfwAppContext;
16

17
import com.ekexiu.portal.cms.TemplateService;
18
import com.ekexiu.portal.service.WeixinService;
19
import com.ekexiu.push.service.PushService;
20

21 21
@Bean
22 22
public class TaskJob implements AfterBeanFactory {
23 23
	private ScheduledExecutorService service;
@ -86,6 +86,12 @@ public class TaskJob implements AfterBeanFactory {
86 86
			}
87 87
		}, 0, templateService.getRate(), TimeUnit.MILLISECONDS);
88 88

89
		Main main = (Main) bf.getBean("com_ekexiu_portal_views_service_Main");
90
		for (LogHandler lh : main.getHandlers()) {
91
			service.scheduleAtFixedRate(lh, lh.getInitialDelay(), lh.getPeriod(), TimeUnit.MILLISECONDS);
92
			JfwAppContext.addDestoryed(lh);
93
		}
94

89 95
	}
90 96

91 97
	private static long getTimeMillis(String time) {

+ 49 - 0
src/main/java/com/ekexiu/portal/views/LogImageServlet.java

@ -0,0 +1,49 @@
1
package com.ekexiu.portal.views;
2
3
4
import com.ekexiu.portal.views.service.Main;
5
import org.jfw.util.context.JfwAppContext;
6
7
import javax.servlet.ServletException;
8
import javax.servlet.http.HttpServlet;
9
import javax.servlet.http.HttpServletRequest;
10
import javax.servlet.http.HttpServletResponse;
11
import java.io.IOException;
12
import java.io.OutputStream;
13
14
public class LogImageServlet extends HttpServlet {
15
	private static final long serialVersionUID = 1L;
16
17
	private static byte[] png = new byte[] { -119, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0, 1, 0, 0, 0, 1, 8, 2, 0, 0, 0, -112, 119,
18
			83, -34, 0, 0, 0, 1, 115, 82, 71, 66, 0, -82, -50, 28, -23, 0, 0, 0, 4, 103, 65, 77, 65, 0, 0, -79, -113, 11, -4, 97, 5, 0, 0, 0, 9, 112, 72, 89,
19
			115, 0, 0, 14, -61, 0, 0, 14, -61, 1, -57, 111, -88, 100, 0, 0, 0, 12, 73, 68, 65, 84, 24, 87, 99, -8, -1, -1, 63, 0, 5, -2, 2, -2, -89, 53, -127,
20
			-124, 0, 0, 0, 0, 73, 69, 78, 68, -82, 66, 96, -126 };
21
	private static int png_size = png.length;
22
23
	private Main main;
24
25
	@Override
26
	public void init() throws ServletException {
27
		main = (Main) JfwAppContext.getBeanFactory().getBean("com_ekexiu_portal_views_service_Main");
28
	}
29
30
	protected void doGet(HttpServletRequest request, HttpServletResponse res) throws ServletException, IOException {
31
		main.log(request.getParameterMap());
32
		res.setDateHeader("Expires", 0);
33
		res.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
34
		res.addHeader("Cache-Control", "post-check=0, pre-check=0");
35
		res.setHeader("Pragma", "no-cache");
36
		res.setContentType("image/png");
37
		res.setContentLength(png_size);
38
		OutputStream out = res.getOutputStream();
39
		try {
40
			out.write(png);
41
		} finally {
42
			try {
43
				out.close();
44
			} catch (Exception e) {
45
			}
46
		}
47
48
	}
49
}

+ 216 - 0
src/main/java/com/ekexiu/portal/views/dao/DayDao.java

@ -0,0 +1,216 @@
1
package com.ekexiu.portal.views.dao;
2
3
4
import com.ekexiu.portal.views.pojo.DayData;
5
import com.ekexiu.portal.views.pojo.PpatentSum;
6
import com.ekexiu.portal.views.pojo.ResourceSum;
7
import com.ekexiu.portal.views.pojo.WareSum;
8
import org.jfw.apt.annotation.Nullable;
9
import org.jfw.apt.orm.annotation.dao.DAO;
10
import org.jfw.apt.orm.annotation.dao.method.Exclude;
11
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
12
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
13
import org.jfw.apt.orm.annotation.dao.param.Alias;
14
import org.jfw.apt.orm.annotation.dao.param.GroupSqlColumn;
15
import org.jfw.apt.orm.annotation.dao.param.GtEq;
16
import org.jfw.apt.orm.annotation.dao.param.Like;
17
import org.jfw.apt.orm.annotation.dao.param.LtEq;
18
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
19
import org.jfw.util.PageQueryResult;
20
21
import java.sql.Connection;
22
import java.sql.SQLException;
23
import java.util.LinkedList;
24
import java.util.List;
25
26
@DAO
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 {
29
        StringBuilder sb = new StringBuilder();
30
        boolean hasSource = srcs != null && srcs.length > 0;
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<=?");
33
        if (hasSource) {
34
            sb.append(" AND SOURCE IN(");
35
            for (int i = 0; i < srcs.length; ++i) {
36
                sb.append("?,");
37
            }
38
            sb.setCharAt(sb.length() - 1, ')');
39
        }
40
        if (hasid) {
41
            sb.append(" AND ID IN(");
42
            for (int i = 0; i < ids.length; ++i) {
43
                sb.append("?,");
44
            }
45
            sb.setCharAt(sb.length() - 1, ')');
46
        }
47
        if (sortStr != null && sortStr.trim().length() > 0) {
48
            sb.append(" ORDER BY ").append(sortStr);
49
        }
50
        int idx = 1;
51
        java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
52
        try {
53
            ps.setString(idx++, bt);
54
            ps.setString(idx++, et);
55
            if (hasSource) {
56
                for (int i = 0; i < srcs.length; ++i) {
57
                    ps.setString(idx++, srcs[i]);
58
                }
59
            }
60
            if (hasid) {
61
                for (int i = 0; i < ids.length; ++i) {
62
                    ps.setString(idx++, ids[i]);
63
                }
64
            }
65
            List<DayData> ret = new LinkedList<DayData>();
66
            java.sql.ResultSet rs = ps.executeQuery();
67
            try {
68
                while (rs.next()) {
69
                    DayData dd = new DayData();
70
                    dd.setId(rs.getString(1));
71
                    dd.setDay(rs.getString(2));
72
                    dd.setSource(rs.getString(3));
73
                    dd.setPv(rs.getInt(4));
74
                    ret.add(dd);
75
                }
76
                return ret;
77
            } finally {
78
                try {
79
                    rs.close();
80
                } catch (Exception _m_2) {
81
                }
82
            }
83
        } finally {
84
            try {
85
                ps.close();
86
            } catch (Exception _m_3) {
87
            }
88
        }
89
    }
90
91
    public List<DayData> query(Connection con, String tablePrefix, String id, String bt, String et) throws SQLException {
92
        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
        java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
95
        try {
96
            ps.setString(1, bt);
97
            ps.setString(2, et);
98
            ps.setString(3, id);
99
            List<DayData> ret = new LinkedList<DayData>();
100
            java.sql.ResultSet rs = ps.executeQuery();
101
            try {
102
                while (rs.next()) {
103
                    DayData dd = new DayData();
104
                    dd.setId(rs.getString(1));
105
                    dd.setDay(rs.getString(2));
106
                    dd.setSource(rs.getString(3));
107
                    dd.setPv(rs.getInt(4));
108
                    ret.add(dd);
109
                }
110
                return ret;
111
            } finally {
112
                try {
113
                    rs.close();
114
                } catch (Exception _m_2) {
115
                }
116
            }
117
        } finally {
118
            try {
119
                ps.close();
120
            } catch (Exception _m_3) {
121
            }
122
        }
123
    }
124
125
    public List<DayData> query(Connection con, String tablePrefix, String bt, String et, @Nullable String[] srcs, int rows) throws SQLException {
126
        boolean hasSource = srcs != null && srcs.length > 0;
127
        StringBuilder sb = new StringBuilder();
128
        sb.append("SELECT ID,SUM(PV) PV FROM ").append(tablePrefix).append("_DAY WHERE DAY>=? AND DAY<=?");
129
        if (hasSource) {
130
            sb.append(" AND SOURCE IN (");
131
            for (int i = 0; i < srcs.length; ++i) {
132
                sb.append("?,");
133
            }
134
            sb.setCharAt(sb.length() - 1, ')');
135
        }
136
        sb.append(" GROUP BY ID ORDER BY PV DESC LIMIT ?");
137
        java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
138
        try {
139
            int idx = 1;
140
            ps.setString(idx++, bt);
141
            ps.setString(idx++, et);
142
            if (hasSource) {
143
                for (String src : srcs)
144
                    ps.setString(idx++, src);
145
            }
146
            ps.setInt(idx++, rows);
147
            List<DayData> ret = new LinkedList<DayData>();
148
            java.sql.ResultSet rs = ps.executeQuery();
149
            try {
150
                while (rs.next()) {
151
                    DayData dd = new DayData();
152
                    dd.setId(rs.getString(1));
153
                    dd.setPv(rs.getInt(2));
154
                    ret.add(dd);
155
                }
156
                return ret;
157
            } finally {
158
                try {
159
                    rs.close();
160
                } catch (Exception _m_2) {
161
                }
162
            }
163
        } finally {
164
            try {
165
                ps.close();
166
            } catch (Exception _m_3) {
167
            }
168
        }
169
    }
170
171
172
    @PageQuery
173
    @OrderBy("ORDER BY c.MODIFY_TIME DESC NULLS LAST")
174
    @Exclude("descp")
175
    public abstract PageQueryResult<WareSum> queryWareTime(Connection con, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
176
            "CATEGORY='1' AND OWNER IN(SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
177
            "CATEGORY ='2' AND OWNER IN(SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)"},
178
            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;
179
180
    @PageQuery
181
    @OrderBy("ORDER BY cds.SUM DESC")
182
    @Exclude("descp")
183
    public abstract PageQueryResult<WareSum> queryWareViews(Connection con, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
184
            "CATEGORY='1' AND OWNER IN(SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
185
            "CATEGORY ='2' AND OWNER IN(SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)"},
186
            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;
187
188
    @Exclude("summary")
189
    @PageQuery
190
    @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;
192
193
    @Exclude("summary")
194
    @PageQuery
195
    @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;
197
198
199
    @PageQuery
200
    @OrderBy(" ORDER BY c.publish_time DESC NULLS LAST")
201
    @Exclude("descp")
202
    public abstract PageQueryResult<ResourceSum> queryResourceTime(Connection con, @Nullable @Like String resourceName,@Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
203
            "RESOURCE_TYPE='1' AND PROFESSOR_ID IN(SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
204
            "RESOURCE_TYPE ='2' AND ORGANIZATION_ID IN(SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)"},
205
            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;
206
207
    @PageQuery
208
    @OrderBy(" ORDER BY cds.sum DESC")
209
    @Exclude("descp")
210
    public abstract PageQueryResult<ResourceSum> queryResourceViews(Connection con, @Nullable @Like String resourceName,@Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {
211
            "RESOURCE_TYPE='1' AND PROFESSOR_ID IN(SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
212
            "RESOURCE_TYPE ='2' AND ORGANIZATION_ID IN(SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)"},
213
            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;
214
215
216
}

+ 49 - 0
src/main/java/com/ekexiu/portal/views/handler/LogHandler.java

@ -0,0 +1,49 @@
1
package com.ekexiu.portal.views.handler;
2
3
4
import com.ekexiu.portal.views.pojo.LogEntry;
5
6
import java.util.Map;
7
import java.util.concurrent.ConcurrentLinkedQueue;
8
9
10
public abstract class LogHandler  implements Runnable{
11
12
13
	private long initialDelay;
14
	private long period;
15
	
16
	
17
	
18
19
	
20
	public long getInitialDelay() {
21
		return initialDelay;
22
	}
23
24
	public void setInitialDelay(long initialDelay) {
25
		this.initialDelay = initialDelay;
26
	}
27
28
	public long getPeriod() {
29
		return period;
30
	}
31
32
	public void setPeriod(long period) {
33
		this.period = period;
34
	}
35
36
	protected ConcurrentLinkedQueue<LogEntry> queue = new ConcurrentLinkedQueue<LogEntry>();
37
	
38
	public void add(Map<String,String[]> map){
39
		if(this.match(map.get("__lt"))){
40
			queue.offer(LogEntry.build(map));
41
		}
42
	}
43
	
44
	public abstract boolean match(String[] logType);
45
46
	
47
48
	
49
}

+ 56 - 0
src/main/java/com/ekexiu/portal/views/handler/db/DbLogHandler.java

@ -0,0 +1,56 @@
1
package com.ekexiu.portal.views.handler.db;
2
3
4
import com.ekexiu.portal.views.handler.LogHandler;
5
import org.jfw.util.log.LogFactory;
6
import org.jfw.util.log.Logger;
7
8
import javax.sql.DataSource;
9
import java.sql.Connection;
10
import java.sql.SQLException;
11
12
public abstract class DbLogHandler extends LogHandler {
13
14
	private static final Logger log = LogFactory.getLog(DbLogHandler.class);
15
16
	private DataSource dataSource;
17
	protected Connection con;
18
19
	public DataSource getDataSource() {
20
		return dataSource;
21
	}
22
23
	public void setDataSource(DataSource dataSource) {
24
		this.dataSource = dataSource;
25
	}
26
27
	public abstract boolean pre() throws Exception;;
28
	public abstract void stroe() throws SQLException;
29
	public abstract void afterCommit();
30
	@Override
31
	synchronized public void run() {
32
		try {
33
			if(!this.pre())return;
34
			this.con = this.dataSource.getConnection();
35
			try {
36
				this.stroe();
37
				con.commit();
38
				this.afterCommit();
39
			}catch(Exception e){
40
				try {
41
					con.rollback();
42
				} catch (Exception ee) {
43
				}
44
				throw e;
45
			}
46
			finally {
47
				try {
48
					con.close();
49
				} catch (Exception e) {
50
				}
51
			}
52
		} catch (Exception e) {
53
			log.error("hand runnable.run error",e);
54
		}
55
	}
56
}

+ 179 - 0
src/main/java/com/ekexiu/portal/views/handler/db/TimeLogHandler.java

@ -0,0 +1,179 @@
1
package com.ekexiu.portal.views.handler.db;
2
3
4
import com.ekexiu.portal.views.pojo.LogEntry;
5
6
import java.sql.PreparedStatement;
7
import java.sql.SQLException;
8
import java.util.HashMap;
9
import java.util.Map;
10
11
public class TimeLogHandler extends DbLogHandler {
12
13
    private String logType;
14
    private String logTypeAlias;
15
    private String tableName;
16
17
    private String updateSql;
18
    private String insertSql;
19
    private String updateSumSql;
20
    private String insertSumSql;
21
22
    protected Map<String, Integer> cache = new HashMap<String, Integer>();
23
24
    public String getTableName() {
25
        return tableName;
26
27
    }
28
29
    public void setTableName(String tableName) {
30
        this.tableName = tableName;
31
        this.updateSql = "UPDATE " + this.tableName + " SET PV= PV+? WHERE ID=? AND DAY =? AND SOURCE =? AND PLATFORM = ?";
32
        this.insertSql = "INSERT INTO " + this.tableName + " (PV,ID,DAY,SOURCE,PLATFORM) VALUES (?,?,?,?,?)";
33
        this.updateSumSql = "UPDATE " + this.tableName + "_SUM SET SUM=SUM+? WHERE ID = ? AND PLATFORM = ?";
34
        this.insertSumSql = "INSERT INTO " + this.tableName + "_SUM (ID,SUM,PLATFORM) VALUES (?,?,?)";
35
    }
36
37
    public String getLogType() {
38
        return logType;
39
    }
40
41
    public void setLogType(String logType) {
42
        this.logType = logType;
43
    }
44
45
    public String getLogTypeAlias() {
46
        return logTypeAlias;
47
    }
48
49
    public void setLogTypeAlias(String logTypeAlias) {
50
        this.logTypeAlias = logTypeAlias;
51
    }
52
53
    @Override
54
    public boolean pre() throws Exception {
55
        LogEntry le;
56
        long num = 0;
57
        while ((le = this.queue.poll()) != null) {
58
            String day = le.getTimeString();
59
            String id = le.getString("id");
60
            String source = le.getString("src");
61
            String platform = le.getString("platform");
62
            if (id != null && id.length() > 0 && source != null && source.length() == 1 && platform != null && platform.length() > 0) {
63
                ++num;
64
                day = day + source + platform + id;
65
                Integer pv = cache.get(day);
66
                if (pv == null) {
67
                    pv = 1;
68
                } else {
69
                    pv = pv + 1;
70
                }
71
                cache.put(day, pv);
72
            }
73
        }
74
        return num > 0;
75
    }
76
77
    private boolean update(String id, String day, String source, int pv,String platform) throws SQLException {
78
        PreparedStatement ps = this.con.prepareStatement(this.updateSql);
79
80
        try {
81
            ps.setInt(1, pv);
82
            ps.setString(2, id);
83
            ps.setString(3, day);
84
            ps.setString(4, source);
85
            ps.setString(5,platform);
86
            return ps.executeUpdate() == 1;
87
        } finally {
88
            try {
89
                ps.close();
90
            } catch (Exception e) {
91
            }
92
        }
93
    }
94
95
    private boolean updateSum(String id, int pv,String platform) throws SQLException {
96
        PreparedStatement ps = this.con.prepareStatement(this.updateSumSql);
97
98
        try {
99
            ps.setInt(1, pv);
100
            ps.setString(2, id);
101
            ps.setString(3, platform);
102
            return ps.executeUpdate() == 1;
103
        } finally {
104
            try {
105
                ps.close();
106
            } catch (Exception e) {
107
            }
108
        }
109
    }
110
111
    public void insert(String id, String day, String source, int pv,String platform) throws SQLException {
112
        PreparedStatement ps = this.con.prepareStatement(this.insertSql);
113
        try {
114
            ps.setInt(1, pv);
115
            ps.setString(2, id);
116
            ps.setString(3, day);
117
            ps.setString(4, source);
118
            ps.setString(5, platform);
119
            ps.executeUpdate();
120
        } finally {
121
            try {
122
                ps.close();
123
            } catch (Exception e) {
124
            }
125
        }
126
127
    }
128
129
    public void insertSum(String id,int pv,String platform) throws SQLException {
130
        PreparedStatement ps = this.con.prepareStatement(this.insertSumSql);
131
        try {
132
            ps.setString(1, id);
133
            ps.setInt(2, pv);
134
            ps.setString(3, platform);
135
            ps.executeUpdate();
136
        } finally {
137
            try {
138
                ps.close();
139
            } catch (Exception e) {
140
            }
141
        }
142
143
    }
144
145
    @Override
146
    public void stroe() throws SQLException {
147
        for (Map.Entry<String, Integer> entry : cache.entrySet()) {
148
            String day = entry.getKey();
149
            int pv = entry.getValue().intValue();
150
            String source = day.substring(8, 9);
151
            String platform = day.substring(9, 41);
152
            String id = day.substring(41);
153
            day = day.substring(0, 8);
154
            if (!this.updateSum(id, pv,platform)) {
155
                this.insertSum(id,pv, platform);
156
            }
157
            if (!this.update(id, day, source, pv,platform)) {
158
                this.insert(id, day, source, pv,platform);
159
            }
160
        }
161
    }
162
163
    @Override
164
    public void afterCommit() {
165
        this.cache.clear();
166
    }
167
168
    @Override
169
    public boolean match(String[] lt) {
170
        return lt != null && lt.length == 1 && (this.logType.equals(lt[0]) || this.logTypeAlias.equals(lt[0]));
171
    }
172
173
    @Override
174
    public String toString() {
175
        return this.getClass().getName() + "[tableName:" + this.tableName + ",logType:" + this.logType + ",logTypeAlias:" + this.logTypeAlias + "]";
176
    }
177
178
179
}

+ 32 - 0
src/main/java/com/ekexiu/portal/views/pojo/DayData.java

@ -0,0 +1,32 @@
1
package com.ekexiu.portal.views.pojo;
2
3
public class DayData {
4
	private String id;
5
	private String day;
6
	private String source;
7
	private int pv;
8
	public String getId() {
9
		return id;
10
	}
11
	public void setId(String id) {
12
		this.id = id;
13
	}
14
	public String getDay() {
15
		return day;
16
	}
17
	public void setDay(String day) {
18
		this.day = day;
19
	}
20
	public String getSource() {
21
		return source;
22
	}
23
	public void setSource(String source) {
24
		this.source = source;
25
	}
26
	public int getPv() {
27
		return pv;
28
	}
29
	public void setPv(int pv) {
30
		this.pv = pv;
31
	}
32
}

+ 36 - 0
src/main/java/com/ekexiu/portal/views/pojo/LogEntry.java

@ -0,0 +1,36 @@
1
package com.ekexiu.portal.views.pojo;
2
3
import org.jfw.util.DateUtil;
4
5
import java.util.HashMap;
6
import java.util.Map;
7
8
public class LogEntry {
9
	private long time;
10
	private Map<String,String[]> data = new HashMap<String,String[]>();
11
12
	
13
	public String getString(String key){
14
		String[] sa = data.get(key);
15
		return sa==null || sa.length==0 ?null:sa[0];
16
	}
17
	public String[] getStringArray(String key){
18
		return data.get(key);
19
	}
20
	public long getTime(){
21
		return time;
22
	}
23
	public String getTimeString(){
24
		return DateUtil.formatDate(this.time);
25
	}
26
27
	public static LogEntry build(Map<String,String[]> data){
28
		LogEntry le = new LogEntry();
29
		le.time = System.currentTimeMillis();		
30
		le.data.putAll(data);
31
		return le;
32
	}
33
	
34
	
35
	
36
}

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

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

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

@ -0,0 +1,23 @@
1
package com.ekexiu.portal.views.pojo;
2
3
import com.ekexiu.portal.po.Resource;
4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6
import org.jfw.apt.orm.core.defaultImpl.IntHandler;
7
8
/**
9
 * Created by TT on 2019/3/14.
10
 */
11
@ExtendView(fromSentence = "resource c INNER JOIN resource_day_sum cds on c.resource_id = cds.id", tableAlias = "c")
12
public class ResourceSum extends Resource {
13
    private int sum;
14
15
    @CalcColumn(handlerClass = IntHandler.class, column = "cds.sum")
16
    public int getSum() {
17
        return sum;
18
    }
19
20
    public void setSum(int sum) {
21
        this.sum = sum;
22
    }
23
}

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

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

+ 170 - 0
src/main/java/com/ekexiu/portal/views/service/Main.java

@ -0,0 +1,170 @@
1
package com.ekexiu.portal.views.service;
2
3
import com.ekexiu.portal.views.dao.DayDao;
4
import com.ekexiu.portal.views.handler.LogHandler;
5
import com.ekexiu.portal.views.pojo.DayData;
6
import com.ekexiu.portal.views.pojo.PpatentSum;
7
import com.ekexiu.portal.views.pojo.ResourceSum;
8
import com.ekexiu.portal.views.pojo.WareSum;
9
import org.jfw.apt.annotation.Autowrie;
10
import org.jfw.apt.annotation.DefaultValue;
11
import org.jfw.apt.annotation.Nullable;
12
import org.jfw.apt.web.annotation.Path;
13
import org.jfw.apt.web.annotation.operate.Get;
14
import org.jfw.apt.web.annotation.param.JdbcConn;
15
import org.jfw.apt.web.annotation.param.ParameterMap;
16
import org.jfw.util.PageQueryResult;
17
import org.jfw.util.exception.JfwBaseException;
18
import org.jfw.util.jdbc.JdbcUtil;
19
import org.jfw.util.jdbc.PreparedStatementConfig;
20
21
import java.sql.Connection;
22
import java.sql.PreparedStatement;
23
import java.sql.SQLException;
24
import java.util.List;
25
import java.util.Map;
26
27
@Path("/log")
28
public class Main {
29
    public static final String MAX_DAY = "99999999";
30
    public static final String MIN_DAY = "00000000";
31
32
33
    private List<String> tns;
34
    private List<LogHandler> handlers;
35
36
    @Autowrie
37
    private DayDao dayDao;
38
39
    public List<String> getTns() {
40
        return tns;
41
    }
42
43
    public void setTns(List<String> tns) {
44
        this.tns = tns;
45
    }
46
47
    public List<LogHandler> getHandlers() {
48
        return handlers;
49
    }
50
51
    public void setHandlers(List<LogHandler> handlers) {
52
        this.handlers = handlers;
53
    }
54
55
    public DayDao getDayDao() {
56
        return dayDao;
57
    }
58
59
    public void setDayDao(DayDao dayDao) {
60
        this.dayDao = dayDao;
61
    }
62
63
    @Get
64
    @Path()
65
    public void log(@ParameterMap Map<String, String[]> pm) {
66
        for (LogHandler lh : this.handlers) {
67
            lh.add(pm);
68
        }
69
    }
70
71
    @Get
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,
74
                               @DefaultValue("com.ekexiu.portal.views.service.Main.MAX_DAY") String et, @Nullable String sort) throws SQLException, JfwBaseException {
75
        if (!this.tns.contains(tn)) {
76
            throw new JfwBaseException(-101, "unavailable tn");
77
        }
78
        return dayDao.query(con, tn, src, id, bt, et, sort);
79
    }
80
81
    @Get
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,
84
                               @DefaultValue("com.ekexiu.portal.views.service.Main.MAX_DAY") String et) throws SQLException, JfwBaseException {
85
        if (!this.tns.contains(tn)) {
86
            throw new JfwBaseException(-101, "unavailable tn");
87
        }
88
        return dayDao.query(con, tn, id, bt, et);
89
    }
90
91
    @Get
92
    @Path("/qo/sum")
93
    public int query(@JdbcConn Connection con, String tn, final String id) throws SQLException,JfwBaseException {
94
        if (!this.tns.contains(tn)) {
95
            throw new JfwBaseException(-101, "unavailable tn");
96
        }
97
        return JdbcUtil.queryInt(con, "SELECT SUM FROM " + tn + "_DAY_SUM WHERE ID = ?", new PreparedStatementConfig() {
98
            @Override
99
            public void config(PreparedStatement preparedStatement) throws SQLException {
100
                preparedStatement.setString(1, id);
101
            }
102
        }, 0);
103
    }
104
105
    @Get
106
    @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
                               @DefaultValue("com.ekexiu.portal.views.service.Main.MAX_DAY") String et, @DefaultValue("20") int rows) throws SQLException, JfwBaseException {
109
        if (!this.tns.contains(tn)) {
110
            throw new JfwBaseException(-101, "unavailable tn");
111
        }
112
        return dayDao.query(con, tn, bt, et, src, rows);
113
    }
114
115
    @Get
116
    @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
        if (!this.tns.contains(tn)) {
119
            throw new JfwBaseException(-101, "unavailable tn");
120
        }
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
            @Override
123
            public void config(PreparedStatement preparedStatement) throws SQLException {
124
                preparedStatement.setString(1, bt);
125
            }
126
        });
127
    }
128
129
130
    @Get
131
    @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 {
133
        if (orderBy.equals("1")) {
134
            return dayDao.queryWareTime(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
135
        } else if (orderBy.equals("2")) {
136
            return dayDao.queryWareViews(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%",  bt, et, pageSize, pageNo);
137
        }
138
        return null;
139
    }
140
141
    @Get
142
    @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 {
144
        if (orderBy.equals("1")) {
145
            return dayDao.queryPpatentTime(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
146
        } else if (orderBy.equals("2")) {
147
            return dayDao.queryPpatentViews(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%",  bt, et, pageSize, pageNo);
148
        }
149
        return null;
150
    }
151
152
    @Get
153
    @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 {
155
        if (orderBy.equals("1")) {
156
            return dayDao.queryResourceTime(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%", bt, et, pageSize, pageNo);
157
        } else if (orderBy.equals("2")) {
158
            return dayDao.queryResourceViews(con, name == null ? null : "%" + name + "%", author == null ? null : "%" + author + "%",  bt, et, pageSize, pageNo);
159
        }
160
        return null;
161
    }
162
163
164
165
166
167
168
169
170
}

+ 55 - 4
src/main/resources/database.sql

@ -2366,13 +2366,13 @@ ALTER TABLE DEMAND ALTER COLUMN SOURCE SET  NOT NULL;
2366 2366

2367 2367
ALTER TABLE public.article ADD owner_id CHAR(32) NULL;
2368 2368

2369
UPDATE public.article set owner_id = professor_id WHERE article_type = '1'
2369
UPDATE public.article set owner_id = professor_id WHERE article_type = '1';
2370 2370

2371
UPDATE public.article SET owner_id = org_id WHERE article_type = '2'
2371
UPDATE public.article SET owner_id = org_id WHERE article_type = '2';
2372 2372

2373 2373
ALTER TABLE public.article DROP professor_id;
2374 2374

2375
ALTER TABLE public.article DROP org_id
2375
ALTER TABLE public.article DROP org_id;
2376 2376

2377 2377

2378 2378
--modify begin at 2.50
@ -2511,4 +2511,55 @@ CREATE TABLE PLATFORM_MSG_IDX (
2511 2511
        OP_TIME TEXT NOT NULL,
2512 2512
        UNREAD INTEGER NOT NULL,
2513 2513
        ACTIVED CHAR(1) NOT NULL);
2514
ALTER TABLE PLATFORM_MSG_IDX ADD PRIMARY KEY (PID,REQUESTOR,PROVIDER);
2514
ALTER TABLE PLATFORM_MSG_IDX ADD PRIMARY KEY (PID,REQUESTOR,PROVIDER);
2515

2516

2517
--modify begin at viewlog
2518

2519
CREATE TABLE WARE_DAY
2520
(
2521
	ID TEXT    NOT NULL,
2522
	PV INTEGER NOT NULL,
2523
	DAY TEXT    NOT NULL,
2524
	SOURCE TEXT    NOT NULL,
2525
	PLATFORM TEXT NOT NULL
2526
);
2527

2528
CREATE TABLE WARE_DAY_SUM(
2529
	ID TEXT NOT NULL,
2530
	PLATFORM TEXT NOT NULL,
2531
	SUM INTEGER NOT NULL
2532
);
2533
ALTER TABLE WARE_DAY_SUM ADD PRIMARY KEY (ID,PLATFORM);
2534

2535
CREATE TABLE PPATENT_DAY
2536
(
2537
	ID TEXT    NOT NULL,
2538
	PV INTEGER NOT NULL,
2539
	DAY TEXT    NOT NULL,
2540
	SOURCE TEXT    NOT NULL,
2541
	PLATFORM TEXT NOT NULL
2542
);
2543

2544
CREATE TABLE PPATENT_DAY_SUM(
2545
	ID TEXT NOT NULL,
2546
	PLATFORM TEXT NOT NULL,
2547
	SUM INTEGER NOT NULL
2548
);
2549
ALTER TABLE PPATENT_DAY_SUM ADD PRIMARY KEY (ID,PLATFORM);
2550

2551
CREATE TABLE RESOURCE_DAY
2552
(
2553
	ID TEXT    NOT NULL,
2554
	PV INTEGER NOT NULL,
2555
	DAY TEXT    NOT NULL,
2556
	SOURCE TEXT    NOT NULL,
2557
	PLATFORM TEXT NOT NULL
2558
);
2559

2560
CREATE TABLE RESOURCE_DAY_SUM(
2561
	ID TEXT NOT NULL,
2562
	PLATFORM TEXT NOT NULL,
2563
	SUM INTEGER NOT NULL
2564
);
2565
ALTER TABLE RESOURCE_DAY_SUM ADD PRIMARY KEY (ID,PLATFORM);

+ 9 - 0
src/main/webapp/WEB-INF/web.xml

@ -65,6 +65,11 @@
65 65
		<servlet-class>com.ekexiu.portal.util.ProfessorPdfServlet</servlet-class>
66 66
		<load-on-startup>7</load-on-startup>
67 67
	</servlet>
68
	<servlet>
69
		<servlet-name>img</servlet-name>
70
		<servlet-class>com.ekexiu.portal.views.LogImageServlet</servlet-class>
71
		<load-on-startup>8</load-on-startup>
72
	</servlet>
68 73
	<servlet-mapping>
69 74
		<servlet-name>ajax</servlet-name>
70 75
		<url-pattern>/ajax/*</url-pattern>
@ -97,4 +102,8 @@
97 102
		<servlet-name>ProfessorPdfServlet</servlet-name>
98 103
		<url-pattern>/pdf/professor</url-pattern>
99 104
	</servlet-mapping>
105
	<servlet-mapping>
106
		<servlet-name>img</servlet-name>
107
		<url-pattern>/ajax/img</url-pattern>
108
	</servlet-mapping>
100 109
</web-app>