generated from root/miduo_server
疯体 使用quick sdk
parent
f96816e570
commit
e77d1240e9
|
@ -38,6 +38,7 @@ public class GetUserController extends HttpServlet {
|
||||||
serviceMap.put("YX", new YxylVerifyService("YX"));
|
serviceMap.put("YX", new YxylVerifyService("YX"));
|
||||||
serviceMap.put("DY", new V3367VerifyService("DY"));
|
serviceMap.put("DY", new V3367VerifyService("DY"));
|
||||||
serviceMap.put("QUICK2", new QuickVerifyService2("QUICK2"));
|
serviceMap.put("QUICK2", new QuickVerifyService2("QUICK2"));
|
||||||
|
serviceMap.put("QUICK3", new QuickVerifyService3("QUICK3"));
|
||||||
serviceMap.put("YOUGU", new YouGuVerifyService("YG"));
|
serviceMap.put("YOUGU", new YouGuVerifyService("YG"));
|
||||||
serviceMap.put("DUOYOU", new DuoYouVerifyService("DUOYOU"));
|
serviceMap.put("DUOYOU", new DuoYouVerifyService("DUOYOU"));
|
||||||
serviceMap.put("AIWAN", new AiWanVerifyService("AIWAN"));
|
serviceMap.put("AIWAN", new AiWanVerifyService("AIWAN"));
|
||||||
|
|
|
@ -0,0 +1,122 @@
|
||||||
|
package com.ljsd.service;
|
||||||
|
|
||||||
|
import com.ljsd.pojo.VerifyParams;
|
||||||
|
import com.ljsd.util.AppConstans;
|
||||||
|
import com.ljsd.util.HttpUtils;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 疯体
|
||||||
|
*/
|
||||||
|
public class QuickVerifyService3 extends AbstractVerifyService {
|
||||||
|
private static final Logger LOGGER = LoggerFactory.getLogger(AbstractVerifyService.class);
|
||||||
|
public static int isTestLan=0;
|
||||||
|
private final static String product_code = "59089882210126220068309806520046";
|
||||||
|
|
||||||
|
public QuickVerifyService3(String sign) {
|
||||||
|
super(sign);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean verify(HttpServletResponse response, HttpServletRequest request, String admin, String platform, String pid, String openId, String token){
|
||||||
|
try {
|
||||||
|
//如果是自己人不需要验证了
|
||||||
|
if(AppConstans.appsecret.equals(admin)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (isTestLan == 1) { //test
|
||||||
|
boolean result = loginVerfifyByTestLan(openId, token);
|
||||||
|
if (!result) {
|
||||||
|
response.sendError(400, "verify fail");
|
||||||
|
LOGGER.error("test verify fail");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else if (!"3".equals(platform) ) {//正式 切不是pc
|
||||||
|
String sub_channel = request.getParameter("sub_channel");
|
||||||
|
boolean result = false;
|
||||||
|
if (sub_channel != null && !sub_channel.equals("")) {
|
||||||
|
if (sub_channel.equals("1000")) {
|
||||||
|
//测试服构建参数
|
||||||
|
VerifyParams params = new VerifyParams();
|
||||||
|
params.setProductCode(product_code);
|
||||||
|
VerifyParams testParam = getTestParam(params,request, openId, token);
|
||||||
|
result = verifyTest(testParam);
|
||||||
|
} else if(sub_channel.equals("20201222")){
|
||||||
|
//商务服
|
||||||
|
//result = loginVerfifyShangwu("MHT", openId, token, MHTSDKConstans.rhappIdshangwu);
|
||||||
|
} else {
|
||||||
|
//正式服appId
|
||||||
|
VerifyParams params = new VerifyParams();
|
||||||
|
params.setProductCode(product_code);
|
||||||
|
VerifyParams formatParam = getFormatParam(params,request, openId, token);
|
||||||
|
result = verifyFormat(formatParam);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!result) {
|
||||||
|
response.sendError(400, "verify fail");
|
||||||
|
LOGGER.error("verify fail");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean verifyTest(VerifyParams params) {
|
||||||
|
return doVerify(params);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean verifyFormat(VerifyParams params) {
|
||||||
|
return doVerify(params);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
boolean doVerify(VerifyParams params) {
|
||||||
|
LOGGER.info("quick登录验证-->{}",params.getOpenId());
|
||||||
|
String url = "http://checkuser.quickapi.net/v2/checkUserInfo";
|
||||||
|
Map<String,String> parms = new HashMap<>();
|
||||||
|
parms.put("token",params.getToken());
|
||||||
|
parms.put("product_code",params.getProductCode());
|
||||||
|
parms.put("uid",params.getOpenId());
|
||||||
|
boolean result = false;
|
||||||
|
try {
|
||||||
|
String r = HttpUtils.doPost(url, parms);
|
||||||
|
LOGGER.info("QUICK请求结果:{}",r);
|
||||||
|
if(r.equals("1")){
|
||||||
|
result = true;
|
||||||
|
}
|
||||||
|
}catch (IOException e){
|
||||||
|
LOGGER.info("quick验证失败,IOException");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected VerifyParams getTestParam(VerifyParams params, HttpServletRequest request, String openId, String token) {
|
||||||
|
params.setChannel("QUICK");
|
||||||
|
params.setToken(token);
|
||||||
|
params.setOpenId(openId);
|
||||||
|
return params;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected VerifyParams getFormatParam(VerifyParams params, HttpServletRequest request, String openId, String token) {
|
||||||
|
params.setChannel("QUICK");
|
||||||
|
params.setToken(token);
|
||||||
|
params.setOpenId(openId);
|
||||||
|
return params;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue