admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
package com.yeshi.fanli.controller.client.v1;
 
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
import javax.annotation.Resource;
 
import com.ks.push.pojo.DO.BPushDeviceToken;
import com.ks.push.pojo.DO.PushPlatform;
import com.ks.push.service.BDeviceTokenService;
import org.apache.commons.beanutils.PropertyUtils;
import org.apache.dubbo.config.annotation.Reference;
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 org.yeshi.utils.taobao.TbImgUtil;
 
import com.google.gson.GsonBuilder;
import com.yeshi.fanli.entity.accept.AcceptData;
import com.yeshi.fanli.entity.bus.activity.ActivityUser;
import com.yeshi.fanli.entity.common.JumpDetailV2;
import com.yeshi.fanli.entity.dynamic.GoodsEvaluate;
import com.yeshi.fanli.entity.dynamic.ImgInfo;
import com.yeshi.fanli.entity.dynamic.ImgInfo.ImgEnum;
import com.yeshi.fanli.entity.goods.CommonGoods;
import com.yeshi.fanli.entity.push.DeviceActive;
import com.yeshi.fanli.entity.push.DeviceTokenOPPO;
import com.yeshi.fanli.entity.push.DeviceTokenVIVO;
import com.yeshi.fanli.entity.push.DeviceTokenXM;
import com.yeshi.fanli.entity.push.PushGoods;
import com.yeshi.fanli.entity.push.PushGoodsGroup;
import com.yeshi.fanli.entity.push.PushGoodsRecord;
import com.yeshi.fanli.entity.system.BusinessSystem;
import com.yeshi.fanli.entity.system.ConfigKeyEnum;
import com.yeshi.fanli.exception.push.PushGoodsGroupException;
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.dynamic.GoodsEvaluateService;
import com.yeshi.fanli.service.inter.push.DeviceActiveService;
import com.yeshi.fanli.service.inter.push.DeviceTokenHWService;
import com.yeshi.fanli.service.inter.push.DeviceTokenOPPOService;
import com.yeshi.fanli.service.inter.push.DeviceTokenVIVOService;
import com.yeshi.fanli.service.inter.push.DeviceTokenXMService;
import com.yeshi.fanli.service.inter.push.IOSPushService;
import com.yeshi.fanli.service.inter.push.PushGoodsGroupService;
import com.yeshi.fanli.service.inter.push.PushGoodsRecordService;
import com.yeshi.fanli.service.inter.push.PushGoodsService;
import com.yeshi.fanli.service.inter.push.PushRecordService;
import com.yeshi.fanli.service.inter.push.PushService;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.util.StringUtil;
import org.yeshi.utils.TimeUtil;
import com.yeshi.fanli.util.annotation.RequestSerializableByKey;
import com.yeshi.fanli.util.factory.JumpDetailParamsFactory;
import com.yeshi.common.vo.ClientTextStyleVO;
import com.yeshi.fanli.vo.push.PushRecommendVO;
 
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
@Controller
@RequestMapping(value = "api/v1/push")
public class PushController {
    @Resource
    private BusinessSystemService businessSystemService;
 
    @Resource
    private PushRecordService pushRecordService;
 
    @Resource
    private IOSPushService iosPushService;
 
    @Resource
    private DeviceTokenHWService deviceTokenHWService;
 
    @Resource
    private DeviceActiveService deviceActiveService;
 
    @Resource
    private PushService pushService;
 
    @Resource
    private PushGoodsService pushGoodsService;
 
    @Resource
    private PushGoodsGroupService pushGoodsGroupService;
 
    @Resource
    private PushGoodsRecordService pushGoodsRecordService;
 
    @Resource
    private JumpDetailV2Service jumpDetailV2Service;
 
    @Resource
    private ConfigService configService;
 
    @Resource(name = "taskExecutor")
    private TaskExecutor executor;
 
    @Resource
    private DeviceTokenOPPOService deviceTokenOPPOService;
 
    @Resource
    private DeviceTokenVIVOService deviceTokenVIVOService;
 
    @Resource
    private DeviceTokenXMService deviceTokenXMService;
    
    @Resource
    private GoodsEvaluateService goodsEvaluateService;
 
    @Reference(version = "1.0", check = false)
    private BDeviceTokenService bDeviceTokenService;
 
