From 179b39401c406579a0d10c442a665aeb2802e931 Mon Sep 17 00:00:00 2001 From: yujian <yujian@123.com> Date: 星期一, 20 五月 2019 09:17:03 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java | 179 +++++++++++++++++++++++++++++------------------------------ 1 files changed, 89 insertions(+), 90 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java index 64cd60d..2a5120f 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java @@ -28,93 +28,91 @@ import com.yeshi.fanli.util.StringUtil; import net.sf.json.JSONObject; - +import sun.security.krb5.internal.ccache.CCacheInputStream; @Service public class SpecialServiceImpl implements SpecialService { - + @Resource private SpecialMapper specialMapper; - + @Resource private SpecialPlaceService specialPlaceService; - + @Resource private SpecialCardService specialCardService; - + @Resource private JumpDetailV2Service jumpDetailV2Service; - + @Resource private ConfigService configService; - @Override public Special selectByPrimaryKey(Long id) { return specialMapper.selectByPrimaryKey(id); } - @Override - public void saveObject(MultipartFile file, MultipartFile file2, MultipartFile file3, Special record, String jumpType) - throws SpecialException, Exception{ - + public void saveObject(MultipartFile file, MultipartFile file2, MultipartFile file3, Special record, + String jumpType) throws SpecialException, Exception { + Long cardId = record.getCardId(); if (cardId == null) { throw new SpecialException(1, "绠$悊ID涓嶈兘涓虹┖"); } - + String name = record.getName(); if (name == null || name.trim().length() == 0) { throw new SpecialException(1, "涓撻鍚嶇О涓嶈兘涓虹┖"); } - + String params = record.getParams(); - if (params == null || params.trim().length() == 0 || "null".equalsIgnoreCase(params) ) { + if (params == null || params.trim().length() == 0 || "null".equalsIgnoreCase(params)) { record.setParams(null); } else if (!StringUtil.isJson(params)) { throw new SpecialException(1, "璺宠浆鍙傛暟闈濲SON鏍煎紡"); } - + if (!StringUtil.isNullOrEmpty(jumpType)) { List<JumpDetailV2> listByType = jumpDetailV2Service.listByType(jumpType); - if (listByType !=null && listByType.size() > 0) { + if (listByType != null && listByType.size() > 0) { record.setJumpDetail(listByType.get(0)); - } + } } - + Long state = record.getState(); if (state == null) { record.setState(0L); } - + // 鍥剧墖涓婁紶 String picture = null; if (file != null) { picture = uploadPicture(file); } - + // 鍥剧墖涓婁紶 String subPicture = null; if (file2 != null) { subPicture = uploadPicture(file2); } - + // 鍥剧墖涓婁紶 String icon = null; if (file3 != null) { icon = uploadPicture(file3); } - + Long id = record.getId(); if (id == null) { record.setIcon(icon); record.setPicture(picture); record.setSubPicture(subPicture); - + int maxOrder = specialMapper.getMaxOrderByCard(cardId); record.setOrderby(maxOrder + 1); - + record.setCreatetime(new Date()); record.setUpdatetime(new Date()); specialMapper.insert(record); @@ -124,7 +122,7 @@ if (resultObj == null) { throw new SpecialException(1, "淇敼鍐呭宸蹭笉瀛樺湪"); } - + // 鍒犻櫎鍥剧墖 Boolean delIcon = record.getDelIcon(); if (delIcon != null && delIcon) { @@ -141,9 +139,7 @@ removePicture(resultObj.getSubPicture()); resultObj.setSubPicture(null); } - - - + if (picture != null && picture.trim().length() > 0) { // 鍒犻櫎鑰佸浘 removePicture(resultObj.getPicture()); @@ -152,7 +148,7 @@ } else { record.setPicture(resultObj.getPicture()); } - + if (subPicture != null && subPicture.trim().length() > 0) { // 鍒犻櫎鑰佸浘 removePicture(resultObj.getSubPicture()); @@ -161,8 +157,7 @@ } else { record.setSubPicture(resultObj.getSubPicture()); } - - + if (icon != null && icon.trim().length() > 0) { // 鍒犻櫎鑰佸浘 removePicture(resultObj.getIcon()); @@ -171,38 +166,39 @@ } else { record.setIcon(resultObj.getIcon()); } - + record.setOrderby(resultObj.getOrderby()); record.setCreatetime(resultObj.getCreatetime()); record.setUpdatetime(new Date()); specialMapper.updateByPrimaryKey(record); } } - /** * 涓婁紶鍥剧墖 + * * @param file * @return * @throws Exception */ public String uploadPicture(MultipartFile file) throws Exception { - - // 鏂囦欢瑙f瀽 + + // 鏂囦欢瑙f瀽 InputStream inputStream = file.getInputStream(); String contentType = file.getContentType(); String type = contentType.substring(contentType.indexOf("/") + 1); - + // 鏂囦欢璺緞 - String filePath="/img/special/"+UUID.randomUUID().toString().replace("-", "") + "." + type; + String filePath = "/img/special/" + UUID.randomUUID().toString().replace("-", "") + "." + type; // 鎵ц涓婁紶 - String fileLink= COSManager.getInstance().uploadFile(inputStream, filePath).getUrl(); - + String fileLink = COSManager.getInstance().uploadFile(inputStream, filePath).getUrl(); + return fileLink; } /** * 鍒犻櫎鍥剧墖-涓嶆洿鏂版暟鎹簱 + * * @param record * @throws Exception */ @@ -211,24 +207,23 @@ COSManager.getInstance().deleteFile(picture); } } - - + @Override @Transactional public void updateOrder(Long id, Integer moveType) throws SpecialException { - + if (id == null || moveType == null || (!moveType.equals(1) && !moveType.equals(-1))) { throw new SpecialException(1, "璇蜂紶閫掓纭弬鏁�"); } - + Special resultObj = specialMapper.selectByPrimaryKey(id); if (resultObj == null) { throw new SpecialException(1, "姝ゅ唴瀹瑰凡涓嶅瓨鍦�"); } - + Integer order = resultObj.getOrderby(); Long cardId = resultObj.getCardId(); - + // 鑾峰彇浜ゆ崲瀵硅薄 Special exchangeObject = specialMapper.getOrderByCardID(cardId, moveType, order); if (exchangeObject == null) { @@ -238,25 +233,24 @@ throw new SpecialException(1, "鍦ㄧ浉鍚屼娇鐢ㄥ湴鏂逛腑浼樺厛绾у凡缁忔渶楂樹簡"); } } - + resultObj.setOrderby(exchangeObject.getOrderby()); exchangeObject.setOrderby(order); - + specialMapper.updateByPrimaryKey(resultObj); specialMapper.updateByPrimaryKey(exchangeObject); } - - + @Override @Transactional - public int deleteBatchByPrimaryKey(List<Long> list) throws Exception{ + public int deleteBatchByPrimaryKey(List<Long> list) throws Exception { List<Special> listSpecial = specialMapper.queryByListPrimaryKey(list); - for (Special special: listSpecial) { + for (Special special : listSpecial) { String src = special.getPicture(); if (!StringUtil.isNullOrEmpty(src)) { COSManager.getInstance().deleteFile(src); } - + String subPicture = special.getSubPicture(); if (!StringUtil.isNullOrEmpty(subPicture)) { COSManager.getInstance().deleteFile(subPicture); @@ -264,46 +258,45 @@ } return specialMapper.deleteBatchByPrimaryKey(list); } - + @Override - public int deleteBatchByCardID(List<Long> list) throws Exception{ + public int deleteBatchByCardID(List<Long> list) throws Exception { List<Special> listSpecial = specialMapper.queryByListCardID(list); - for (Special special: listSpecial) { + for (Special special : listSpecial) { String src = special.getPicture(); if (!StringUtil.isNullOrEmpty(src)) { COSManager.getInstance().deleteFile(src); } - + String subPicture = special.getSubPicture(); if (!StringUtil.isNullOrEmpty(subPicture)) { COSManager.getInstance().deleteFile(subPicture); } } - + return specialMapper.deleteBatchByCardID(list); } - - + @Override - public List<Special> listQueryByCard(long start, int count, Long card, String key){ - + public List<Special> listQueryByCard(long start, int count, Long card, String key) { + List<Special> list = specialMapper.listQueryByCard(start, count, card, key); if (list == null || list.size() == 0) { return list; } - + // 璺宠浆閾炬帴 - for (Special special: list) { + for (Special special : list) { String params = special.getParams(); if (StringUtil.isNullOrEmpty(params)) { special.setParams(""); } - + String remark = special.getRemark(); if (StringUtil.isNullOrEmpty(remark)) { special.setRemark(""); } - + JumpDetailV2 jumpDetail = special.getJumpDetail(); if (jumpDetail == null) { // 榛樿鏈�夋嫨 @@ -315,38 +308,34 @@ } return list; } - - + @Override public long countlistQueryByCard(Long card, String key) { return specialMapper.countlistQueryByCard(card, key); } - - + @Override @Cacheable(value = "configCache", key = "'listBySystemAndCard-'+#card+'-'+#systemId") public List<Special> listBySystemAndCard(String card, Long systemId) { return specialMapper.listBySystemAndCard(card, systemId); } - @Override @Cacheable(value = "configCache", key = "'listPageBySystemAndCard-'+#start+'-'+#count+'-'+#card+'-'+#systemId") public List<Special> listPageBySystemAndCard(long start, int count, String card, Long systemId) { return specialMapper.listPageBySystemAndCard(start, count, card, systemId); } - @Override - @Cacheable(value = "configCache", key = "'listCacheSpecialToIndex'") - public JSONObject listCacheSpecialToIndex(AcceptData acceptData) throws Exception{ - + @Cacheable(value = "configCache", key = "'listCacheSpecialToIndex'+#acceptData.platform+'-'+#acceptData.version") + public JSONObject listCacheSpecialToIndex(AcceptData acceptData) throws Exception { + // 棣栭〉-5鍦嗗舰2鎺掑尯鍩� JSONObject arcMap = new JSONObject(); List<Special> listArc = specialMapper.listByPlaceKey("index_arc"); if (listArc == null) { listArc = new ArrayList<Special>(); - } else if(listArc.size() > 0){ + } else if (listArc.size() > 0) { Special special = listArc.get(0); if (special != null) { // 鑳屾櫙鍥剧墖 @@ -356,8 +345,7 @@ // 鏁版嵁澶勭悊 handlelist(listArc); arcMap.put("list", JsonUtil.getApiCommonGson().toJson(listArc)); - - + // 棣栭〉-娲诲姩鍖哄煙锛堝コ鐜嬭妭锛� JSONObject activityMap = new JSONObject(); List<Special> listActivity = null; @@ -365,60 +353,71 @@ && configService.iosOnLining(Integer.parseInt(acceptData.getVersion()))) { // 濡傛灉IOS褰撳墠鐗堟湰澶勪簬瀹℃牳鐘舵�佸氨涓嶈繑鍥� } else { - listActivity = specialMapper.listByPlaceKey("index_activity"); + listActivity = specialMapper.listByPlaceKey("index_activity"); } - + if (listActivity == null) { listActivity = new ArrayList<Special>(); - } else if(listActivity.size() > 0){ + } else if (listActivity.size() > 0) { Special special = listActivity.get(0); if (special != null) { // 鑳屾櫙鍥剧墖 activityMap.put("bottomPicture", special.getBottomPicture()); } } - // 鏁版嵁澶勭悊 + handlelist(listActivity); + activityMap.put("list", JsonUtil.getApiCommonGson().toJson(listActivity)); - - - + // 棣栭〉-鏂瑰舰涓撻锛堝搧鐗屽埜銆佹瘝濠�...锛� JSONObject blockJsonMap = new JSONObject(); List<Special> listBlock = specialMapper.listByPlaceKey("index_block"); if (listBlock == null) { listBlock = new ArrayList<Special>(); - } else if(listBlock.size() > 0){ + } else if (listBlock.size() > 0) { Special special = listBlock.get(0); if (special != null) { // 鑳屾櫙鍥剧墖 blockJsonMap.put("bottomPicture", special.getBottomPicture()); } } + + // 鍝佺墝鍒� + // >=1.5.40鍚庣殑鐗堟湰鍙互鐢� + if (("android".equalsIgnoreCase(acceptData.getPlatform()) && Integer.parseInt(acceptData.getVersion()) > 39) + || "ios".equalsIgnoreCase(acceptData.getPlatform()) && Integer.parseInt(acceptData.getVersion()) > 48) + if (listBlock != null) + for (int i = 0; i < listBlock.size(); i++) { + if ("鍝佺墝鍒�".equalsIgnoreCase(listBlock.get(i).getName())) { + listBlock.get(i).setJumpDetail(jumpDetailV2Service.getByTypeCache("hot_cakes")); + } + } + // 鏁版嵁澶勭悊 handlelist(listBlock); blockJsonMap.put("list", JsonUtil.getApiCommonGson().toJson(listBlock)); - + JSONObject root = new JSONObject(); root.put("arcArea", arcMap); root.put("activityArea", activityMap); root.put("blockArea", blockJsonMap); return root; } - + @Override public List<Special> listByPlaceKey(String placeKey) { return specialMapper.listByPlaceKey(placeKey); } - - + /** * 澶勭悊 鏁版嵁 + * * @param list */ public void handlelist(List<Special> list) { if (list != null && list.size() > 0) { - for (Special special: list) { + for (Special special : list) { boolean needLogin = special.isJumpLogin(); JumpDetailV2 jumpDetail = special.getJumpDetail(); if (jumpDetail != null) { -- Gitblit v1.8.0