|
@ -12,6 +12,7 @@ import com.ekexiu.project.bridge.system.dao.UserDao;
|
12
|
12
|
import com.ekexiu.project.bridge.system.po.User;
|
13
|
13
|
import com.ekexiu.project.bridge.system.vo.SessionUser;
|
14
|
14
|
import org.jfw.apt.annotation.Autowrie;
|
|
15
|
import org.jfw.apt.annotation.DefaultValue;
|
15
|
16
|
import org.jfw.apt.annotation.Nullable;
|
16
|
17
|
import org.jfw.apt.web.annotation.LoginUser;
|
17
|
18
|
import org.jfw.apt.web.annotation.Path;
|
|
@ -20,6 +21,7 @@ import org.jfw.apt.web.annotation.method.SetSession;
|
20
|
21
|
import org.jfw.apt.web.annotation.operate.Get;
|
21
|
22
|
import org.jfw.apt.web.annotation.operate.Post;
|
22
|
23
|
import org.jfw.apt.web.annotation.param.JdbcConn;
|
|
24
|
import org.jfw.apt.web.annotation.param.SessionVal;
|
23
|
25
|
import org.jfw.apt.web.annotation.param.Upload;
|
24
|
26
|
import org.jfw.util.PageQueryResult;
|
25
|
27
|
import org.jfw.util.StringUtil;
|
|
@ -160,8 +162,17 @@ public class SysService {
|
160
|
162
|
@SetSession("JFW_SESSION_LOGIN_USER=result")
|
161
|
163
|
@Path("/user/login")
|
162
|
164
|
@Post
|
163
|
|
public SessionUser login(@JdbcConn Connection con, String account, String pw) throws SQLException {
|
164
|
|
User user = userDao.login(con, account, StringUtil.md5(pw));
|
|
165
|
public SessionUser login(@JdbcConn Connection con, String account, String pw,String vc,@Nullable @SessionVal("PIC_LOGIN") String code,@DefaultValue("0") @SessionVal("TIMEOUT_PIC_LOGIN") long timeout) throws SQLException {
|
|
166
|
if(code ==null){
|
|
167
|
return null;
|
|
168
|
}
|
|
169
|
if(!vc.equals(code)){
|
|
170
|
return null;
|
|
171
|
}
|
|
172
|
if(System.currentTimeMillis()>timeout){
|
|
173
|
return null;
|
|
174
|
}
|
|
175
|
User user = userDao.login(con, account, StringUtil.md5(pw));
|
165
|
176
|
if (user != null) {
|
166
|
177
|
return makeSessionUser(user);
|
167
|
178
|
}
|
|
@ -214,16 +225,20 @@ public class SysService {
|
214
|
225
|
@Get
|
215
|
226
|
@Path("/user/pq")
|
216
|
227
|
public PageQueryResult<SessionUser> pageQuery(@JdbcConn Connection con, @Nullable String account, @Nullable String name, @Nullable String comp, int pageSize, int pageNo) throws SQLException {
|
217
|
|
PageQueryResult<User> pageQueryResult = this.userDao.pageQuery(con, account == null ? null : "%" + account + "%", name == null ? null : "%" + name + "%", comp == null ? null : "%" + comp + "%", pageSize, pageNo);
|
|
228
|
PageQueryResult<User> pageQueryResult = this.userDao.pageQuery(con, account, name == null ? null : "%" + name + "%", comp == null ? null : "%" + comp + "%", pageSize, pageNo);
|
218
|
229
|
List<User> users = pageQueryResult.getData();
|
219
|
230
|
List<SessionUser> sessionUsers = new ArrayList<>();
|
220
|
231
|
if (!users.isEmpty()) {
|
221
|
232
|
for (User user : users) {
|
222
|
233
|
sessionUsers.add(makeSessionUser(user));
|
223
|
234
|
}
|
224
|
|
PageQueryResult<SessionUser> pageQueryResult1 = new PageQueryResult<>();
|
225
|
|
pageQueryResult1.setData(sessionUsers);
|
226
|
|
return pageQueryResult1;
|
|
235
|
PageQueryResult<SessionUser> ret = new PageQueryResult<>();
|
|
236
|
ret.setPageNo(pageQueryResult.getPageNo());
|
|
237
|
ret.setPageSize(pageQueryResult.getPageSize());
|
|
238
|
ret.setTotal(pageQueryResult.getTotal());
|
|
239
|
|
|
240
|
ret.setData(sessionUsers);
|
|
241
|
return ret;
|
227
|
242
|
}
|
228
|
243
|
return null;
|
229
|
244
|
}
|
|
@ -257,6 +272,12 @@ public class SysService {
|
257
|
272
|
return id;
|
258
|
273
|
}
|
259
|
274
|
|
|
275
|
@Get
|
|
276
|
@Path("/bridge/byUser")
|
|
277
|
public PageQueryResult<Bridge> query(@JdbcConn Connection con,String uid,@Nullable Boolean active,int pageSize,int pageNo)throws SQLException{
|
|
278
|
return this.bridgeDao.pageQuery(con, active, uid, pageSize, pageNo);
|
|
279
|
}
|
|
280
|
|
260
|
281
|
@Get
|
261
|
282
|
@Path("/bridge/qo")
|
262
|
283
|
public Bridge queryBridge(@JdbcConn Connection con, String id) throws SQLException {
|