XMTT 6 gadi atpakaļ
vecāks
revīzija
c1484ec88a

+ 13 - 7
src/main/java/com/ekexiu/project/job/TaskJob.java

@ -1,17 +1,17 @@
1 1
package com.ekexiu.project.job;
2 2

3
import java.sql.Connection;
4
import java.util.concurrent.ScheduledExecutorService;
5

6
import javax.sql.DataSource;
7

3
import com.ekexiu.project.platform.system.service.DictService;
4
import com.ekexiu.project.platform.views.handler.LogHandler;
5
import com.ekexiu.project.platform.views.service.Main;
8 6
import org.jfw.util.bean.AfterBeanFactory;
9 7
import org.jfw.util.bean.BeanFactory;
10 8
import org.jfw.util.context.JfwAppContext;
11 9
import org.jfw.util.jdbc.JdbcUtil;
12 10

13
import com.ekexiu.project.platform.system.service.DictService;
14

11
import javax.sql.DataSource;
12
import java.sql.Connection;
13
import java.util.concurrent.ScheduledExecutorService;
14
import java.util.concurrent.TimeUnit;
15 15

16 16

17 17
public class TaskJob implements AfterBeanFactory {
@ -31,6 +31,12 @@ public class TaskJob implements AfterBeanFactory {
31 31
		}finally{
32 32
			JdbcUtil.close(con);
33 33
		}
34

35
		Main main = (Main) bf.getBean("com_ekexiu_project_platform_views_service_Main");
36
		for (LogHandler lh : main.getHandlers()) {
37
			service.scheduleAtFixedRate(lh, lh.getInitialDelay(), lh.getPeriod(), TimeUnit.MILLISECONDS);
38
			JfwAppContext.addDestoryed(lh);
39
		}
34 40
	}
35 41

36 42


+ 31 - 1
src/main/java/com/ekexiu/project/platform/system/service/SysService.java

