ShehuihuaServiceImpl.java 35.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
package com.subsidy.service.impl;

import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.subsidy.common.configure.RenSheConfig;
import com.subsidy.dto.renshe.*;
import com.subsidy.dto.shehuihua.*;
import com.subsidy.mapper.ClassDictMapper;
import com.subsidy.mapper.ImageCheckRecordMapper;
import com.subsidy.mapper.RenSheJuMapper;
import com.subsidy.mapper.RenshejuHistoryMapper;
import com.subsidy.model.*;
import com.subsidy.service.ShehuihuaService;
import com.subsidy.util.OSSUtils;
import com.subsidy.util.RenSheJuConstant;
import com.subsidy.util.ShehuihuaConstant;
import com.subsidy.vo.renshe.*;
import net.sf.json.JSONObject;
import okhttp3.*;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.io.IOException;
import java.sql.Timestamp;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

@Service
public class ShehuihuaServiceImpl implements ShehuihuaService {

    @Autowired
    private RenSheJuMapper renSheJuMapper;

    @Autowired
    private RenSheConfig renSheConfig;

    @Autowired
    RenshejuHistoryMapper renshejuHistoryMapper;

    @Autowired
    private ImageCheckRecordMapper imageCheckRecordMapper;

    public RensheResponseVO getClassCodeByPrivateKey() throws IOException {

        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
        MediaType mediaType = MediaType.parse("application/json");
        RequestBody body = RequestBody.create(mediaType,"{\"privateKey\":\""+getSecret()+"\"}");

        Request request = new Request.Builder()
                .url(renSheConfig.getUrl() + "/import/downstream/social/getClassCodeByPrivateKey")
                .method("POST", body)
                .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
                .addHeader("Content-Type", "application/json")
                .build();
        try {
            Response response = client.newCall(request).execute();
            RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);

            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_2);
            renshejuHistoryDO.setInputParam(getSecret());
            if (200 == response.code()) {
                renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
            } else {
                renshejuHistoryDO.setOutputParam(RenSheJuConstant.API_ERROR);
            }
            renshejuHistoryMapper.insert(renshejuHistoryDO);
            return rensheResponseVO;

        } catch (Exception e) {
            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_2);
            renshejuHistoryDO.setInputParam(getSecret());
            renshejuHistoryDO.setOutputParam(RenSheJuConstant.PUSH_FAIL);
            renshejuHistoryMapper.insert(renshejuHistoryDO);
        }
        return null;
    }


    public RensheResponseVO uploadClass() throws IOException {

        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
        MediaType mediaType = MediaType.parse("application/json");

        //拼数据
        UploadClassDTO classBaseInfoDTO = new UploadClassDTO();
        classBaseInfoDTO.setPrivateKey(getSecret());

        List<ClassInfoBasicDTO> classInfoBasicDTOS = new ArrayList<>();

        //查找前一天产生数据的班级
        List<Long> classIds = renSheJuMapper.newClasses("1");
        try {
            if (classIds.size() > 0) {
                for (Long classId : classIds) {
                    ClassInfoBasicDTO classInfoBasicDTO = new ClassInfoBasicDTO();
                    //班级基本信息
                    ClassBaseInfoVO classBaseInfoVO = renSheJuMapper.classBaseInfo(classId);
                    BeanUtils.copyProperties(classBaseInfoVO, classInfoBasicDTO);
                    classInfoBasicDTO.setClassCode(classBaseInfoVO.getDownCode());

                    //章节
                    List<ChapterList2> chapterLists = renSheJuMapper.classChapters(classId);
                    List<ChapterList22> chapterList22s = new ArrayList<>();
                    for (ChapterList2 chapterList2 : chapterLists){
                        ChapterList22 chapterList22 = new ChapterList22();
                        chapterList22.setChapterName(chapterList2.getChapterName());
                        chapterList22.setChapterCode(chapterList2.getChapterCode());
                        chapterList22s.add(chapterList22);
                    }
                    classInfoBasicDTO.setChapterList(chapterList22s);

                    //学员列表
                    List<MemberVO> memberVOS = renSheJuMapper.classMembers(classId);
                    classInfoBasicDTO.setStudentList(memberVOS);

                    classInfoBasicDTOS.add(classInfoBasicDTO);
                }
                classBaseInfoDTO.setClassInfoBasic(classInfoBasicDTOS);

                System.out.println(JSONObject.fromObject(classBaseInfoDTO).toString());

//                RequestBody body = RequestBody.create(mediaType, JSONObject.fromObject(classBaseInfoDTO).toString());
//                Request request = new Request.Builder()
//                        .url(renSheConfig.getUrl() + "/import/downstream/social/uploadClass")
//                        .method("POST", body)
//                        .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
//                        .addHeader("Content-Type", "application/json")
//                        .build();
//                Response response = client.newCall(request).execute();
//
//                RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);
//                RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
//                renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_3);
//                renshejuHistoryDO.setInputParam(JSONObject.fromObject(classBaseInfoDTO).toString());
//                if (200 == response.code()) {
//                    renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
//                } else {
//                    renshejuHistoryDO.setOutputParam(RenSheJuConstant.API_ERROR);
//                }
//                renshejuHistoryMapper.insert(renshejuHistoryDO);
//                return rensheResponseVO;
                return null;
            } else {
                RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
                renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_3);
                renshejuHistoryDO.setInputParam(JSONObject.fromObject(classBaseInfoDTO).toString());
                renshejuHistoryDO.setOutputParam(RenSheJuConstant.NO_DATA);
                renshejuHistoryMapper.insert(renshejuHistoryDO);
                return null;
            }

        } catch (Exception e) {
            e.printStackTrace();
            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_3);
            renshejuHistoryDO.setInputParam(JSONObject.fromObject(classBaseInfoDTO).toString());
            renshejuHistoryDO.setOutputParam(RenSheJuConstant.PUSH_FAIL);
            renshejuHistoryMapper.insert(renshejuHistoryDO);
        }
        return null;
    }

    public RensheResponseVO classHourBehavior() throws IOException {

        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
        MediaType mediaType = MediaType.parse("application/json");

        ClassHourBehavior4DTO classHourBehaviorDTO = new ClassHourBehavior4DTO();

        classHourBehaviorDTO.setPrivateKey(getSecret());

        List<ClassHourBasic4DTO> classHourBasics = new ArrayList<>();
        try {
            //前一天新增视频学习数据的班级
            List<DailyStudyInfoVO> dailyStudyInfoVOS = renSheJuMapper.dailyStudyInfo("1");
            for (DailyStudyInfoVO dailyStudyInfoVO : dailyStudyInfoVOS) {
                ClassHourBasic4DTO classHourBasic = new ClassHourBasic4DTO();
                BeanUtils.copyProperties(dailyStudyInfoVO, classHourBasic);
                classHourBasic.setClassCode(dailyStudyInfoVO.getDownCode());

                //上线时间列表
                //找到当天每次上线下线时间
                //上线时间
                List<OprMemDictDO> loginRecords = renSheJuMapper.loginRecords(dailyStudyInfoVO.getMemberId());
                //下线时间
                List<OprMemDictDO> loginOutRecords = renSheJuMapper.loginOutRecords(dailyStudyInfoVO.getMemberId());

                List<LoginList> loginLists = new ArrayList<>();
                for (int i = 0; i < loginRecords.size(); i++) {
                    LoginList loginList = new LoginList();
                    loginList.setIp(loginRecords.get(i).getIpAddress());
                    loginList.setStartTime(Timestamp.valueOf(loginRecords.get(i).getCreateDate()).getTime());
                    loginList.setEndTime(Timestamp.valueOf(loginOutRecords.get(i).getCreateDate()).getTime());

                    //查看这个人该时间段的学习记录
                    List<ChapterList3> chapterList3s = renSheJuMapper.dailyStudyRecords(dailyStudyInfoVO.getMemberId(), dailyStudyInfoVO.getDownCode(), loginRecords.get(i).getCreateDate().toString().replace("T", " "), loginOutRecords.get(i).getCreateDate().toString().replace("T", " "));
                    if (chapterList3s.size() > 0) {
                        loginList.setChapterList(chapterList3s);
                        loginLists.add(loginList);
                    }
                }
                classHourBasic.setLoginList(loginLists);

                //活跃度列表
                List<ActivityList> activityLists = new ArrayList<>();
                List<DailyActivitiesVO> activityDetectionDOS = renSheJuMapper.dailyActivities(dailyStudyInfoVO.getDownCode(), dailyStudyInfoVO.getMemberId());
                for (DailyActivitiesVO dailyActivitiesVO : activityDetectionDOS) {

                    ActivityList activityList = new ActivityList();
                    if (dailyActivitiesVO.getAccess() == 1) {
                        activityList.setAccess(0);
                    } else {
                        activityList.setAccess(1);
                        activityList.setErrorInfo(2);
                    }

                    if (0 == dailyActivitiesVO.getCheckType()) {
                        activityList.setActivityDetection(2);
                    } else if (1 == dailyActivitiesVO.getCheckType()) {
                        activityList.setActivityDetection(1);
                    }

                    activityList.setActivityTime(dailyActivitiesVO.getActivityTime());
                    activityLists.add(activityList);
                }
                classHourBasic.setActivityList(activityLists);

                classHourBasics.add(classHourBasic);
            }
            classHourBehaviorDTO.setClassHourBasic(classHourBasics);

            System.out.println(com.alibaba.fastjson.JSONObject.toJSONString(classHourBehaviorDTO));

            RequestBody body = RequestBody.create(mediaType, JSONObject.fromObject(classHourBehaviorDTO).toString());

            Request request = new Request.Builder()
                    .url(renSheConfig.getUrl() + "/import/downstream/social/uploadClassHourBehavior")
                    .method("POST", body)
                    .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
                    .addHeader("Content-Type", "application/json")
                    .build();
            Response response = client.newCall(request).execute();

            RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);
            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_4);
            renshejuHistoryDO.setInputParam(JSONObject.fromObject(classHourBehaviorDTO).toString());
            if (200 == response.code()) {
                renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
            } else {
                renshejuHistoryDO.setOutputParam(RenSheJuConstant.API_ERROR);
            }
            renshejuHistoryMapper.insert(renshejuHistoryDO);
            return rensheResponseVO;
