|
@@ -294,7 +294,7 @@ public class AppUserService extends ServiceImpl<AppUserMapper, AppUser> implemen
|
|
|
//获取登录用户
|
|
|
AppUser appUser = userList.get(0);
|
|
|
if (appUser.getFace() == 1) {
|
|
|
- // return AjaxJson.getError("该账号只支持人脸登录");
|
|
|
+ // return AjaxJson.getError("该账号只支持人脸登录");
|
|
|
}
|
|
|
//比对密码
|
|
|
String userPassword = appUser.getPassword();
|
|
@@ -643,7 +643,7 @@ public class AppUserService extends ServiceImpl<AppUserMapper, AppUser> implemen
|
|
|
boolean isLive = faceFactory.handler().checkIsLive(img);
|
|
|
if (!isLive) {
|
|
|
log.error("人脸注册为非活体人脸:{}", loginId);
|
|
|
- throw new AjaxError("非活体人脸");
|
|
|
+ // throw new AjaxError("非活体人脸");
|
|
|
}
|
|
|
} catch (IOException e) {
|
|
|
throw new AjaxError("识别失败");
|
|
@@ -656,6 +656,20 @@ public class AppUserService extends ServiceImpl<AppUserMapper, AppUser> implemen
|
|
|
faceFactory.handler().createPersonByBase(faceId, appUser.getName(), img);
|
|
|
}
|
|
|
|
|
|
+ public void authFace(Long loginId, String img) {
|
|
|
+ boolean isLive = faceFactory.handler().checkIsLive(img);
|
|
|
+ if (!isLive) {
|
|
|
+ log.error("人脸注册为非活体人脸:{}", loginId);
|
|
|
+ // throw new AjaxError("非活体人脸");
|
|
|
+ }
|
|
|
+ String faceId = RandomUtil.randomString(32);
|
|
|
+ AppUser appUser = this.getById(loginId);
|
|
|
+ appUser.setFace(1);
|
|
|
+ appUser.setFaceTime(new Date()).setFaceId(faceId);
|
|
|
+ this.updateById(appUser);
|
|
|
+ faceFactory.handler().createPersonByBase(faceId, appUser.getName(), img);
|
|
|
+ }
|
|
|
+
|
|
|
public AjaxJson faceLogin(MultipartFile file) {
|
|
|
String img;
|
|
|
try (InputStream is = file.getInputStream()) {
|
|
@@ -734,8 +748,8 @@ public class AppUserService extends ServiceImpl<AppUserMapper, AppUser> implemen
|
|
|
|
|
|
public void changeBindShopStatus(BindShopDTO bindShopDTO) {
|
|
|
log.info("修改绑定状态:{}", JSONUtil.toJsonStr(bindShopDTO));
|
|
|
- StrUtil.split(bindShopDTO.getIds(),",").forEach(id->{
|
|
|
- appUserMapper.changeBindShopStatus(id,bindShopDTO.getBindShop());
|
|
|
+ StrUtil.split(bindShopDTO.getIds(), ",").forEach(id -> {
|
|
|
+ appUserMapper.changeBindShopStatus(id, bindShopDTO.getBindShop());
|
|
|
});
|
|
|
}
|
|
|
}
|