普惠GO服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
puhui-go/cweb/src/main/java/com/cweb/controller/meituan/MeiTuanController.java

73 lines
2.9 KiB

package com.cweb.controller.meituan;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.hfkj.common.utils.RandomStringGeneratorUtil;
import com.hfkj.common.utils.ResponseMsgUtil;
import com.hfkj.config.CommonSysConst;
import com.hfkj.entity.BsOrderMeituan;
import com.hfkj.meituan.MeiTuanService;
import com.hfkj.model.ResponseData;
import com.hfkj.service.goods.BsOrderMeiTuanService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@Controller
@RequestMapping(value="/meiTuan")
@Api(value="美团")
public class MeiTuanController {
private static final Logger log = LoggerFactory.getLogger(MeiTuanController.class);
@Resource
private BsOrderMeiTuanService bsOrderMeiTuanService;
@RequestMapping(value = "/loginFree", method = RequestMethod.GET)
@ResponseBody
@ApiOperation(value = "H5免登接口")
public ResponseData loginFree(@RequestParam(name = "staffPhone", required = true) String staffPhone,
@RequestParam(name = "childNo", required = false) String childNo,
@RequestParam(name = "productType", required = true) String productType) {
try {
Map<String , Object> map = new HashMap<>();
Map<String , Object> staffInfo = new HashMap<>();
Map<String , Object> bizParam = new HashMap<>();
staffInfo.put("staffPhone", staffPhone);
if (Objects.equals(productType, "sqt_order_detail")) {
BsOrderMeituan orderMeiTuan = bsOrderMeiTuanService.findOrderMeiTuan(childNo);
bizParam.put("sqtBizOrderId" , orderMeiTuan.getSqtBizOrderId());
}
map.put("staffInfo", staffInfo);
map.put("bizParam", bizParam);
map.put("entId", CommonSysConst.getSysConfig().getEntId());
map.put("ts", new Date().getTime());
map.put("productType", productType);
map.put("nonce" , RandomStringGeneratorUtil.generateRandomString(36));
JSONObject jsonObject = MeiTuanService.loginFree(map);
JSONArray jsonArray = jsonObject.getJSONArray("url");
JSONObject json = jsonArray.getJSONObject(0);
return ResponseMsgUtil.success(json.getString("value"));
} catch (Exception e) {
log.error("HighUserCardController --> getHuiLianTongCardConsume() error!", e);
return ResponseMsgUtil.exception(e);
}
}
}