| | |
| | | import com.yeshi.fanli.exception.taobao.TaoKeApiException;
|
| | | import com.yeshi.fanli.log.LogHelper;
|
| | | import com.yeshi.fanli.log.TaoKeLogHelper;
|
| | | import com.yeshi.fanli.util.EmergencyUtil;
|
| | | import com.yeshi.fanli.util.StringUtil;
|
| | | import com.yeshi.fanli.util.TaoBaoHttpUtil;
|
| | | import com.yeshi.fanli.util.TimeUtil;
|
| | |
| | | String result = TaoBaoHttpUtil.taoKeGet(params);
|
| | | JSONObject data = JSONObject.fromObject(result);
|
| | | if (data != null) {
|
| | | if (data.optJSONObject("error_response") != null
|
| | | && data.optJSONObject("error_response").optInt("code") == 7) {
|
| | | if (data.optJSONObject("error_response") != null && data.optJSONObject("error_response").optInt("code") == 7
|
| | | && "accesscontrol.limited-by-app-access-count"
|
| | | .equalsIgnoreCase(data.optJSONObject("error_response").optString("sub_code"))) {
|
| | | reportAppInvalid(app.getAppKey());
|
| | | TaoKeLogHelper.error(params, result);
|
| | | try {
|
| | | EmergencyUtil.baoJin("monitor-error-tb-app-limit-" + params.get("app_key"),
|
| | | "淘宝APPKey请求限制【" + params.get("app_key") + "】", new String[] { "18581318252" });
|
| | | } catch (Exception e1) {
|
| | | }
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_APPKEY_LIMIT, "淘宝请求限制:" + result, params);
|
| | | } else if (data.optJSONObject("error_response") != null) {
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_API_ERROR, result, params);
|
| | | }
|
| | | } else
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_OTHER, ":" + result, params);
|
| | | reValid(app.getAppKey());
|
| | | return data;
|
| | | }
|
| | | |
| | | |
| | | /**
|
| | | * 服务商请求
|
| | | * @Title: baseScRequest
|
| | | * @Description: |
| | | * @param param
|
| | | * @param session
|
| | | * @return
|
| | | * @throws TaoKeApiException |
| | | * JSONObject 返回类型
|
| | | * @throws
|
| | | */
|
| | | public static JSONObject baseScRequest(Map<String, String> param,TaoKeAppInfo app, String session,String targetAppKey) throws TaoKeApiException {
|
| | | // 复制params
|
| | | Map<String, String> params = new HashMap<>();
|
| | | if (param != null) {
|
| | | Iterator<String> its = param.keySet().iterator();
|
| | | while (its.hasNext()) {
|
| | | String key = its.next();
|
| | | params.put(key, param.get(key));
|
| | | }
|
| | | }
|
| | |
|
| | | if (app == null)
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_NO_USE, "无appkey可用");
|
| | | // 签名
|
| | | params.put("app_key", app.getAppKey());
|
| | | params.put("sign_method", "md5");
|
| | | params.put("v", "2.0");
|
| | | params.put("timestamp", TimeUtil.getGernalTime(System.currentTimeMillis(), "yyyy-MM-dd HH:mm:ss"));
|
| | | params.put("format", "json");
|
| | | params.put("session", session);
|
| | | // params.put("target_app_key", targetAppKey);
|
| | | params.put("sign", getSign(params, "md5", app).toUpperCase());
|
| | | String result = TaoBaoHttpUtil.taoKeGet(params);
|
| | | JSONObject data = JSONObject.fromObject(result);
|
| | | if (data != null) {
|
| | | if (data.optJSONObject("error_response") != null && data.optJSONObject("error_response").optInt("code") == 7
|
| | | && "accesscontrol.limited-by-app-access-count"
|
| | | .equalsIgnoreCase(data.optJSONObject("error_response").optString("sub_code"))) {
|
| | | reportAppInvalid(app.getAppKey());
|
| | | TaoKeLogHelper.error(params, result);
|
| | | try {
|
| | | EmergencyUtil.baoJin("monitor-error-tb-app-limit-" + params.get("app_key"),
|
| | | "淘宝APPKey请求限制【" + params.get("app_key") + "】", new String[] { "18581318252" });
|
| | | } catch (Exception e1) {
|
| | | }
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_APPKEY_LIMIT, "淘宝请求限制:" + result, params);
|
| | | } else if (data.optJSONObject("error_response") != null) {
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_API_ERROR, result, params);
|
| | | }
|
| | | } else
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_OTHER, ":" + result, params);
|
| | | // reValid(app.getAppKey());
|
| | | return data;
|
| | | }
|
| | |
|
| | |
| | | params.put("v", "2.0");
|
| | | params.put("timestamp", TimeUtil.getGernalTime(System.currentTimeMillis(), "yyyy-MM-dd HH:mm:ss"));
|
| | | params.put("format", "json");
|
| | | params.put("adzone_id", app.getAdzoneId());
|
| | | if (!StringUtil.isNullOrEmpty(app.getAdzoneId()))
|
| | | params.put("adzone_id", app.getAdzoneId());
|
| | | params.put("sign", getSign(params, "md5", app).toUpperCase());
|
| | | String result = TaoBaoHttpUtil.taoKeGet(params);
|
| | | JSONObject data = JSONObject.fromObject(result);
|
| | | if (data != null) {
|
| | | if (data.optJSONObject("error_response") != null
|
| | | && data.optJSONObject("error_response").optInt("code") == 7) {
|
| | | if (data.optJSONObject("error_response") != null && data.optJSONObject("error_response").optInt("code") == 7
|
| | | && "accesscontrol.limited-by-app-access-count"
|
| | | .equalsIgnoreCase(data.optJSONObject("error_response").optString("sub_code"))) {
|
| | | reportAppInvalid(app.getAppKey());
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_APPKEY_LIMIT, "淘宝请求限制:" + result, params);
|
| | | } else if (data.optJSONObject("error_response") != null) {
|
| | |
| | | }
|
| | | } else
|
| | | throw new TaoKeApiException(TaoKeApiException.CODE_OTHER, ":" + result, params);
|
| | | reValid(app.getAppKey());
|
| | | return data;
|
| | | }
|
| | |
|
| | |
| | | info.setAdzoneId(sts[sts.length - 1]);
|
| | | taoKeAppInfo = info;
|
| | | lastTime = System.currentTimeMillis();
|
| | | } else {//防止所有的失效
|
| | | } else {// 防止所有的失效
|
| | | taoKeAppInfo = new TaoKeAppInfo();
|
| | | taoKeAppInfo.setAdzoneId("381938426");
|
| | | taoKeAppInfo.setAppKey("24838852");
|
| | |
| | | }
|
| | | }
|
| | |
|
| | | static Map<String, Integer> invalidMap = new HashMap<>();
|
| | |
|
| | | /**
|
| | | * 报告该APPKey不能用
|
| | | *
|
| | | * @param appkey
|
| | | */
|
| | | static void reportAppInvalid(String appkey) {
|
| | | if (invalidMap == null)
|
| | | return;
|
| | | // 错误三次后再真正上报
|
| | | if (invalidMap.get(appkey) == null)
|
| | | invalidMap.put(appkey, 1);
|
| | | else
|
| | | invalidMap.put(appkey, invalidMap.get(appkey) + 1);
|
| | |
|
| | | if (invalidMap.get(appkey) < 4)
|
| | | return;
|
| | | invalidMap.put(appkey, 0);
|
| | | HttpUtil.get("http://193.112.35.168:8091/tb/taoke/reportappcannotuse?appkey=" + appkey);
|
| | | lastTime = 0;
|
| | | }
|
| | |
|
| | | /**
|
| | | * APPKey恢复可用
|
| | | * |
| | | * @param appKey
|
| | | */
|
| | | static void reValid(String appKey) {
|
| | | if (invalidMap == null)
|
| | | return;
|
| | | Integer count = invalidMap.get(appKey);
|
| | | if (count != null && count > 0)
|
| | | invalidMap.put(appKey, count - 1);
|
| | | }
|
| | |
|
| | | public static void setAppValid() {
|
| | | HttpUtil.get("http://193.112.35.168:8091/tb/taoke/setappcanuse");
|
| | | }
|