admin
2020-07-22 73a3d86a47d8da711b609cd224c63526f7d00f9b
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
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
package com.yeshi.fanli.controller.client.v2;
 
import java.io.PrintWriter;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
 
import javax.annotation.Resource;
import javax.servlet.http.HttpSession;
 
import com.yeshi.fanli.service.inter.user.tb.UserExtraTaoBaoInfoService;
import org.springframework.core.task.TaskExecutor;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.yeshi.utils.JsonUtil;
 
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.yeshi.fanli.dto.ConfigParamsDTO;
import com.yeshi.fanli.dto.jd.JDFilter;
import com.yeshi.fanli.dto.jd.JDSearchFilter;
import com.yeshi.fanli.dto.jd.JDSearchResult;
import com.yeshi.fanli.dto.pdd.PDDGoodsDetail;
import com.yeshi.fanli.dto.pdd.PDDGoodsResult;
import com.yeshi.fanli.dto.pdd.PDDSearchFilter;
import com.yeshi.fanli.dto.suning.SuningCommodityInfo;
import com.yeshi.fanli.dto.suning.SuningGoodsInfo;
import com.yeshi.fanli.dto.suning.SuningQueryModel;
import com.yeshi.fanli.dto.vip.VIPSearchFilter;
import com.yeshi.fanli.dto.vip.VIPSearchResult;
import com.yeshi.fanli.dto.vip.goods.VIPGoodsInfo;
import com.yeshi.fanli.entity.accept.AcceptData;
import com.yeshi.fanli.entity.bus.help.AppPageNotification;
import com.yeshi.fanli.entity.goods.CommonGoods;
import com.yeshi.fanli.entity.jd.JDGoods;
import com.yeshi.fanli.entity.system.ConfigKeyEnum;
import com.yeshi.fanli.entity.taobao.SearchFilter;
import com.yeshi.goods.facade.entity.taobao.TaoBaoGoodsBrief;
import com.yeshi.fanli.entity.taobao.TaoBaoSearchResult;
import com.yeshi.goods.facade.entity.taobao.dataoke.DaTaoKeDetailV2;
import com.yeshi.fanli.exception.taobao.TaobaoGoodsDownException;
import com.yeshi.fanli.exception.user.TokenRecordException;
import com.yeshi.fanli.service.inter.brand.BrandInfoService;
import com.yeshi.fanli.service.inter.common.JumpDetailV2Service;
import com.yeshi.fanli.service.inter.config.BusinessSystemService;
import com.yeshi.fanli.service.inter.config.ConfigService;
import com.yeshi.fanli.service.inter.config.SuperHotSearchService;
import com.yeshi.fanli.service.inter.help.AppPageNotificationService;
import com.yeshi.fanli.service.inter.lable.QualityGoodsService;
import com.yeshi.fanli.service.inter.lable.TaoKeGoodsService;
import com.yeshi.fanli.service.inter.order.OrderHongBaoMoneyComputeService;
import com.yeshi.fanli.service.inter.order.config.HongBaoManageService;
import com.yeshi.fanli.service.inter.taobao.TaoBaoShopService;
import com.yeshi.fanli.service.inter.taobao.TaoBaoUnionConfigService;
import com.yeshi.goods.facade.service.DaTaoKeGoodsDetailV2Service;
import com.yeshi.fanli.service.inter.user.HistorySearchService;
import com.yeshi.fanli.service.inter.user.TokenRecordService;
import com.yeshi.fanli.service.inter.user.integral.IntegralGetService;
import com.yeshi.fanli.service.manger.ClipboardAnalysisManager;
import com.yeshi.fanli.service.manger.IClipboardAnalysisResult;
import com.yeshi.fanli.service.manger.goods.jd.JDGoodsLinkParseManager;
import com.yeshi.common.entity.PageEntity;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.util.StringUtil;
import com.yeshi.fanli.util.ThreadUtil;
import com.yeshi.fanli.util.VersionUtil;
import com.yeshi.fanli.util.annotation.RequestSerializableByKey;
import com.yeshi.fanli.util.cache.IntegralGetCacheManager;
import com.yeshi.fanli.util.cache.TaoBaoGoodsCacheUtil;
import com.yeshi.fanli.util.factory.CommonGoodsFactory;
import com.yeshi.fanli.util.factory.goods.GoodsDetailVOFactory;
import com.yeshi.fanli.util.jd.JDApiUtil;
import com.yeshi.fanli.util.jd.JDUtil;
import com.yeshi.fanli.util.pinduoduo.PinDuoDuoApiUtil;
import com.yeshi.fanli.util.pinduoduo.PinDuoDuoUtil;
import com.yeshi.fanli.util.suning.SuningApiUtil;
import com.yeshi.fanli.util.taobao.SearchFilterUtil;
import com.yeshi.fanli.util.taobao.TaoBaoUtil;
import com.yeshi.fanli.util.taobao.TaoKeApiUtil;
import com.yeshi.fanli.util.vipshop.VipShopApiUtil;
import com.yeshi.fanli.vo.brand.BrandInfoVO;
import com.yeshi.fanli.vo.brand.TaoBaoShopVO;
import com.yeshi.fanli.vo.common.JumpDetailContentVO;
import com.yeshi.fanli.vo.goods.GoodsDetailVO;
import com.yeshi.fanli.vo.msg.TokenVO;
import com.yeshi.fanli.vo.recommend.RecommendJumpInfoVO;
import com.yeshi.fanli.vo.search.GoodsDocParseResultVO;
 
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
@Controller
@RequestMapping("api/v2/search")
public class SearchControllerV2 {
 
    @Resource
    private ConfigService configService;
 
    @Resource
    private HistorySearchService historySearchService;
 
    @Resource
    private TaoBaoGoodsCacheUtil taoBaoGoodsCacheUtil;
 
    @Resource
    private TaoBaoShopService taoBaoShopService;
 