    /**
     * 店铺列表
     *
     * @param acceptData
     * @param out
     */
    @RequestMapping(value = "bindToken", method = RequestMethod.POST)
    public void bindToken(AcceptData acceptData, Long uid, String type, String token, PrintWriter out) {
        BPushDeviceToken deviceToken = new BPushDeviceToken();
        deviceToken.setAppCode(acceptData.getSystem().name());
        deviceToken.setDeviceId(StringUtil.isNullOrEmpty(acceptData.getUtdid()) ? acceptData.getDevice() : acceptData.getUtdid());
        deviceToken.setBuildModel(acceptData.getDeviceType());
        deviceToken.setBuildVersion(acceptData.getOsVersion());
        deviceToken.setToken(token);
        switch (type) {
            case "huawei":
                type = "hw";
                break;
            case "xiaomi":
                type = "xm";
                break;
            case "meizu":
                type = "mz";
                break;
        }
        deviceToken.setType(PushPlatform.valueOf(type));
        deviceToken.setUid(uid + "");
        deviceToken.setVersionCode(Integer.parseInt(acceptData.getVersion()));
        try {
            bDeviceTokenService.save(deviceToken);
            out.print(JsonUtil.loadTrueResult(""));
        } catch (Exception e) {
            out.print(JsonUtil.loadFalseResult("绑定出错:" + e.getMessage()));
            e.printStackTrace();
        }
    }
 
 
 
    @RequestMapping(value = "callback", method = RequestMethod.POST)
    public void callback(AcceptData acceptData, String pushId, PrintWriter out) {
        BusinessSystem system = businessSystemService.getBusinessSystemCache(acceptData.getPlatform(),
                acceptData.getPackages(),acceptData.getSystem());
        if (system == null) {
            out.print(JsonUtil.loadFalseResult("不存在该系统"));
            return;
        }
        int platform = system.getPlatform();
        if (platform == 1) {
            pushRecordService.increaseByAndroid(pushId);
        } else {
            pushRecordService.increaseByIOS(pushId);
        }
        out.print(JsonUtil.loadTrueResult("回调成功"));
    }
 
    /**
     * 
     * 插入苹果推送的deviceToken
     * 
     * @author mawurui createTime 2018年5月8日 下午4:15:44
     * @param deviceToken
     */
    @RequestMapping(value = "/insertDeviceToken", method = RequestMethod.POST)
    public void insertIOSDeviceToken(AcceptData acceptData, String deviceToken, PrintWriter out) {
        if (!StringUtil.isNullOrEmpty(acceptData.getDevice()) && !StringUtil.isNullOrEmpty(deviceToken)) {
            // 添加设备活跃记录
            iosPushService.addDeviceToken(null, Integer.parseInt(acceptData.getVersion()), deviceToken,
                    acceptData.getDevice());
            out.print(JsonUtil.loadTrue(0, null, "成功"));
        }
    }
 
    /**
     * IOS推送 方法说明: 将用户id和deviceToken绑定
     * 
     * @author mawurui createTime 2018年5月8日 下午4:29:45
     * @param uid
     * @param deviceToken
     */
    @RequestSerializableByKey(key = "#acceptData.device")
    @RequestMapping(value = "/uidBindDeviceToken", method = RequestMethod.POST)
    public void uidBindIOSDeviceToken(AcceptData acceptData, Long uid, String deviceToken, PrintWriter out) {
        if (uid != null && uid != 0 && !StringUtil.isNullOrEmpty(deviceToken)) {
            // 添加token
            iosPushService.addDeviceToken(uid, Integer.parseInt(acceptData.getVersion()), deviceToken,
                    acceptData.getDevice());
        }
    }
 
    /**
     * IOS推送 方法说明: 解绑
     * 
     * @author mawurui createTime 2018年5月9日 上午9:49:58
     * @param deviceToken
     */
    @RequestMapping(value = "/unBind", method = RequestMethod.POST)
    public void unBind(AcceptData acceptData, String deviceToken, PrintWriter out) {
        if (!StringUtil.isNullOrEmpty(acceptData.getDevice())) {
            iosPushService.unBindUidAndDevice(acceptData.getDevice());
            out.print(JsonUtil.loadTrue(0, null, "解绑成功"));
        }
    }
 
    /**
     * 绑定华为推送
     * 
     * @param acceptData
     * @param token
     *            -华为token
     * @param uid
     *            -用户ID
     * @param out
     */
    @RequestSerializableByKey(key = "#acceptData.device")
    @RequestMapping(value = "/bindHWPush", method = RequestMethod.POST)
    public void bindHWDeviceToken(AcceptData acceptData, String token, Long uid, PrintWriter out) {
        deviceTokenHWService.addDeviceToken(token, acceptData.getDevice(), uid,
                Integer.parseInt(acceptData.getVersion()));
        out.print(JsonUtil.loadTrueResult("成功"));
    }
 
    /**
     * 解绑推送
     * 
     * @param acceptData
     * @param out
     */
    @RequestMapping(value = "/unBindHWPush", method = RequestMethod.POST)
    public void unBindHWDeviceToken(AcceptData acceptData, PrintWriter out) {
        deviceTokenHWService.unBindDeviceToken(acceptData.getDevice());
        out.print(JsonUtil.loadTrueResult("成功"));
    }
 
    /**
     * 商品推送记录
     * 
     * @param acceptData
     * @param out
     */
    @RequestMapping(value = "/gethistory", method = RequestMethod.POST)
    public void getHistory(AcceptData acceptData, Long uid, String deviceToken, int page, PrintWriter out) {
        long count = 0;
        JSONArray resultList = new JSONArray();
        DeviceActive deviceActive = deviceActiveService.getDeviceByDeviceAndPlatform(acceptData.getDevice(),
                deviceToken, acceptData.getPlatform());
 
        if (deviceActive == null) {
            JSONObject resultJson = new JSONObject();
            resultJson.put("count", count);
            resultJson.put("result_list", resultList);
            out.print(JsonUtil.loadTrueResult(resultJson));
            return;
        }
 
        // 设备注册时间
        Date createTime = deviceActive.getCreateTime();
        count = pushGoodsService.countHistoryByPushTime(uid, createTime,acceptData.getSystem());
 
        int pageSize = Constant.PAGE_SIZE;
        List<PushGoods> list = pushGoodsService.listHistoryByPushTime((page - 1) * pageSize, pageSize, uid, createTime,acceptData.getSystem());
        if (list == null)
            list = new ArrayList<>();
 
        for (PushGoods pushGoods : list) {
            Long id = pushGoods.getId();
 
            PushRecommendVO vo = new PushRecommendVO();
            vo.setTitle(pushGoods.getTitle());
            vo.setContent(pushGoods.getContent());
            vo.setPicture(pushGoods.getPicture());
            vo.setPushtime(pushGoods.getPushTime().getTime());
            
            Integer scanNum = pushGoods.getScanNum();
            if (scanNum == null) {
//                vo.setScanNum("0");
            } else if (scanNum >= 10000) {
                double num = scanNum;
                String numMidea = String.format("%.1f", num / 10000);
                vo.setScanNum(numMidea + "万");
            } else {
                vo.setScanNum(scanNum +"");
            }
            
 
            String params = "";
            String nickName = "";
            JumpDetailV2 jumpDetail = null;
            List<ClientTextStyleVO> totalwords = new ArrayList<ClientTextStyleVO>();
 
            Integer type = pushGoods.getType();
            if (type == null || type == PushGoods.TYPE_GOODS) {
                long totalgoods = 0;
                CommonGoods goods = null;
                try {
                    List<PushGoodsGroup> listGroup = pushGoodsGroupService.getAllInfoByPushId(id);
                    if (listGroup != null && listGroup.size() > 0) {
                        totalgoods = listGroup.size();
                        PushGoodsGroup pushGoodsGroup = listGroup.get(0);
                        if (pushGoodsGroup != null) {
                            goods = pushGoodsGroup.getCommonGoods();
                        }
                    }
                } catch (PushGoodsGroupException e) {
                    e.printStackTrace();
                }
 
                if (goods != null && StringUtil.isNullOrEmpty(vo.getPicture())) {
                    vo.setPicture(TbImgUtil.getTBSize320Img(goods.getPicture()));
                }
 
                if (totalgoods == 1) {
                    params = JumpDetailParamsFactory.createGoodsParams(goods.getGoodsId(), goods.getGoodsType());
                    jumpDetail = jumpDetailV2Service.getByTypeCache("goodsdetail",Constant.getPlatformCode(acceptData.getPlatform()),
                            Integer.parseInt(acceptData.getVersion()),acceptData.getSystem());
                } else {
                    String url = configService.getValue(ConfigKeyEnum.pushGoodsDetails.getKey(),acceptData.getSystem());
                    if (url == null) {
                        url = "";
                    }
                    url = url + "?id=" + id;
 
                    params = JumpDetailParamsFactory.createWEBParams(url);
                    jumpDetail = jumpDetailV2Service.getByTypeCache("web",Constant.getPlatformCode(acceptData.getPlatform()),
                            Integer.parseInt(acceptData.getVersion()),acceptData.getSystem());
                }
 
                totalwords.add(new ClientTextStyleVO("本次推荐共", "#666666"));
                totalwords.add(new ClientTextStyleVO(totalgoods + "", "#E5005C"));
                totalwords.add(new ClientTextStyleVO("个商品", "#666666"));
            } else if (type == PushGoods.TYPE_ACTIVITY) {
                GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(pushGoods.getOtherId());
                if (goodsEvaluate == null) {
                    continue;
                }
                ActivityUser user = goodsEvaluate.getUser();
                if (user != null) {
                    nickName = user.getNickName();
                }
                
                if (StringUtil.isNullOrEmpty(vo.getPicture()) && goodsEvaluate.getImgList() != null &&
                        goodsEvaluate.getImgList().size() > 0) {
                    for (ImgInfo tmgInfo: goodsEvaluate.getImgList()) {
                        if (tmgInfo.getType() == ImgEnum.img || tmgInfo.getType() == ImgEnum.activity) {
                            vo.setPicture(tmgInfo.getUrl());
                        }
                    }
                }
                
                String url = configService.getValue(ConfigKeyEnum.pushActivityLink.getKey(),acceptData.getSystem());
                if (url == null) {
                    url = "";
                }
                url = url + "?id=" + id;
                params = JumpDetailParamsFactory.createWEBParams(url);
                jumpDetail = jumpDetailV2Service.getByTypeCache("web",
                        Constant.getPlatformCode(acceptData.getPlatform()), Integer.parseInt(acceptData.getVersion()),acceptData.getSystem());
            } else {
                continue;
            }
            vo.setNickName(nickName);
            vo.setParams(params);
            vo.setJumpDetail(jumpDetail);
            vo.setTotalwords(totalwords);
            resultList.add(vo);
        }
        
        JSONObject resultJson = new JSONObject();
        resultJson.put("count", count);
        resultJson.put("result_list", resultList);
        out.print(JsonUtil.loadTrueResult(resultJson));
 
 
        if (list != null && list.size() > 0 && deviceActive != null) {
            final List<PushGoods> listPush = list;
            // 记录访问信息
            executor.execute(new Runnable() {
                @Override
                public void run() {
                    try {
                        Long deviceId = deviceActive.getId();
                        for (PushGoods pushGoods : listPush) {
                            List<PushGoodsRecord> listRecord = pushGoodsRecordService
                                    .listByPushIdAndDeviceId(pushGoods.getId(), deviceId);
                            if (listRecord != null && listRecord.size() > 0) {
                                continue; // 已被记录
                            }
 
                            PushGoodsRecord pushGoodsRecord = new PushGoodsRecord();
 
                            pushGoodsRecord.setCreateTime(new Date());
                            pushGoodsRecord.setPushGoods(pushGoods);
                            pushGoodsRecord.setDeviceActive(deviceActive);
                            pushGoodsRecordService.insert(pushGoodsRecord);
                        }
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            });
        }
    }
 
    @RequestMapping("registerOppo")
    public void registerOppo(AcceptData acceptData, String registerId, Long uid, PrintWriter out) {
        DeviceActive deviceActive = deviceActiveService.getFirstActiveInfo(acceptData.getDevice());
        if (deviceActive != null) {
            DeviceTokenOPPO oppo = new DeviceTokenOPPO();
            oppo.setDeviceActiveId(deviceActive.getId());
            oppo.setRegisterId(registerId);
            oppo.setUid(uid);
            deviceTokenOPPOService.addDeviceTokenOPPO(oppo);
        }
        out.print(JsonUtil.loadTrueResult(""));
    }
 
    @RequestMapping("registerVivo")
    public void registerVivo(AcceptData acceptData, String regId, Long uid, PrintWriter out) {
        DeviceActive deviceActive = deviceActiveService.getFirstActiveInfo(acceptData.getDevice());
        if (deviceActive != null) {
            DeviceTokenVIVO vivo = new DeviceTokenVIVO();
            vivo.setDeviceActiveId(deviceActive.getId());
            vivo.setRegisterId(regId);
            vivo.setUid(uid);
            deviceTokenVIVOService.addDeviceTokenVIVO(vivo);
        }
        out.print(JsonUtil.loadTrueResult(""));
    }
 
    @RequestMapping("registerXM")
    public void registerXM(AcceptData acceptData, String regId, Long uid, PrintWriter out) {
        DeviceActive deviceActive = deviceActiveService.getFirstActiveInfo(acceptData.getDevice());
        if (deviceActive != null) {
            DeviceTokenXM xm = new DeviceTokenXM();
            xm.setDeviceActiveId(deviceActive.getId());
            xm.setRegisterId(regId);
            xm.setUid(uid);
            deviceTokenXMService.addDeviceToken(xm);
        }
        out.print(JsonUtil.loadTrueResult(""));
    }
 
    /**
     * 获取推送活动详情
     * @param callback
     * @param acceptData
     * @param uid
     * @param id
     * @param out
     */
    @RequestMapping("getPushDetail")
    public void getPushDetail(String callback, AcceptData acceptData, Long uid, Long id, PrintWriter out) {
        if (uid == null || id == null) {
            JsonUtil.printMode(out, callback,JsonUtil.loadFalseResult("参数不完整"));
            return;
        }
        
        PushGoods pushGoods = pushGoodsService.selectByPrimaryKey(id);
        if (pushGoods == null || StringUtil.isNullOrEmpty(pushGoods.getOtherId())) {
            JsonUtil.printMode(out, callback,JsonUtil.loadFalseResult("该活动已下架"));
            return;
        }
        
        GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(pushGoods.getOtherId());
        if (goodsEvaluate == null) {
            JsonUtil.printMode(out, callback,JsonUtil.loadFalseResult("该活动已下架"));
            return;
        }
        
        String scanResult = null;
        Integer scanNum = pushGoods.getScanNum();
        if (scanNum == null) {
        } else if (scanNum >= 10000) {
            double num = scanNum;
            String numMidea = String.format("%.1f", num / 10000);
            scanResult = numMidea + "万";
        } else {
            scanResult = scanNum +"";
        }
        
        String jumpLink = configService.getValue(ConfigKeyEnum.activityDetailLink.getKey(),acceptData.getSystem()) + "?type=%s&id=%s";
        jumpLink = String.format(jumpLink, "circle", goodsEvaluate.getId());
        if (!StringUtil.isNullOrEmpty(goodsEvaluate.getJumpLink())) {
            goodsEvaluate.setJumpLink(jumpLink);
        }
        
        List<ImgInfo> imgListNew = new ArrayList<>();
        List<ImgInfo> imgList = goodsEvaluate.getImgList();
        if (imgList != null && imgList.size() > 0) {
            for (ImgInfo imgInfo: imgList) {
                if (imgInfo.getType() != ImgEnum.img || imgInfo.getType() == ImgEnum.activity) {
                    ImgInfo imgInfoNew = new ImgInfo();
                    try {
                        PropertyUtils.copyProperties(imgInfoNew, imgInfo);
                    } catch (Exception e) {
                        e.printStackTrace();
                        continue;
                    }
                    
                    if (!StringUtil.isNullOrEmpty(imgInfoNew.getActivityUrl())) {
                        imgInfoNew.setActivityUrl(jumpLink);
                    }
                    
                    imgListNew.add(imgInfoNew);
                    continue;
                } 
                imgListNew.add(imgInfo);
            }
        }
        goodsEvaluate.setImgList(imgListNew);
        
        GsonBuilder gsonBuilder = new GsonBuilder().excludeFieldsWithoutExposeAnnotation();
        
        JSONObject json = new JSONObject();
        json.put("title", pushGoods.getTitle());
        json.put("content", pushGoods.getContent());
        json.put("pushTime", TimeUtil.formatDate(pushGoods.getPushTime()));
        json.put("scanNum", scanResult);
        json.put("detailInfo", gsonBuilder.create().toJson(goodsEvaluate));
        JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(json));
    }
}