@ -1,5 +1,6 @@
1 1
package com.ekexiu.project.platform.system.service;
2 2
3
import com.ekexiu.project.platform.company.CompanyService;
3 4
import com.ekexiu.project.platform.system.dao.UserDao;
4 5
import com.ekexiu.project.platform.system.po.InvalidUser;
5 6
import com.ekexiu.project.platform.system.po.Manager;
@ -9,6 +10,7 @@ import com.ekexiu.project.platform.system.vo.ManagerInfo;
9 10
import com.ekexiu.project.platform.system.vo.SessionManager;
10 11
import com.ekexiu.project.platform.system.vo.SessionUser;
11 12
import org.jfw.apt.annotation.Autowrie;
13
import org.jfw.apt.annotation.DefaultValue;
12 14
import org.jfw.apt.annotation.Nullable;
13 15
import org.jfw.apt.web.annotation.LoginUser;
14 16
import org.jfw.apt.web.annotation.Path;
@ -168,14 +170,42 @@ public class SysService {
168 170
    @Path("/qo")
169 171
    public SessionManager managerQueryOne(@JdbcConn Connection con, String id) throws SQLException {
170 172
        ManagerInfo managerInfo = userDao.managerQuery(con, id);
173
        if(managerInfo==null){
174
            return null;
175
        }
171 176
        List<String> rightList = userDao.right(con, managerInfo.getId());
172 177
        managerInfo.setRightCode(rightList.toArray(new String[0]));
173 178
        return makeSessionManager(managerInfo);
174 179
    }
175 180
181
    @LoginUser
182
    @Path("/name")
183
    @Get
184
    public List<CompanyService.TypeaheadItem> queryName(@JdbcConn Connection con, @DefaultValue("\"%\"") String name, int size) throws SQLException {
185
        if (!name.equals("%")) {
186
            name = "%" + name + "%";
187
        }
188
        List<CompanyService.TypeaheadItem> ret = new ArrayList<>(size);
189
        final String finalKey = name;
190
        List<Map<String, Object>> typehead = JdbcUtil.queryMaps(con, "SELECT NAME,ID FROM manager m LEFT JOIN sys_right s on m.id = s.uid where s.right_code = '1' and m.name like ? ", new PreparedStatementConfig() {
191
            @Override
192
            public void config(PreparedStatement preparedStatement) throws SQLException {
193
                preparedStatement.setString(1, finalKey);
194
            }
195
        });
196
197
        for (Map<String, Object> map : typehead) {
198
            CompanyService.TypeaheadItem item = new CompanyService.TypeaheadItem();
199
            item.setId((String) map.get("id"));
200
            item.setName((String) map.get("name"));
201
            ret.add(item);
202
        }
203
        return ret;
204
    }
205
176 206
    @Path("/new")
177 207
    @Post
178
    public String addUser(@JdbcConn(true) Connection con, @LoginUser SessionManager au, @RequestParam(excludeFields = {"id", "acitved", "createor"}) Manager user, String[] rightCode) throws SQLException {
208
    public String addUser(@JdbcConn(true) Connection con, @LoginUser SessionManager au, @RequestParam(excludeFields = {"id", "actived", "creator"}) Manager user, String[] rightCode) throws SQLException {
179 209
        String id = StringUtil.buildUUID();
180 210
        user.setActived(true);
181 211
        user.setCreator(au.getId());

+ 48 - 0
src/main/java/com/ekexiu/project/platform/views/LogImageServlet.java

@ -0,0 +1,48 @@
1
package com.ekexiu.project.platform.views;
2
3
import com.ekexiu.project.platform.views.service.Main;
4
import org.jfw.util.context.JfwAppContext;
5
6
import javax.servlet.ServletException;
7
import javax.servlet.http.HttpServlet;
8
import javax.servlet.http.HttpServletRequest;
9
import javax.servlet.http.HttpServletResponse;
10
import java.io.IOException;
11
import java.io.OutputStream;
12
13
public class LogImageServlet extends HttpServlet {
14
	private static final long serialVersionUID = 1L;
15
16
	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,
17
			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,
18
			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,
19
			-124, 0, 0, 0, 0, 73, 69, 78, 68, -82, 66, 96, -126 };
20
	private static int png_size = png.length;
21
22
	private Main main;
23
24
	@Override
25
	public void init() throws ServletException {
26
		main = (Main) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_platform_views_service_Main");
27
	}
28
29
	protected void doGet(HttpServletRequest request, HttpServletResponse res) throws ServletException, IOException {
30
		main.log(request.getParameterMap());
31
		res.setDateHeader("Expires", 0);
32
		res.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
33
		res.addHeader("Cache-Control", "post-check=0, pre-check=0");
34
		res.setHeader("Pragma", "no-cache");
35
		res.setContentType("image/png");
36
		res.setContentLength(png_size);
37
		OutputStream out = res.getOutputStream();
38
		try {
39
			out.write(png);
40
		} finally {
41
			try {
42
				out.close();
43
			} catch (Exception e) {
44
			}
45
		}
46
47
	}
48
}

+ 168 - 0
src/main/java/com/ekexiu/project/platform/views/dao/DayDao.java

@ -0,0 +1,168 @@
1
package com.ekexiu.project.platform.views.dao;
2
3
import com.ekexiu.project.platform.views.pojo.ArticleSum;
4
import com.ekexiu.project.platform.views.pojo.DayData;
5
import org.jfw.apt.annotation.Nullable;
6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
8
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
9
import org.jfw.apt.orm.annotation.dao.param.Alias;
10
import org.jfw.apt.orm.annotation.dao.param.GtEq;
11
import org.jfw.apt.orm.annotation.dao.param.Like;
12
import org.jfw.apt.orm.annotation.dao.param.LtEq;
13
import org.jfw.util.PageQueryResult;
14
15
import java.sql.Connection;
16
import java.sql.SQLException;
17
import java.util.LinkedList;
18
import java.util.List;
19
20
@DAO
21
public abstract class DayDao {
22
	public List<DayData> query(Connection con, String tablePrefix, String[] srcs, String[] ids, String bt, String et, String sortStr) throws SQLException {
23
		StringBuilder sb = new StringBuilder();
24
		boolean hasSource = srcs != null && srcs.length > 0;
25
		boolean hasid = ids != null && ids.length > 0;
26
		sb.append("SELECT ID,DAY,SOURCE,PV FROM ").append(tablePrefix).append("_DAY WHERE DAY>=? AND DAY<=?");
27
		if (hasSource) {
28
			sb.append(" AND SOURCE IN(");
29
			for (int i = 0; i < srcs.length; ++i) {
30
				sb.append("?,");
31
			}
32
			sb.setCharAt(sb.length() - 1, ')');
33
		}
34
		if (hasid) {
35
			sb.append(" AND ID IN(");
36
			for (int i = 0; i < ids.length; ++i) {
37
				sb.append("?,");
38
			}
39
			sb.setCharAt(sb.length() - 1, ')');
40
		}
41
		if (sortStr != null && sortStr.trim().length() > 0) {
42
			sb.append(" ORDER BY ").append(sortStr);
43
		}
44
		int idx = 1;
45
		java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
46
		try {
47
			ps.setString(idx++, bt);
48
			ps.setString(idx++, et);
49
			if (hasSource) {
50
				for (int i = 0; i < srcs.length; ++i) {
51
					ps.setString(idx++, srcs[i]);
52
				}
53
			}
54
			if (hasid) {
55
				for (int i = 0; i < ids.length; ++i) {
56
					ps.setString(idx++, ids[i]);
57
				}
58
			}
59
			List<DayData> ret = new LinkedList<DayData>();
60
			java.sql.ResultSet rs = ps.executeQuery();
61
			try {
62
				while (rs.next()) {
63
					DayData dd = new DayData();
64
					dd.setId(rs.getString(1));
65
					dd.setDay(rs.getString(2));
66
					dd.setSource(rs.getString(3));
67
					dd.setPv(rs.getInt(4));
68
					ret.add(dd);
69
				}
70
				return ret;
71
			} finally {
72
				try {
73
					rs.close();
74
				} catch (Exception _m_2) {
75
				}
76
			}
77
		} finally {
78
			try {
79
				ps.close();
80
			} catch (Exception _m_3) {
81
			}
82
		}
83
	}
84
85
	public List<DayData> query(Connection con, String tablePrefix, String id, String bt, String et) throws SQLException {
86
		StringBuilder sb = new StringBuilder();
87
		sb.append("SELECT ID,DAY,SOURCE,PV FROM ").append(tablePrefix).append("_DAY WHERE DAY>=? AND DAY<=? AND ID=? ORDER BY DAY");
88
		java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
89
		try {
90
			ps.setString(1, bt);
91
			ps.setString(2, et);
92
			ps.setString(3, id);
93
			List<DayData> ret = new LinkedList<DayData>();
94
			java.sql.ResultSet rs = ps.executeQuery();
95
			try {
96
				while (rs.next()) {
97
					DayData dd = new DayData();
98
					dd.setId(rs.getString(1));
99
					dd.setDay(rs.getString(2));
100
					dd.setSource(rs.getString(3));
101
					dd.setPv(rs.getInt(4));
102
					ret.add(dd);
103
				}
104
				return ret;
105
			} finally {
106
				try {
107
					rs.close();
108
				} catch (Exception _m_2) {
109
				}
110
			}
111
		} finally {
112
			try {
113
				ps.close();
114
			} catch (Exception _m_3) {
115
			}
116
		}
117
	}
118
119
	public List<DayData> query(Connection con,String tablePrefix,String bt,String et,@Nullable String[] srcs,int rows) throws SQLException{		
120
		boolean hasSource = srcs!=null && srcs.length>0;
121
		StringBuilder sb = new StringBuilder();
122
		sb.append("SELECT ID,SUM(PV) PV FROM ").append(tablePrefix).append("_DAY WHERE DAY>=? AND DAY<=?");
123
		if(hasSource){
124
			sb.append(" AND SOURCE IN (");
125
			for(int i = 0; i < srcs.length; ++i){
126
				sb.append("?,");
127
			}
128
			sb.setCharAt(sb.length()-1, ')');
129
		}
130
		sb.append(" GROUP BY ID ORDER BY PV DESC LIMIT ?");
131
	    java.sql.PreparedStatement ps = con.prepareStatement(sb.toString());
132
        try{
133
        	int idx=1;
134
            ps.setString(idx++,bt);
135
            ps.setString(idx++,et);
136
            if(hasSource){
137
            	for(String src:srcs)
138
            	ps.setString(idx++, src);
139
            }
140
            ps.setInt(idx++,rows);
141
            List<DayData> ret = new LinkedList<DayData>();
142
            java.sql.ResultSet rs = ps.executeQuery();
143
            try{
144
            	while(rs.next()){
145
            		DayData dd = new DayData();
146
            		dd.setId(rs.getString(1));
147
            		dd.setPv(rs.getInt(2));
148
            		ret.add(dd);
149
            	}
150
            	return ret;
151
            }finally{
152
                try{rs.close();}catch(Exception _m_2){}
153
            }
154
        }finally{
155
            try{ps.close();}catch(Exception _m_3){}
156
        }
157
	}
158
159
	@PageQuery
160
	@OrderBy("ORDER BY a.CREATE_TIME DESC")
161
	public abstract PageQueryResult<ArticleSum> queryByTime(Connection con, @Nullable String catalog, @Nullable @Like String title, @Nullable @Like String source, @Nullable String creator, @Nullable Boolean published, @Nullable @GtEq @Alias("modifyTime") String bt, @Nullable @Alias("modifyTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
162
163
	@PageQuery
164
	@OrderBy("ORDER BY ads.sum DESC")
165
	public abstract PageQueryResult<ArticleSum> queryByViews(Connection con, @Nullable String catalog, @Nullable @Like String title, @Nullable @Like String source, @Nullable String creator, @Nullable Boolean published, @Nullable @GtEq @Alias("modifyTime") String bt, @Nullable @Alias("modifyTime") @LtEq String et, int pageSize, int pageNo)throws SQLException;
166
167
168
}

+ 47 - 0
src/main/java/com/ekexiu/project/platform/views/handler/LogHandler.java

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

+ 55 - 0
src/main/java/com/ekexiu/project/platform/views/handler/db/DbLogHandler.java

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

+ 147 - 0
src/main/java/com/ekexiu/project/platform/views/handler/db/TimeLogHandler.java

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

+ 62 - 0
src/main/java/com/ekexiu/project/platform/views/handler/db/UpperTimeLogHandler.java

@ -0,0 +1,62 @@
1
package com.ekexiu.project.platform.views.handler.db;
2
3
import com.ekexiu.project.platform.views.pojo.LogEntry;
4
5
public class UpperTimeLogHandler  extends TimeLogHandler{
6
	private static final int LowerToUpper = 'a'-'A';
7
	
8
	@Override
9
	public boolean pre() throws Exception {
10
		LogEntry le;
11
		long num =0;
12
		StringBuilder sb = new StringBuilder();
13
		while ((le = this.queue.poll()) != null) {
14
			sb.delete(0,sb.length());
15
			sb.append(le.getTimeString());
16
			String id = le.getString("id");
17
			String source = le.getString("src");
18
			if (id != null && id.length() > 0 &&  source!=null && source.length()==1) {
19
				++num;
20
				sb.append(source);
21
				char[] cs = id.toCharArray();
22
				for(int i = 0 ;i < cs.length;++i){
23
					char c = cs[i];
24
					if(c>='a' && c<='z'){
25
						c-=LowerToUpper;
26
					}else if(c=='一'){
27
						c='1';
28
					}else if(c=='二'){
29
						c='2';
30
					}else if(c=='三'){
31
						c='3';
32
					}else if(c=='四'){
33
						c='4';
34
					}else if(c=='五'){
35
						c='5';
36
					}else if(c=='六'){
37
						c='6';
38
					}else if(c=='七'){
39
						c='7';
40
					}else if(c=='八'){
41
						c='8';
42
					}else if(c=='九'){
43
						c='9';
44
					}else if(c=='零'){
45
						c='0';
46
					}
47
					sb.append(c);
48
				}
49
				String day = sb.toString();
50
				Integer pv = cache.get(day);
51
				if (pv == null) {
52
					pv = 1;
53
				} else {
54
					pv = pv + 1;
55
				}
56
				cache.put(day, pv);
57
			}
58
		}
59
		return num>0;
60
	}
61
62
}

+ 23 - 0
src/main/java/com/ekexiu/project/platform/views/pojo/ArticleSum.java

@ -0,0 +1,23 @@
1
package com.ekexiu.project.platform.views.pojo;
2
3
import com.ekexiu.project.platform.article.Article;
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/1.
10
 */
11
@ExtendView(fromSentence = "article a INNER JOIN article_day_sum ads on a.id = ads.id",tableAlias = "a")
12
public class ArticleSum extends Article {
13
    private int sum;
14
15
    @CalcColumn(handlerClass = IntHandler.class, column = "ads.sum")
16
    public int getSum() {
17
        return sum;
18
    }
19
20
    public void setSum(int sum) {
21
        this.sum = sum;
22
    }
23
}

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

@ -0,0 +1,32 @@
1
package com.ekexiu.project.platform.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/project/platform/views/pojo/LogEntry.java

@ -0,0 +1,36 @@
1
package com.ekexiu.project.platform.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
}

+ 101 - 0
src/main/java/com/ekexiu/project/platform/views/service/Main.java

@ -0,0 +1,101 @@
1
package com.ekexiu.project.platform.views.service;
2
3
import com.ekexiu.project.platform.views.dao.DayDao;
4
import com.ekexiu.project.platform.views.handler.LogHandler;
5
import com.ekexiu.project.platform.views.pojo.ArticleSum;
6
import com.ekexiu.project.platform.views.pojo.DayData;
7
import org.jfw.apt.annotation.Autowrie;
8
import org.jfw.apt.annotation.DefaultValue;
9
import org.jfw.apt.annotation.Nullable;
10
import org.jfw.apt.web.annotation.Path;
11
import org.jfw.apt.web.annotation.operate.Get;
12
import org.jfw.apt.web.annotation.param.JdbcConn;
13
import org.jfw.apt.web.annotation.param.ParameterMap;
14
import org.jfw.util.PageQueryResult;
15
import org.jfw.util.jdbc.JdbcUtil;
16
import org.jfw.util.jdbc.PreparedStatementConfig;
17
18
import java.sql.Connection;
19
import java.sql.PreparedStatement;
20
import java.sql.SQLException;
21
import java.util.List;
22
import java.util.Map;
23
24
@Path("/log")
25
public class Main {
26
    public static final String MAX_DAY = "99999999";
27
    public static final String MIN_DAY = "00000000";
28
29
30
    private List<LogHandler> handlers;
31
32
    @Autowrie
33
    private DayDao dayDao;
34
35
    public List<LogHandler> getHandlers() {
36
        return handlers;
37
    }
38
39
    public void setHandlers(List<LogHandler> handlers) {
40
        this.handlers = handlers;
41
    }
42
43
    public DayDao getDayDao() {
44
        return dayDao;
45
    }
46
47
    public void setDayDao(DayDao dayDao) {
48
        this.dayDao = dayDao;
49
    }
50
51
    @Get
52
    @Path()
53
    public void log(@ParameterMap Map<String, String[]> pm) {
54
        for (LogHandler lh : this.handlers) {
55
            lh.add(pm);
56
        }
57
    }
58
59
    @Get
60
    @Path("/qm")
61
    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 {
63
        return dayDao.query(con, tn, src, id, bt, et, sort);
64
    }
65
66
    @Get
67
    @Path("/qo")
68
    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 {
70
        return dayDao.query(con, tn, id, bt, et);
71
    }
72
73
    @Get
74
    @Path("/qs")
75
    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 {
77
        return dayDao.query(con, tn, bt, et, src, rows);
78
    }
79
80
    @Get
81
    @Path("/article/pq")
82
    public PageQueryResult<ArticleSum> query(@JdbcConn Connection con, @Nullable String catalog, @Nullable String title, @Nullable String source, @Nullable String creator, @Nullable Boolean published, @Nullable String bt, @Nullable String et, String orderBy, int pageSize, int pageNo) throws SQLException {
83
        if (orderBy.equals("createTime")) {
84
            return dayDao.queryByTime(con, catalog, title == null ? null : "%" + title + "%", source == null ? null : "%" + source + "%", creator, published, bt, et, pageSize, pageNo);
85
        } else if (orderBy.equals("views")) {
86
            return dayDao.queryByViews(con, catalog, title == null ? null : "%" + title + "%", source == null ? null : "%" + source + "%", creator, published, bt, et, pageSize, pageNo);
87
        }
88
        return null;
89
    }
90
91
    @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() {
95
            @Override
96
            public void config(PreparedStatement preparedStatement) throws SQLException {
97
                preparedStatement.setString(1, bt);
98
            }
99
        });
100
    }
101
}

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

@ -48,11 +48,19 @@
48 48
		</init-param>
49 49
		<load-on-startup>1</load-on-startup>
50 50
	</servlet>
51
	<servlet>
52
		<servlet-name>img</servlet-name>
53
		<servlet-class>com.ekexiu.project.platform.views.LogImageServlet</servlet-class>
54
		<load-on-startup>3</load-on-startup>
55
	</servlet>
51 56
	<servlet-mapping>
52 57
		<servlet-name>ajax</servlet-name>
53 58
		<url-pattern>/ajax/*</url-pattern>
54 59
	</servlet-mapping>
55
60
	<servlet-mapping>
61
		<servlet-name>img</servlet-name>
62
		<url-pattern>/img</url-pattern>
63
	</servlet-mapping>
56 64
	
57 65
	<session-config>
58 66
		<cookie-config>