//            return null;
        } catch (Exception e) {
            e.printStackTrace();
            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_4);
            renshejuHistoryDO.setInputParam(JSONObject.fromObject(classHourBehaviorDTO).toString());
            renshejuHistoryDO.setOutputParam(RenSheJuConstant.PUSH_FAIL);
            renshejuHistoryMapper.insert(renshejuHistoryDO);
        }
        return null;
    }

    public RensheResponseVO uploadChapterBehavior() throws IOException {

        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
        MediaType mediaType = MediaType.parse("application/json");

        UploadChapterBehavior5DTO uploadChapterBehaviorDTO = new UploadChapterBehavior5DTO();

        uploadChapterBehaviorDTO.setPrivateKey(getSecret());

        List<ChapterExamBasic5> chapterExamBasics = new ArrayList<>();

        //找出前一天产生考试数据的班级
        List<Long> classIds = renSheJuMapper.dailyExamBasic("1");

        try {
            if (classIds.size() > 0) {
                for (Long classId : classIds) {

                    //具体哪些人做了
                    List<MemberDO> memberDOList = renSheJuMapper.memberIds(classId);

                    for (MemberDO memberDO : memberDOList) {

                        //章节课程考试时间列表
                        ChapterExamBasic5 chapterExamBasic = new ChapterExamBasic5();
                        chapterExamBasic.setClassCode(String.valueOf(classId));

                        //最后一节课作为chapterCode
                        String vodId = renSheJuMapper.classVodName(classId);
                        chapterExamBasic.setChapterCode(vodId);

                        chapterExamBasic.setStudentName(memberDO.getUserName());
                        chapterExamBasic.setPhone(memberDO.getTelephone());
                        chapterExamBasic.setIdentity(memberDO.getIdCard());

                        //考试花了多长时间
                        Long examLength = renSheJuMapper.examLength(memberDO.getId(), classId);
                        chapterExamBasic.setExamTime(examLength);

                        //考试活跃度列表
                        List<ActivityList> activityLists = new ArrayList<>();
                        List<ExamActivitiesVO> activityDetectionDOS = renSheJuMapper.examActivities(classId, memberDO.getId());
                        for (ExamActivitiesVO dailyActivitiesVO : activityDetectionDOS) {

                            ActivityList activityList = new ActivityList();
                            if (null == dailyActivitiesVO.getAccess() || 0 == dailyActivitiesVO.getAccess()) {
                                activityList.setAccess(1);
                                activityList.setErrorInfo(1);
                            } else {
                                activityList.setAccess(0);
                            }
                            activityList.setActivityDetection(1);
                            activityList.setActivityTime(dailyActivitiesVO.getActivityTime());
                            activityLists.add(activityList);
                        }
                        chapterExamBasic.setActivityList(activityLists);


                        List<ExamList> examLists = new ArrayList<>();
                        //上线时间
                        List<OprMemDictDO> loginRecords = renSheJuMapper.loginRecords(memberDO.getId());
                        //下线时间
                        List<OprMemDictDO> loginOutRecords = renSheJuMapper.loginOutRecords(memberDO.getId());

                        boolean flag = false;

                        for (int i = 0; i < loginRecords.size(); i++) {
                            //找到该时间段内的测评
                            List<ExerciseDoneResultDO> exerciseDoneResultDOS = renSheJuMapper.dailyExerciseDone(memberDO.getId(), loginRecords.get(i).getCreateDate().toString().replace("T", " "), loginOutRecords.get(i).getCreateDate().toString().replace("T", " "), classId);
                            for (ExerciseDoneResultDO exerciseDoneResultDO : exerciseDoneResultDOS) {
                                ExamList examList = new ExamList();
                                examList.setStartTime(Timestamp.valueOf(exerciseDoneResultDO.getStartDate()).getTime());
                                examList.setEndTime(Timestamp.valueOf(exerciseDoneResultDO.getCreateDate()).getTime());
                                examList.setIp(loginRecords.get(i).getIpAddress());
                                if ("合格".equals(exerciseDoneResultDO.getResult())) {
                                    flag = true;
                                }
                                examLists.add(examList);
                            }
                        }
                        if (flag == true) {
                            chapterExamBasic.setAccess(0L);
                        } else {
                            chapterExamBasic.setAccess(1L);
                        }
                        chapterExamBasic.setExamList(examLists);
                        chapterExamBasics.add(chapterExamBasic);
                    }
                }

                uploadChapterBehaviorDTO.setChapterExamBasic(chapterExamBasics);

                System.out.println(com.alibaba.fastjson.JSONObject.toJSONString(uploadChapterBehaviorDTO));

                RequestBody body = RequestBody.create(mediaType, JSONObject.fromObject(uploadChapterBehaviorDTO).toString());
                Request request = new Request.Builder()
                        .url(renSheConfig.getUrl() + "/import/downstream/social/uploadChapterBehavior")
                        .method("POST", body)
                        .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
                        .addHeader("Content-Type", "application/json")
                        .build();
                Response response = client.newCall(request).execute();
                RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);
                System.out.println(rensheResponseVO);
                if (200 == response.code()) {
                    RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
                    renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_5);
                    renshejuHistoryDO.setInputParam(JSONObject.fromObject(uploadChapterBehaviorDTO).toString());
                    if (200 == response.code()) {
                        renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
                    } else {
                        renshejuHistoryDO.setOutputParam(RenSheJuConstant.API_ERROR);
                    }
                    renshejuHistoryMapper.insert(renshejuHistoryDO);
                }
                return rensheResponseVO;
//                return null;
            } else {
                RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
                renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_5);
                renshejuHistoryDO.setInputParam(JSONObject.fromObject(uploadChapterBehaviorDTO).toString());
                renshejuHistoryDO.setOutputParam(RenSheJuConstant.NO_DATA);
                renshejuHistoryMapper.insert(renshejuHistoryDO);
                return null;
            }
        } catch (Exception e) {
            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_5);
            renshejuHistoryDO.setInputParam(JSONObject.fromObject(uploadChapterBehaviorDTO).toString());
            renshejuHistoryDO.setOutputParam(RenSheJuConstant.PUSH_FAIL);
            renshejuHistoryMapper.insert(renshejuHistoryDO);
        }
        return null;
    }

    public RensheResponseVO uploadClassAnswerQuestionBehavior() throws IOException {

        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
        MediaType mediaType = MediaType.parse("application/json");

        UploadClassAnswerQuestionBehavior6DTO uploadClassAnswerQuestionBehaviorDTO = new UploadClassAnswerQuestionBehavior6DTO();

        //秘钥
        uploadClassAnswerQuestionBehaviorDTO.setPrivateKey(getSecret());

        List<DailyAnswerVO> dailyAnswerVOS = renSheJuMapper.dailyAnswer("1");

        try {
            if (dailyAnswerVOS.size() > 0) {
                HashMap<String, List<AnswerAndQuestionList>> hashMap = new HashMap<>();
                for (DailyAnswerVO dailyAnswerVO : dailyAnswerVOS) {

                    if (!hashMap.containsKey(dailyAnswerVO.getDownCode() + ":" + dailyAnswerVO.getIdentity())) {
                        List<AnswerAndQuestionList> answerAndQuestionLists = new ArrayList<>();
                        AnswerAndQuestionList answerAndQuestionList = new AnswerAndQuestionList();
                        answerAndQuestionList.setAnswer(dailyAnswerVO.getAnswer());
                        answerAndQuestionList.setQuestion(dailyAnswerVO.getQuestion());
                        answerAndQuestionLists.add(answerAndQuestionList);
                        hashMap.put(dailyAnswerVO.getDownCode() + ":" + dailyAnswerVO.getIdentity(), answerAndQuestionLists);
                    } else {
                        List<AnswerAndQuestionList> answerAndQuestionLists = hashMap.get(dailyAnswerVO.getDownCode() + ":" + dailyAnswerVO.getIdentity());
                        AnswerAndQuestionList answerAndQuestionList = new AnswerAndQuestionList();
                        answerAndQuestionList.setAnswer(dailyAnswerVO.getAnswer());
                        answerAndQuestionList.setQuestion(dailyAnswerVO.getQuestion());
                        answerAndQuestionLists.add(answerAndQuestionList);
                        hashMap.put(dailyAnswerVO.getDownCode() + ":" + dailyAnswerVO.getIdentity(), answerAndQuestionLists);
                    }
                }

                List<AnswerBasic6> answerBasics = new ArrayList<>();

                for (String key : hashMap.keySet()) {
                    AnswerBasic6 answerBasic = new AnswerBasic6();
                    String downCode = key.split(":")[0];
                    String identity = key.split(":")[1];
                    answerBasic.setClassCode(downCode);
                    answerBasic.setIdentity(identity);
                    answerBasic.setAnswerAndQuestionList(hashMap.get(key));
                    answerBasics.add(answerBasic);
                }

                uploadClassAnswerQuestionBehaviorDTO.setAnswerBasic(answerBasics);
                System.out.println(com.alibaba.fastjson.JSONObject.toJSONString(uploadClassAnswerQuestionBehaviorDTO));
                RequestBody body = RequestBody.create(mediaType, JSONObject.fromObject(uploadClassAnswerQuestionBehaviorDTO).toString());
                Request request = new Request.Builder()
                        .url(renSheConfig.getUrl() + "/import/downstream/social/uploadClassAnswerQuestionBehavior")
                        .method("POST", body)
                        .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
                        .addHeader("Content-Type", "application/json")
                        .build();
                Response response = client.newCall(request).execute();
                RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);
                System.out.println(rensheResponseVO);
                RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
                renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_6);
                renshejuHistoryDO.setInputParam(JSONObject.fromObject(uploadClassAnswerQuestionBehaviorDTO).toString());
                if (200 == response.code()) {
                    renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
                } else {
                    renshejuHistoryDO.setOutputParam(RenSheJuConstant.API_ERROR);
                }
                renshejuHistoryMapper.insert(renshejuHistoryDO);

                return rensheResponseVO;
//                return null;
            } else {
                RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
                renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_6);
                renshejuHistoryDO.setInputParam(JSONObject.fromObject(uploadClassAnswerQuestionBehaviorDTO).toString());
                renshejuHistoryDO.setOutputParam(RenSheJuConstant.NO_DATA);
                renshejuHistoryMapper.insert(renshejuHistoryDO);
                return null;
            }
        } catch (Exception e) {
            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_6);
            renshejuHistoryDO.setInputParam(JSONObject.fromObject(uploadClassAnswerQuestionBehaviorDTO).toString());
            renshejuHistoryDO.setOutputParam(RenSheJuConstant.PUSH_FAIL);
            renshejuHistoryMapper.insert(renshejuHistoryDO);
        }
        return null;
    }

    public List<RensheResponseVO> uploadImage() throws IOException {

        List<RensheResponseVO> rensheResponseVOS = new ArrayList<>();

        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
        MediaType mediaType = MediaType.parse("application/json");


        //找到昨天做过人脸识别的班级
        List<Long> classIds = renSheJuMapper.checkClassIds("1");

        for (Long classId : classIds) {

            UploadImageDTO7 uploadImage = new UploadImageDTO7();
            uploadImage.setPrivateKey(getSecret());
            uploadImage.setClassCode(String.valueOf(classId));

            List<ImageDetailList> imageDetailLists = new ArrayList<ImageDetailList>();
            try {
                /**
                 * 第二次人脸识别
                 */
                List<ClassImageChecksVO> classImageChecksVOS2 = renSheJuMapper.studyCheck(classId);

                if (classImageChecksVOS2.size() > 0) {
                    for (ClassImageChecksVO cicon : classImageChecksVOS2) {
                        int count = imageCheckRecordMapper.selectCount(new QueryWrapper<ImageCheckRecordDO>()
                                .lambda()
                                .eq(ImageCheckRecordDO::getResult, 1)
                                .isNull(ImageCheckRecordDO::getPaperId)
                                .eq(ImageCheckRecordDO::getMemberId, cicon.getMemberId())
                                .eq(ImageCheckRecordDO::getClassId, cicon.getClassId()));

                        ImageDetailList imageDetailList = new ImageDetailList();
                        BeanUtils.copyProperties(cicon, imageDetailList);
                        imageDetailList.setImageBase64("data:image/jpeg;base64," + OSSUtils.image2Base64(cicon.getImage()));
                        if (count == 1) {
                            imageDetailList.setProcessType(0L);
                            imageDetailList.setDetectionType(0L);
                        } else if (count == 2) {
                            imageDetailList.setProcessType(1L);
                            imageDetailList.setDetectionType(1L);
                        }
                        imageDetailLists.add(imageDetailList);
                    }

                }

                /**
                 * 考试检测数据
                 */
                List<ClassImageChecksVO> examChecks = renSheJuMapper.examCheck(classId);

                if (examChecks.size() > 0) {
                    for (ClassImageChecksVO cicon : examChecks) {

                        ImageDetailList imageDetailList = new ImageDetailList();
                        BeanUtils.copyProperties(cicon, imageDetailList);
                        imageDetailList.setImageBase64("data:image/jpeg;base64," + OSSUtils.image2Base64(cicon.getImage()));
                        imageDetailList.setProcessType(2L);
                        imageDetailList.setDetectionType(1L);
                        imageDetailLists.add(imageDetailList);
                    }
                }

                uploadImage.setImageDetailList(imageDetailLists);

                if (imageDetailLists.size() > 0) {
                    System.out.println(com.alibaba.fastjson.JSONObject.toJSONString(uploadImage));
                    RequestBody body = RequestBody.create(mediaType, JSONObject.fromObject(uploadImage).toString());
                    Request request = new Request.Builder()
                            .url(renSheConfig.getUrl() + "/import/downstream/social/uploadImage")
                            .method("POST", body)
                            .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
                            .addHeader("Content-Type", "application/json")
                            .build();
                    Response response = client.newCall(request).execute();
                    RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);

                    RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
                    renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_7);
                    renshejuHistoryDO.setInputParam(JSONObject.fromObject(uploadImage).toString());
                    renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
                    renshejuHistoryMapper.insert(renshejuHistoryDO);
                    rensheResponseVOS.add(rensheResponseVO);
                    System.out.println(111);
                } else {
                    RenshejuHistoryDO renshejuHistoryDO1 = new RenshejuHistoryDO();
                    renshejuHistoryDO1.setInterfaceName(ShehuihuaConstant.POST_7);
                    renshejuHistoryDO1.setInputParam(JSONObject.fromObject(uploadImage).toString());
                    renshejuHistoryDO1.setOutputParam(RenSheJuConstant.NO_DATA);
                    renshejuHistoryMapper.insert(renshejuHistoryDO1);
                }
//            return null;
            } catch (Exception e) {
                e.printStackTrace();
                RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
                renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_7);
                renshejuHistoryDO.setInputParam(JSONObject.fromObject(uploadImage).toString());
                renshejuHistoryDO.setOutputParam(RenSheJuConstant.PUSH_FAIL);
                renshejuHistoryMapper.insert(renshejuHistoryDO);
            }
        }

        return rensheResponseVOS;
    }

    public RensheResponseVO getErrorClass() throws IOException {

        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
        MediaType mediaType = MediaType.parse("application/json");
        RequestBody body = RequestBody.create(mediaType,"{\"privateKey\":\""+getSecret()+"\"}");
        Request request = new Request.Builder()
                .url(renSheConfig.getUrl() + "/import/downstream/social/getErrorClass")
                .method("POST", body)
                .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
                .addHeader("Content-Type", "application/json")
                .build();
        try {
            Response response = client.newCall(request).execute();
            RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);
            System.out.println(rensheResponseVO);
            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_8);
            renshejuHistoryDO.setInputParam(getSecret());
            if (200 == response.code()) {
                renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
            } else {
                renshejuHistoryDO.setOutputParam(RenSheJuConstant.API_ERROR);
            }
            renshejuHistoryMapper.insert(renshejuHistoryDO);
            return rensheResponseVO;
        } catch (Exception e) {
            RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
            renshejuHistoryDO.setInterfaceName(ShehuihuaConstant.POST_8);
            renshejuHistoryDO.setInputParam(getSecret());
            renshejuHistoryDO.setOutputParam(RenSheJuConstant.PUSH_FAIL);
            renshejuHistoryMapper.insert(renshejuHistoryDO);
        }
        return null;
    }

    public RensheStringVO clear() throws IOException {

        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
        MediaType mediaType = MediaType.parse("application/json");
        RequestBody body = RequestBody.create(mediaType,"{\"privateKey\":\""+getSecret()+"\"}");
        Request request = new Request.Builder()
                .url(renSheConfig.getUrl() + "/import/downstream/social/clear")
                .method("POST", body)
                .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
                .addHeader("Content-Type", "application/json")
                .build();
        Response response = client.newCall(request).execute();
        RensheStringVO rensheStringVO = JSON.parseObject(response.body().string(), RensheStringVO.class);
        System.out.println(rensheStringVO);

        return rensheStringVO;
    }


    public String getSecret() throws IOException {
        OkHttpClient client = new OkHttpClient().newBuilder()
                .build();
//        MediaType mediaType = MediaType.parse("text/plain");
        RequestBody body = new MultipartBody.Builder().setType(MultipartBody.FORM)
                .addFormDataPart("publicKey", renSheConfig.getSecretKey())
                .build();
        Request request = new Request.Builder()
                .url(renSheConfig.getUrl() + "/token/accessPrivateKey")
                .method("POST", body)
                .addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
                .build();
        Response response = client.newCall(request).execute();
        GetSecretVO getSecretVO = JSON.parseObject(response.body().string(), GetSecretVO.class);
        return getSecretVO.getCtt().getPrivateKey();
    }

    public static void main(String[] args) {
//        GetSecretVO getSecretVO = new GetSecretVO();
//
//        getSecretVO.setC(1);
//        getSecretVO.setMsg("aaaa");
//        GetSecretChildVO getSecretChildVO = new GetSecretChildVO();
//        getSecretChildVO.setIp("1121");
//        getSecretChildVO.setPrivateKey("1111111");
////        getSecretChildVO.setValidTime("2212");
//        getSecretVO.setCtt(getSecretChildVO);
//        String s = JSONObject.fromObject(getSecretVO).toString();
//        System.out.println(s);

        LocalDateTime localDateTime = LocalDateTime.now();
        System.out.println(localDateTime.toString());

    }

    public void test() {
        System.out.println("132222222222222222222222222222");
    }

}