    @Resource
    private DaTaoKeGoodsDetailV2Service daTaoKeGoodsDetailV2Service;
 
    @Resource(name = "taskExecutor")
    private TaskExecutor executor;
 
    @Resource
    private TokenRecordService tokenRecordService;
 
    @Resource
    private IntegralGetService integralGetService;
 
    @Resource
    private IntegralGetCacheManager integralGetCacheManager;
 
    @Resource
    private BrandInfoService brandInfoService;
 
    @Resource
    private ClipboardAnalysisManager clipboardAnalysisManager;
 
    @Resource
    private JumpDetailV2Service jumpDetailV2Service;
 
    @Resource
    private OrderHongBaoMoneyComputeService orderHongBaoMoneyComputeService;
 
    @Resource
    private AppPageNotificationService appPageNotificationService;
 
    @Resource
    private UserExtraTaoBaoInfoService userExtraTaoBaoInfoService;
 
    /**
     * 粘贴板信息推荐
     *
     * @param acceptData
     * @param text
     * @param uid
     * @param out
     */
    @RequestMapping(value = "getRecommendInfo", method = RequestMethod.POST)
    public void getRecommendInfo(AcceptData acceptData, String text, Long uid, PrintWriter out) {
        if (StringUtil.isNullOrEmpty(text)) {
            out.print(JsonUtil.loadFalseResult("值为空"));
            return;
        }
        // 去除前后空格
        text = text.trim();
        String originalText = text;
 
        JSONObject data = new JSONObject();
 
        clipboardAnalysisManager.parse(acceptData.getPlatform(), acceptData.getVersion(), originalText, uid,
                new IClipboardAnalysisResult() {
 
                    @Override
                    public void onResult(GoodsDocParseResultVO result) {
                        if (uid == null) {
                            out.print(JsonUtil.loadFalseResult("无推荐"));
                            return;
                        }
 
                        JSONObject root = new JSONObject();
                        root.put("type", 20);
                        JSONObject data = new JSONObject();
                        data.put("text", originalText);
                        //
                        int platformCode = Constant.getPlatformCode(acceptData.getPlatform());
                        int version = Integer.parseInt(acceptData.getVersion());
                        JumpDetailContentVO convert = new JumpDetailContentVO();
                        convert.setJumpDetail(jumpDetailV2Service.getByTypeCache("web", platformCode, version));
                        JSONObject convertParams = new JSONObject();
                        convertParams.put("url", configService.getValue(ConfigKeyEnum.convertDocWebLink.getKey(), acceptData.getSystem()));
                        convertParams.put("clipboard", false);
                        convert.setParams(convertParams);
 
                        JumpDetailContentVO view = null;
                        JumpDetailContentVO guessLike = null;
 
                        Gson gson = JsonUtil.getApiCommonGson();
                        data.put("title", "智能搜索");
 
                        int state = 0;
                        if (result.getFirstGoods() != null && result.getFirstGoods().getGoodsId() != null) {
                            state = 2;
                            data.put("stateDesc", "选择搜券或转链");
                            JSONObject params = new JSONObject();
                            params.put("id", result.getFirstGoods().getGoodsId() + "");
                            params.put("from", "转链");
                            if (result.getFirstGoods().getGoodsType() == Constant.SOURCE_TYPE_TAOBAO) {
                                view = new JumpDetailContentVO();
                                view.setJumpDetail(
                                        jumpDetailV2Service.getByTypeCache("goodsdetail", platformCode, version));
                                view.setParams(params);
                            } else if (result.getFirstGoods().getGoodsType() == Constant.SOURCE_TYPE_JD) {
                                view = new JumpDetailContentVO();
                                view.setJumpDetail(
                                        jumpDetailV2Service.getByTypeCache("goodsdetail_jd", platformCode, version));
                                view.setParams(params);
                            } else if (result.getFirstGoods().getGoodsType() == Constant.SOURCE_TYPE_PDD) {
                                view = new JumpDetailContentVO();
                                view.setJumpDetail(
                                        jumpDetailV2Service.getByTypeCache("goodsdetail_pdd", platformCode, version));
                                view.setParams(params);
                            }
 
                        } else if (!StringUtil.isNullOrEmpty(result.getFirstLink())) {
                            state = 2;
                            data.put("stateDesc", "选择搜券或转链");
                            view = new JumpDetailContentVO();
                            view.setJumpDetail(jumpDetailV2Service.getByTypeCache("web", platformCode, version));
                            JSONObject params = new JSONObject();
                            params.put("url", result.getFirstLink());
                            view.setParams(params);
                        } else {
                            data.put("stateDesc", "去试试转链");
                            state = 1;
                        }
                        data.put("state", state);
                        if (convert != null)
                            data.put("convert", gson.toJson(convert));
                        if (view != null)
                            data.put("view", gson.toJson(view));
 
                        if (guessLike != null)
                            data.put("guessLike", gson.toJson(guessLike));
 
                        root.put("data", data);
                        out.print(JsonUtil.loadTrueResult(root));
                        return;
                    }
 
                    @Override
                    public void onResult(String result) {
                        JSONObject root = new JSONObject();
                        root.put("type", 2);
                        JSONObject data = new JSONObject();
                        data.put("title", result);
                        root.put("data", data);
                        out.print(JsonUtil.loadTrueResult(root));
                        return;
                    }
 
                    @Override
                    public void onResult(CommonGoods goods) {
                        if (goods.getGoodsId() != null) {
                            if (VersionUtil.greaterThan_1_6_5(acceptData.getPlatform(), acceptData.getVersion())) {// 1.6.5版本后返回商品详情
                                if (goods.getGoodsType() == Constant.SOURCE_TYPE_TAOBAO) {
                                    TaoBaoGoodsBrief goodsBrief = null;
                                    String specialId = userExtraTaoBaoInfoService.getSpecialIdByUid(uid);
                                    try {
                                        goodsBrief = TaoKeApiUtil.searchGoodsDetail(goods.getGoodsId(),specialId,null);
                                    } catch (TaobaoGoodsDownException e) {
                                        e.printStackTrace();
                                    }
 
                                    if (goodsBrief != null) {
                                        goods = CommonGoodsFactory.create(goodsBrief);
                                        Gson gson = JsonUtil
                                                .getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder())
                                                .excludeFieldsWithoutExposeAnnotation().setDateFormat("yyyy-MM-dd")
                                                .create();
                                        data.put("type", 3);
                                        data.put("goods",
                                                gson.toJson(
                                                        GoodsDetailVOFactory.convertCommonGoods(goods,
                                                                orderHongBaoMoneyComputeService.getShowComputeRate(
                                                                        acceptData.getPlatform(),
                                                                        acceptData.getVersion(), acceptData.getSystem()))));
                                        // 跳转详情
                                        if (VersionUtil.greaterThan_2_1_3(acceptData.getPlatform(),
                                                acceptData.getVersion())) {
                                            buildGoodsClick(data, goods, acceptData, gson);
                                        }
 
                                        out.print(JsonUtil.loadTrueResult(data));
                                        return;
                                    }
                                } else {
                                    Gson gson = JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder())
                                            .excludeFieldsWithoutExposeAnnotation().setDateFormat("yyyy-MM-dd")
                                            .create();
                                    data.put("type", 3);
                                    data.put("goods",
                                            gson.toJson(
                                                    GoodsDetailVOFactory.convertCommonGoods(goods,
                                                            orderHongBaoMoneyComputeService.getShowComputeRate(
                                                                    acceptData.getPlatform(),
                                                                    acceptData.getVersion(), acceptData.getSystem()))));
                                    // if
                                    // (VersionUtil.greaterThan_2_1_2(acceptData.getPlatform(),
                                    // acceptData.getVersion())) {
                                    // buildGoodsClick(data, goods, acceptData,
                                    // gson);
                                    // }
                                    out.print(JsonUtil.loadTrueResult(data));
                                    return;
                                }
                            } else {
                                // 低于1.6.5版本
                                JSONObject taoBaoGoodsJSON = new JSONObject();
                                taoBaoGoodsJSON.put("title", goods.getTitle());
                                taoBaoGoodsJSON.put("zkPrice", goods.getPrice() + "");
                                taoBaoGoodsJSON.put("id", goods.getGoodsId());
                                taoBaoGoodsJSON.put("goodsType", goods.getGoodsType());
                                if (goods.getGoodsType() == Constant.SOURCE_TYPE_TAOBAO) {
                                    taoBaoGoodsJSON.put("url",
                                            "http://item.taobao.com/item.htm?id=" + goods.getGoodsId());
                                } else if (goods.getGoodsType() == Constant.SOURCE_TYPE_JD) {
                                    taoBaoGoodsJSON.put("url",
                                            String.format("https://item.jd.com/%s.html", goods.getGoodsId() + ""));
                                } else if (goods.getGoodsType() == Constant.SOURCE_TYPE_PDD) {
                                    taoBaoGoodsJSON.put("url",
                                            "http://yangkeduo.com/goods.html?goods_id=" + goods.getGoodsId());
                                }
                                data.put("goods", taoBaoGoodsJSON);
                                List<String> picList = new ArrayList<>();
                                picList.add(goods.getPicture());
                                data.put("imgs", picList);
                                JSONObject root = new JSONObject();
                                root.put("type", 1);
                                root.put("data", data);
                                out.print(JsonUtil.loadTrueResult(root));
                                return;
                            }
                        }
 
                        JSONObject goodsJSON = new JSONObject();
                        goodsJSON.put("title", goods.getTitle());
                        goodsJSON.put("pictUrl", goods.getPicture());
 
                        data.put("type", 4);
                        data.put("desc", "该商品无推广信息");
                        data.put("goods", goodsJSON);
                        out.print(JsonUtil.loadTrueResult(data));
                        return;
                    }
 
                    @Override
                    public void onResult(TokenVO tokenVO) {
                        out.print(JsonUtil.loadTrueResult(tokenVO));
                        return;
                    }
 
                    @Override
                    public void none() {
                        out.print(JsonUtil.loadFalseResult("无推荐"));
                    }
 
                    @Override
                    public void needLogin(String msg) {
                        out.print(JsonUtil.loadFalseResult(1001, msg));
                    }
                });
    }
 
    private void buildGoodsClick(JSONObject data, CommonGoods goods, AcceptData acceptData, Gson gson) {
 
        JSONObject params = new JSONObject();
        params.put("id", goods.getGoodsId() + "");
        params.put("from", "猜你喜欢");
 
        String type = "";
        switch (goods.getGoodsType()) {
            case Constant.SOURCE_TYPE_TAOBAO:
                type = "goodsdetail";
                break;
            case Constant.SOURCE_TYPE_JD:
                type = "goodsdetail_jd";
                break;
            case Constant.SOURCE_TYPE_PDD:
                type = "goodsdetail_pdd";
                break;
            case Constant.SOURCE_TYPE_VIP:
                type = "goodsdetail_vip";
                break;
            case Constant.SOURCE_TYPE_SUNING:
                type = "goodsdetail_suning";
                break;
 
        }
 
        RecommendJumpInfoVO left = new RecommendJumpInfoVO("去看看", jumpDetailV2Service.getByTypeCache(type,
                Constant.getPlatformCode(acceptData.getPlatform()), Integer.parseInt(acceptData.getVersion())), params);
        data.put("left", gson.toJson(left));
 
        // 去网页
        String rightValue = configService.getByVersion(ConfigKeyEnum.clipboardRecommendGoodsMakeMore.getKey(),
                acceptData.getPlatform(), Integer.parseInt(acceptData.getVersion()), acceptData.getSystem());
 
        if (StringUtil.isNullOrEmpty(rightValue)) {
            data.remove("left");
        } else {
            params = new JSONObject();
            params.put("url", rightValue);
 
            RecommendJumpInfoVO right = new RecommendJumpInfoVO("有更高返利?", jumpDetailV2Service.getByTypeCache("web",
                    Constant.getPlatformCode(acceptData.getPlatform()), Integer.parseInt(acceptData.getVersion())),
                    params);
            data.put("right", gson.toJson(right));
        }
    }
 
    /**
     * 口令领取
     *
     * @param acceptData
     * @param uid
     * @param token
     * @param out
     */
    @RequestSerializableByKey(key = "'tokenReceive-'+#uid")
    @RequestMapping(value = "tokenReceive", method = RequestMethod.POST)
    public void tokenReceive(AcceptData acceptData, Long uid, String token, PrintWriter out) {
        try {
            String msg = tokenRecordService.receiveToken(token, uid, acceptData);
            out.print(JsonUtil.loadTrueResult(msg));
        } catch (TokenRecordException e) {
            out.print(JsonUtil.loadFalseResult(e.getCode(), e.getMsg()));
        }
    }
 
    /**
     * 搜索候选词
     *
     * @param acceptData
     * @param kw
     * @param out
     */
    @RequestMapping(value = "suggestSearch", method = RequestMethod.POST)
    public void getSugguestSearch(AcceptData acceptData, String kw, Integer goodsType, PrintWriter out) {
        if (goodsType == null) {
            out.print(JsonUtil.loadFalseResult("平台类型不能为空"));
            return;
        }
 
        List<String> list = null;
        if (goodsType == Constant.SOURCE_TYPE_TAOBAO) {
            list = TaoBaoUtil.getSuguestSearch(kw);
        } else if (goodsType == Constant.SOURCE_TYPE_JD) {
            list = JDUtil.suggestSearch(kw);
        } else if (goodsType == Constant.SOURCE_TYPE_PDD) {
            list = PinDuoDuoUtil.suggestSearch(kw);
        }
 
        if (list == null || list.size() == 0) {
            out.print(JsonUtil.loadFalseResult("暂无建议内容"));
            return;
        }
 
        JSONArray array = new JSONArray();
        for (String words : list) {
            array.add(words);
        }
        out.print(JsonUtil.loadTrueResult(array));
    }
 
    /**
     * @param acceptData
     * @param goodsType
     * @param key
     * @param page
     * @param filter
     * @param order      销量由高到低:1 、 价格从高到低:2 、 价格从低到高:3 、 推广量高到低:4(综合默认)、返利比高到低:5
     *                   *                   、返利比低到高:6 、推荐20
     * @param uid
     * @param notifyType
     * @param session
     * @param out
     */
    @RequestMapping(value = "searchGoods")
    public void searchGoods(AcceptData acceptData, Integer goodsType, String key, Integer page, String filter,
                            Integer order, Long uid, String notifyType, HttpSession session, PrintWriter out) {
 
        if (goodsType == null || goodsType < 1 || goodsType > 5) {
            out.print(JsonUtil.loadFalseResult(1, "请传递正确平台参数"));
            return;
        }
 
        if (page == null || page < 1) {
            out.print(JsonUtil.loadFalseResult(1, "页码不能小于1"));
            return;
        }
 
        if (StringUtil.isNullOrEmpty(key)) {
            out.print(JsonUtil.loadFalseResult(1, "请输入搜索内容"));
            return;
        }
        final String searchkey = key.trim();
 
        if (uid != null) {
            if (page == 1) {
                integralGetCacheManager.cacheSearchGoods(acceptData.getDevice(), System.currentTimeMillis());
            } else if (page > 1) {
                Long lastTime = integralGetCacheManager.getLastSearchTime(acceptData.getDevice());
                if (lastTime != null && System.currentTimeMillis() - lastTime >= 15 * 1000L) {// 超过15s浏览
                    integralGetCacheManager.clearSearchTime(acceptData.getDevice());
                    ThreadUtil.run(new Runnable() {
                        @Override
                        public void run() {
                            // 增加金币
                            integralGetService.addSearchResultScan(uid, key);
                        }
                    });
                }
            }
        }
 
        executor.execute(new Runnable() {
            @Override
            public void run() {
                StringBuffer sb = new StringBuffer();
                String link = "#$$$#";
                String platform = acceptData.getPlatform();
                String packages = acceptData.getPackages();
                String device = acceptData.getDevice();
                sb.append(platform).append(link).append(packages).append(link).append(device);
                String bid = StringUtil.Md5(sb.toString());
 
                // 加入搜索历史记录
                historySearchService.addHistorySearch(searchkey, bid);
            }
        });
 
        if (searchkey.startsWith("http://") || searchkey.startsWith("https://")) {
            JSONObject data = new JSONObject();
            data.put("result", new JSONArray());
            data.put("count", 0);
            out.print(JsonUtil.loadTrueResult(data));
            return;
        }
        AppPageNotification ap = null;
        if (page == 1) {
            ap = appPageNotificationService.getValidNotificationByTypeCache(notifyType, acceptData.getPlatform(),
                    Integer.parseInt(acceptData.getVersion()), acceptData.getSystem());
            // 没有通知
            if (ap == null || !ap.getShow()) {
                ap = null;
            }
 
            // else {// 有通知
            // Gson gson = new
            // GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
            // out.print(JsonUtil.loadTrueResult(gson.toJson(ap)));
            // }
        }
 
        /*--------- 京东商品  -------*/
        if (goodsType.intValue() == Constant.SOURCE_TYPE_JD) {
            searchJDGoods(acceptData, searchkey, page, filter, order, ap, out);
            return;
        }
 
        /*-------- 拼多多商品  -------*/
        if (goodsType.intValue() == Constant.SOURCE_TYPE_PDD) {
            searchPDDGoods(acceptData, searchkey, page, filter, order, ap, out);
            return;
        }
 
        /*-------- 唯品会商品 ------*/
        if (goodsType.intValue() == Constant.SOURCE_TYPE_VIP) {
            searchVIPGoods(acceptData, searchkey, page, filter, order, ap, out);
            return;
        }
 
        /*-------- 苏宁商品 ------*/
        if (goodsType.intValue() == Constant.SOURCE_TYPE_SUNING) {
            searchSuningGoods(acceptData, searchkey, page, filter, order, ap, out);
            return;
        }
 
        /*-------- 淘宝商品  -------*/
        searchTaoBaoGoods(acceptData, uid, searchkey, page, filter, order, ap, out);
 
    }
 
    /**
     * 执行搜索-新版
     *
     * @param acceptData
     * @param uid
     * @param key
     * @param page
     * @param filter
     * @param order
     * @param ap
     * @param out
     */
    private void searchTaoBaoGoods(AcceptData acceptData, Long uid, String key, Integer page, String filter, Integer order,
                                   AppPageNotification ap, PrintWriter out) {
        SearchFilter sf = new SearchFilter();
        sf.setKey(SearchFilterUtil.filterSearchContent(key));
        sf.setPage(page);
        sf.setPageSize(Constant.PAGE_SIZE);
 
        if (order != null) {
            if (order == 1) { // 销量高到低
                sf.setSort(TaoBaoUtil.SORT_SALE_HIGH_TO_LOW);
            } else if (order == 2) { // 价格高到低
                sf.setSort(TaoBaoUtil.SORT_PRICE_HIGH_TO_LOW);
            } else if (order == 3) { // 价格低到高
                sf.setSort(TaoBaoUtil.SORT_PRICE_LOW_TO_HIGH);
            } else if (order == 4) { // 返利比高到低
                sf.setSort(TaoBaoUtil.SORT_TKRATE_HIGH_TO_LOW);
            }
        }
 
        if (!StringUtil.isNullOrEmpty(filter)) {
            JSONObject jsonfilter = JSONObject.fromObject(filter);
            Boolean coupon = jsonfilter.optBoolean("coupon");
            if (coupon != null && coupon) {
                sf.setQuan(1); // 有券
            }
 
            Boolean tmall = jsonfilter.optBoolean("tmall");
            if (tmall != null && tmall) {
                sf.setTmall(true); // 天猫
            }
 
            String minPrice = jsonfilter.optString("minPrice");
            if (!StringUtil.isNullOrEmpty(minPrice)) {
                sf.setStartPrice(new BigDecimal(minPrice));
            }
 
            String maxPrice = jsonfilter.optString("maxPrice");
            if (!StringUtil.isNullOrEmpty(maxPrice)) {
                sf.setEndPrice(new BigDecimal(maxPrice));
            }
        }
 
        // 搜索大淘客
        List<DaTaoKeDetailV2> daTaoKeList = null;
        if (page == 1) {
            daTaoKeList = daTaoKeGoodsDetailV2Service.listByDtitle(key);
        }
 
        String specialId = null;
        if (uid != null) {
            specialId = userExtraTaoBaoInfoService.getSpecialIdByUid(uid);
        }
 
        // 淘宝api搜索商品
        TaoBaoSearchResult result = TaoBaoUtil.search(sf, specialId, null);
 
        // 搜索结果缓存到redis
        if (result != null && result.getTaoBaoGoodsBriefs() != null && result.getTaoBaoGoodsBriefs().size() > 0) {
            ThreadUtil.run(new Runnable() {
                @Override
                public void run() {
                    // 更新到緩存
                    for (TaoBaoGoodsBrief goods : result.getTaoBaoGoodsBriefs())
                        taoBaoGoodsCacheUtil.saveCommonTaoBaoGoodsInfo(goods);
                }
            });
        }
 
        List<TaoBaoGoodsBrief> taoBaoGoodsBriefs = null;
        if (result != null) {
            taoBaoGoodsBriefs = result.getTaoBaoGoodsBriefs();
        }
        if (taoBaoGoodsBriefs == null) {
            taoBaoGoodsBriefs = new ArrayList<>();
        }
 
        if (daTaoKeList != null && daTaoKeList.size() > 0) {
            try {
                Collections.reverse(daTaoKeList);
                for (DaTaoKeDetailV2 detail : daTaoKeList) {
                    taoBaoGoodsBriefs.add(0, TaoBaoUtil.convert(detail));
                }
            } catch (Exception e) {
            }
        }
 
        List<GoodsDetailVO> list = new ArrayList<GoodsDetailVO>();
        ConfigParamsDTO paramsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(acceptData.getPlatform(),
                acceptData.getVersion(), acceptData.getSystem());
 
        for (TaoBaoGoodsBrief goods : taoBaoGoodsBriefs) {
            list.add(GoodsDetailVOFactory.convertTaoBao(goods, paramsDTO));
        }
 
        Gson gson = JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder())
                .excludeFieldsWithoutExposeAnnotation().create();
 
        JSONObject data = new JSONObject();
        data.put("result", gson.toJson(list));
        data.put("count", result.getTaoBaoHead().getDocsfound());
 
        if (page == 1) { // 第一页返回店铺信息
            String platform = acceptData.getPlatform();
            String version = acceptData.getVersion();
            if (("ios".equalsIgnoreCase(platform) && VersionUtil.greaterThan_2_0_5(platform, version))
                    || ("android".equalsIgnoreCase(platform) && VersionUtil.greaterThan_2_0_2(platform, version))) {
                BrandInfoVO brandInfoVO = null;
                try {
                    brandInfoVO = brandInfoService.listByAlikeName(key, acceptData.getPlatform(),
                            acceptData.getVersion(), acceptData.getSystem());
                } catch (Exception e) {
                }
                if (brandInfoVO != null)
                    data.put("shop", JsonUtil.getApiCommonGson().toJson(brandInfoVO));
            } else {
                List<TaoBaoShopVO> listShop = taoBaoShopService.getShopByKeyV2(key, acceptData.getPlatform(),
                        acceptData.getVersion(), acceptData.getSystem());
                if (listShop != null && listShop.size() > 0 && listShop.get(0).getListGoodsVO() != null
                        && listShop.get(0).getListGoodsVO().size() > 2) {
                    TaoBaoShopVO taoBaoShop = listShop.get(0);
                    if (("ios".equalsIgnoreCase(platform) && VersionUtil.greaterThan_2_0(platform, version))
                            || ("android".equalsIgnoreCase(platform)
                            && VersionUtil.greaterThan_2_0_1(platform, version))) {
                        BrandInfoVO brandInfoVO = new BrandInfoVO();
                        brandInfoVO.setId(taoBaoShop.getId());
                        brandInfoVO.setName(taoBaoShop.getShopName());
                        brandInfoVO.setIcon(taoBaoShop.getShopIcon());
                        brandInfoVO.setListGoods(taoBaoShop.getListGoodsVO());
                        data.put("shop", JsonUtil.getApiCommonGson().toJson(brandInfoVO));
                    } else {
                        data.put("shop", JsonUtil.getApiCommonGson().toJson(taoBaoShop));
                    }
                }
            }
        }
 
        out.print(JsonUtil.loadTrueResult(buildSearchResult(data, ap)));
    }
 
    private JSONObject buildSearchResult(JSONObject data, AppPageNotification ap) {
        if (ap != null && data != null) {
            Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
            data.put("notification", gson.toJson(ap));
        }
        return data;
    }
 
    /**
     * @param acceptData
     * @param key
     * @param page
     * @param filter
     * @param order
     * @param ap
     * @param out
     */
    private void searchJDGoods(AcceptData acceptData, String key, Integer page, String filter, Integer order,
                               AppPageNotification ap, PrintWriter out) {
 
        JDSearchResult result = null;
        boolean hasCoupon = false;
        String way = configService.getValue(ConfigKeyEnum.jdApiSearchKey.getKey(), acceptData.getSystem());
        if ("1".equals(way)) {
            JDFilter filterAPI = new JDFilter();
            filterAPI.setKeyword(SearchFilterUtil.filterSearchContent(key));
            filterAPI.setPageIndex(page);
            filterAPI.setPageSize(Constant.PAGE_SIZE);
 
            if (order != null) {
                int sort = order.intValue();
                switch (sort) {
                    case 1: // 销量 desc
                        filterAPI.setSort(JDFilter.SORT_DESC);
                        filterAPI.setSortName(JDFilter.SORTNAME_ORDER_COUNT_30DAYS);
                        break;
                    case 2: // 价格—desc
                        filterAPI.setSort(JDFilter.SORT_DESC);
                        filterAPI.setSortName(JDFilter.SORTNAME_PRICE);
                        break;
                    case 3: // 价格—asc
                        filterAPI.setSort(JDFilter.SORT_ASC);
                        filterAPI.setSortName(JDFilter.SORTNAME_PRICE);
                        break;
                    case 4: // 返利比—DESC
                        filterAPI.setSort(JDFilter.SORT_DESC);
                        filterAPI.setSortName(JDFilter.SORTNAME_COMMISSION_SHARE);
                        break;
                    default:
                        break;
                }
            }
 
            if (!StringUtil.isNullOrEmpty(filter)) {
                JSONObject jsonfilter = JSONObject.fromObject(filter);
                Boolean coupon = jsonfilter.optBoolean("coupon");
                if (coupon != null && coupon) {
                    hasCoupon = true;
                    filterAPI.setIsCoupon(1); // 有券
                }
 
                Boolean zy = jsonfilter.optBoolean("zy");
                if (zy != null && zy) {
                    filterAPI.setOwner("g"); // 自营
                }
 
                String minPrice = jsonfilter.optString("minPrice");
                if (!StringUtil.isNullOrEmpty(minPrice)) {
                    filterAPI.setPricefrom(Double.parseDouble(minPrice));
                }
 
                String maxPrice = jsonfilter.optString("maxPrice");
                if (!StringUtil.isNullOrEmpty(maxPrice)) {
                    filterAPI.setPriceto(Double.parseDouble(maxPrice));
                }
            }
 
            result = JDApiUtil.queryByKey(filterAPI);
        } else {
            // 网页爬取
            JDSearchFilter jdfilter = new JDSearchFilter();
            jdfilter.setKey(SearchFilterUtil.filterSearchContent(key));
            jdfilter.setPageNo(page);
            jdfilter.setPageSize(Constant.PAGE_SIZE);
 
            if (order != null) {
                int sort = order.intValue();
                switch (sort) {
                    case 1: // 销量 desc
                        jdfilter.setSort(JDSearchFilter.SORT_DESC);
                        jdfilter.setSortName(JDSearchFilter.SORTNAME_ORDER_COUNT_30DAYS);
                        break;
                    case 2: // 价格—desc
                        jdfilter.setSort(JDSearchFilter.SORT_DESC);
                        jdfilter.setSortName(JDSearchFilter.SORTNAME_PRICE);
                        break;
                    case 3: // 价格—asc
                        jdfilter.setSort(JDSearchFilter.SORT_ASC);
                        jdfilter.setSortName(JDSearchFilter.SORTNAME_PRICE);
                        break;
                    case 4: // 返利比—DESC
                        jdfilter.setSort(JDSearchFilter.SORT_DESC);
                        jdfilter.setSortName(JDSearchFilter.SORTNAME_COMMISSION_SHARE);
                        break;
                    default:
                        break;
                }
            }
 
            if (!StringUtil.isNullOrEmpty(filter)) {
                JSONObject jsonfilter = JSONObject.fromObject(filter);
                Boolean coupon = jsonfilter.optBoolean("coupon");
                if (coupon != null && coupon) {
                    hasCoupon = true;
                    jdfilter.setHasCoupon(1); // 有券
                }
 
                Boolean zy = jsonfilter.optBoolean("zy");
                if (zy != null && zy) {
                    jdfilter.setIsZY(1); // 自营
                }
 
                Boolean delivery = jsonfilter.optBoolean("delivery");
                if (delivery != null && delivery) {
                    jdfilter.setDeliveryType(1); // 京东配送
                }
 
                String minPrice = jsonfilter.optString("minPrice");
                if (!StringUtil.isNullOrEmpty(minPrice)) {
                    if (minPrice.contains(".")) {
                        minPrice = minPrice.replace(".", "-");
                        minPrice = minPrice.split("-")[0];
                    }
                    jdfilter.setFromPrice(Integer.parseInt(minPrice));
                }
 
                String maxPrice = jsonfilter.optString("maxPrice");
                if (!StringUtil.isNullOrEmpty(maxPrice)) {
                    if (maxPrice.contains(".")) {
                        maxPrice = maxPrice.replace(".", "-");
                        maxPrice = maxPrice.split("-")[0];
                    }
                    jdfilter.setToPrice(Integer.parseInt(maxPrice));
                }
            }
            result = JDUtil.searchByKey(jdfilter);
 
        }
 
        long count = 0;
        JSONObject data = new JSONObject();
        JSONArray array = new JSONArray();
        if (result != null) {
            PageEntity pageEntity = result.getPageEntity();
            if (pageEntity != null) {
                count = pageEntity.getTotalCount();
            }
 
            List<JDGoods> goodsList = result.getGoodsList();
            if (goodsList != null && goodsList.size() > 0) {
                Gson gson = JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder())
                        .excludeFieldsWithoutExposeAnnotation().setDateFormat("yyyy-MM-dd").create();
                ConfigParamsDTO paramsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(acceptData.getPlatform(),
                        acceptData.getVersion(), acceptData.getSystem());
                for (JDGoods goods : goodsList) {
                    GoodsDetailVO goodsDetailVO = GoodsDetailVOFactory.convertJDGoods(goods, paramsDTO);
                    if (hasCoupon) {
                        if (goodsDetailVO.isHasCoupon()) {
                            array.add(gson.toJson(goodsDetailVO));
                        }
                    } else {
                        array.add(gson.toJson(goodsDetailVO));
                    }
                }
            }
        }
 
        data.put("result", array);
        data.put("count", count);
        out.print(JsonUtil.loadTrueResult(buildSearchResult(data, ap)));
    }
 
 
    /**
     * 拼多多
     *
     * @param acceptData
     * @param key
     * @param page
     * @param filter
     * @param order
     * @param ap
     * @param out
     */
    private void searchPDDGoods(AcceptData acceptData, String key, Integer page, String filter, Integer order,
                                AppPageNotification ap, PrintWriter out) {
        PDDSearchFilter pddfilter = new PDDSearchFilter();
        pddfilter.setKw(SearchFilterUtil.filterSearchContent(key));
        pddfilter.setPage(page);
        pddfilter.setPageSize(Constant.PAGE_SIZE);
 
        if (order != null) {
            int sort = order.intValue();
            switch (sort) {
                case 1: // 销量 desc
                    pddfilter.setSortType(6);
                    break;
                case 2: // 价格—desc
                    pddfilter.setSortType(4);
                    break;
                case 3: // 价格—asc
                    pddfilter.setSortType(3);
                    break;
                case 4: // 返利比—desc
                    pddfilter.setSortType(2);
                    break;
                default: // 综合排序
                    pddfilter.setSortType(0);
                    break;
            }
        }
 
        if (!StringUtil.isNullOrEmpty(filter)) {
            JSONObject jsonfilter = JSONObject.fromObject(filter);
            Boolean coupon = jsonfilter.optBoolean("coupon");
            if (coupon != null && coupon) {
                pddfilter.setHasCoupon(true); // 有券
            }
 
            Boolean brand = jsonfilter.optBoolean("brand");
            if (brand != null && brand) {
                pddfilter.setIsBrand(true); // 是否是品牌
            }
        }
 
        int count = 0;
        JSONObject data = new JSONObject();
        JSONArray array = new JSONArray();
 
        PDDGoodsResult result = PinDuoDuoApiUtil.searchGoods(pddfilter);
        if (result != null) {
            count = result.getTotalCount();
            Gson gson = JsonUtil.getApiCommonGson();
            List<PDDGoodsDetail> goodsList = result.getGoodsList();
            if (goodsList != null && goodsList.size() > 0) {
                ConfigParamsDTO paramsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(acceptData.getPlatform(),
                        acceptData.getVersion(), acceptData.getSystem());
 
                for (PDDGoodsDetail goods : goodsList) {
                    GoodsDetailVO goodsDetailVO = GoodsDetailVOFactory.convertPDDGoods(goods, paramsDTO);
                    array.add(gson.toJson(goodsDetailVO));
                }
            }
        }
 
        data.put("result", array);
        data.put("count", count);
        out.print(JsonUtil.loadTrueResult(buildSearchResult(data, ap)));
    }
 
    /**
     * 搜索唯品会商品
     *
     * @param acceptData
     * @param key
     * @param page
     * @param filter
     * @param order
     * @param out        void 返回类型
     * @throws
     * @Title: searchVIPGoods
     * @Description:
     */
    private void searchVIPGoods(AcceptData acceptData, String key, Integer page, String filter, Integer order,
                                AppPageNotification ap, PrintWriter out) {
        VIPSearchFilter searchFilter = new VIPSearchFilter();
        searchFilter.setKeyword(key);
        searchFilter.setPage(page);
        searchFilter.setPageSize(Constant.PAGE_SIZE);
 
        if (order != null) {
            int sort = order.intValue();
            switch (sort) {
                case 2: // 价格—desc
                    searchFilter.setFieldName("price");
                    searchFilter.setOrder(1);
                    break;
                case 3: // 价格—asc
                    searchFilter.setFieldName("price");
                    searchFilter.setOrder(0);
                    break;
                case 5: // 折扣—aec
                    searchFilter.setFieldName("discount");
                    searchFilter.setOrder(0);
                    break;
                default: // 综合排序
                    break;
            }
        }
 
        if (!StringUtil.isNullOrEmpty(filter)) {
            JSONObject jsonfilter = JSONObject.fromObject(filter);
            String minPrice = jsonfilter.optString("minPrice");
            if (!StringUtil.isNullOrEmpty(minPrice)) {
                searchFilter.setPriceStart(minPrice);
            }
 
            String maxPrice = jsonfilter.optString("maxPrice");
            if (!StringUtil.isNullOrEmpty(maxPrice)) {
                searchFilter.setPriceEnd(maxPrice);
            }
        }
 
        int count = 0;
        JSONObject data = new JSONObject();
        JSONArray array = new JSONArray();
 
        VIPSearchResult result = VipShopApiUtil.search(searchFilter);
        if (result != null) {
            count = result.getTotal();
            Gson gson = JsonUtil.getApiCommonGson();
            List<VIPGoodsInfo> goodsList = result.getGoodsList();
            if (goodsList != null && goodsList.size() > 0) {
                ConfigParamsDTO paramsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(acceptData.getPlatform(),
                        acceptData.getVersion(), acceptData.getSystem());
 
                for (VIPGoodsInfo goods : goodsList) {
                    GoodsDetailVO goodsDetailVO = GoodsDetailVOFactory.convertVIPGoods(goods, paramsDTO);
                    array.add(gson.toJson(goodsDetailVO));
                }
            }
        }
 
        data.put("result", array);
        data.put("count", count);
        out.print(JsonUtil.loadTrueResult(buildSearchResult(data, ap)));
    }
 
    /**
     * 搜索唯品会商品
     *
     * @param acceptData
     * @param key
     * @param page
     * @param filter
     * @param order
     * @param out        void 返回类型
     * @throws
     * @Title: searchVIPGoods
     * @Description:
     */
    private void searchSuningGoods(AcceptData acceptData, String key, Integer page, String filter, Integer order,
                                   AppPageNotification ap, PrintWriter out) {
        SuningQueryModel searchFilter = new SuningQueryModel();
        searchFilter.setKeyword(key);
        searchFilter.setPageIndex(page);
        searchFilter.setSize(10);
 
        if (order != null) {
            if (order == 1) { // 销量高到低
                searchFilter.setSortType(2);
            } else if (order == 2) { // 价格高到低
                searchFilter.setSortType(3);
            } else if (order == 3) { // 价格低到高
                searchFilter.setSortType(4);
            } else if (order == 4) { // 返利比高到低
                searchFilter.setSortType(5);
            }
        }
 
        if (!StringUtil.isNullOrEmpty(filter)) {
            JSONObject jsonfilter = JSONObject.fromObject(filter);
            Boolean coupon = jsonfilter.optBoolean("coupon");
            if (coupon != null && coupon) {
                searchFilter.setCoupon(1); // 有券
            }
 
            Boolean snfwservice = jsonfilter.optBoolean("snfwservice");// 苏宁服务
            if (snfwservice != null && snfwservice) {
                searchFilter.setSnfwservice(1);
            }
 
            Boolean snhwg = jsonfilter.optBoolean("snhwg");// 苏宁国际
            if (snhwg != null && snhwg) {
                searchFilter.setSnhwg(1);
            }
 
            Boolean suningService = jsonfilter.optBoolean("suningService");// 苏宁自营
            if (suningService != null && suningService) {
                searchFilter.setSuningService(1);
            }
 
            Boolean pgSearch = jsonfilter.optBoolean("pgSearch");// 拼购
            if (pgSearch != null && pgSearch) {
                searchFilter.setPgSearch(1);
            }
 
            String minPrice = jsonfilter.optString("minPrice");
            if (!StringUtil.isNullOrEmpty(minPrice)) {
                searchFilter.setStartPrice(minPrice);
            }
 
            String maxPrice = jsonfilter.optString("maxPrice");
            if (!StringUtil.isNullOrEmpty(maxPrice)) {
                searchFilter.setEndPrice(maxPrice);
            }
        }
 
        JSONObject data = new JSONObject();
        JSONArray array = new JSONArray();
 
        List<SuningGoodsInfo> resultList = null;
        List<SuningGoodsInfo> list = SuningApiUtil.searchGoodsOld(searchFilter);
        if (list != null && list.size() > 0) {
            List<String> listId = new ArrayList<>();
            for (SuningGoodsInfo goodsInfo : list) {
                SuningCommodityInfo info = goodsInfo.getCommodityInfo();
                if (info != null) {
                    listId.add(info.getCommodityCode() + "-" + info.getSupplierCode());
                }
            }
            resultList = SuningApiUtil.getGoodsDetailList(listId);
        }
 
        if (resultList != null) {
            Gson gson = JsonUtil.getApiCommonGson();
            if (resultList != null && resultList.size() > 0) {
                ConfigParamsDTO paramsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(acceptData.getPlatform(),
                        acceptData.getVersion(), acceptData.getSystem());
 
                for (SuningGoodsInfo goods : resultList) {
                    GoodsDetailVO goodsDetailVO = GoodsDetailVOFactory.convertSuningGoods(goods, paramsDTO);
                    array.add(gson.toJson(goodsDetailVO));
                }
            }
        }
 
        data.put("result", array);
        data.put("count", 1000);
        out.print(JsonUtil.loadTrueResult(buildSearchResult(data, ap)));
    }
 
}