| | |
| | | |
| | | import com.alibaba.druid.util.StringUtils; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.google.zxing.WriterException; |
| | | import com.google.zxing.client.j2se.MatrixToImageWriter; |
| | | import com.google.zxing.common.BitMatrix; |
| | | import com.product.administration.config.CmnConst; |
| | | import com.product.administration.config.SystemCode; |
| | | import com.product.administration.service.ConferenceManagerService; |
| | |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.io.OutputStream; |
| | | import java.text.ParseException; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 会议预约看板功能 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/get_kb_Data/{version}") |
| | | @ApiVersion(1) |
| | | public String getkbData(HttpServletRequest request){ |
| | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 获取会议预约详情 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/get_Meeting_Details/{version}") |
| | | @ApiVersion(1) |
| | | public String getMeetingDetails(HttpServletRequest request){ |
| | | //获取参数 |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | | if (bean != null) { |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | } |
| | | //判断参数是否为空 |
| | | if (bean == null || fse == null) { |
| | | return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText()); |
| | | } |
| | | List meetingDetails = conferenceManagerService.getMeetingDetails(fse); |
| | | return OK(meetingDetails); |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 会议室预约保存更新功能 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | |
| | | @PostMapping("/save_or_update_meeting_info/{version}") |
| | | @ApiVersion(1) |
| | | public String saveOrUpdateMeetingInfo(HttpServletRequest request){ |
| | | |
| | | //获取参数 |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | | if (bean != null) { |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | } |
| | | //判断参数是否为空 |
| | | if (bean == null || fse == null) { |
| | | return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText()); |
| | | } |
| | | HashMap hashMap = conferenceManagerService.saveOrUpdateMeetingInfo(fse); |
| | | return OK(hashMap); |
| | | |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 会议管理签到二维码 |
| | | * @param request |
| | | * @param response |
| | | * @throws IOException |
| | | * @throws WriterException |
| | | */ |
| | | @PostMapping("/get_QrCode/{version}") |
| | | @ApiVersion(1) |
| | | public void getQrCode(HttpServletRequest request, HttpServletResponse response) throws IOException, WriterException { |
| | | |
| | | //获取参数 |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | | if (bean != null) { |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | |
| | | if(fse!=null && !StringUtils.isEmpty(fse.getString("uuid"))){ |
| | | String uuid = fse.getString("uuid"); |
| | | // 设置响应流信息 |
| | | response.setContentType("image/jpg"); |
| | | response.setHeader("Pragma", "no-cache"); |
| | | response.setHeader("Cache-Control", "no-cache"); |
| | | response.setDateHeader("Expires", 0); |
| | | |
| | | OutputStream stream = response.getOutputStream(); |
| | | |
| | | JSONObject jsonData = new JSONObject(); |
| | | jsonData.put("uuid",uuid); |
| | | Date date = new Date(); |
| | | SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
| | | String formatDate = dateFormat.format(date); |
| | | jsonData.put("date",formatDate); |
| | | //获取一个二维码图片 |
| | | BitMatrix bitMatrix = conferenceManagerService.getQrCode(jsonData.toString()); |
| | | //以流的形式输出到前端 |
| | | MatrixToImageWriter.writeToStream(bitMatrix , "jpg" , stream); |
| | | } |
| | | } |
| | | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 预约会议取消开启功能 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/cancel_and_start/{version}") |
| | | @ApiVersion(1) |
| | | public String CancelAndStart(HttpServletRequest request){ |
| | | //获取参数 |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | | if (bean != null) { |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | } |
| | | //判断参数是否为空 |
| | | if (bean == null || fse == null) { |
| | | return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText()); |
| | | } |
| | | conferenceManagerService.CancelAndStart(fse); |
| | | return OK(); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 会议签到功能 |
| | | * @param request |
| | | * @return |
| | | * @throws ParseException |
| | | */ |
| | | @PostMapping("/conference_sign/{version}") |
| | | @ApiVersion(1) |
| | | public String ConferenceSign(HttpServletRequest request) throws ParseException { |
| | | //获取参数 |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | | if (bean != null) { |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | } |
| | | //判断参数是否为空 |
| | | if (bean == null || fse == null) { |
| | | return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText()); |
| | | } |
| | | String s = conferenceManagerService.ConferenceSign(fse); |
| | | return OK(s); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 获取签到或者访问信息 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/get_signOrVisit_info/{version}") |
| | | @ApiVersion(1) |
| | | public String getSignOrVisitInfo(HttpServletRequest request){ |
| | | |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | | if (bean != null) { |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | } |
| | | //判断参数是否为空 |
| | | if (bean == null || fse == null) { |
| | | return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText()); |
| | | } |
| | | HashMap signInfo = conferenceManagerService.getSignOrVisitInfo(fse); |
| | | return OK(signInfo); |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 发送消息 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/sendMsg/{version}") |
| | | @ApiVersion(1) |
| | | public String sendMsg(HttpServletRequest request){ |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | | if (bean != null) { |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | } |
| | | //判断参数是否为空 |
| | | if (bean == null || fse == null) { |
| | | return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText()); |
| | | } |
| | | conferenceManagerService.sendMsg(fse); |
| | | return OK(); |
| | | } |
| | | |
| | | |
| | | |
| | | } |