北斗定位
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.

173 lines
5.8KB

  1. package com.telpo.dipperposition.common;
  2. import com.alibaba.fastjson.JSONObject;
  3. import lombok.extern.slf4j.Slf4j;
  4. import okhttp3.*;
  5. import org.apache.commons.lang3.ObjectUtils;
  6. import org.apache.commons.lang3.exception.ExceptionUtils;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Component;
  9. import javax.annotation.PostConstruct;
  10. import java.text.MessageFormat;
  11. import java.util.Iterator;
  12. import java.util.Map;
  13. import java.util.Objects;
  14. /**
  15. * @program: DataPushServer
  16. * @description: okhttp工具类
  17. * @author: linwl
  18. * @create: 2020-07-17 15:43
  19. */
  20. @Slf4j
  21. @Component
  22. public class OkHttpUtil {
  23. @Autowired private OkHttpClient okHttpClient;
  24. public static OkHttpUtil okHttpUtil;
  25. @PostConstruct
  26. public void init() {
  27. okHttpUtil = this;
  28. }
  29. /**
  30. * 根据map获取get请求参数
  31. *
  32. * @param queries
  33. * @return
  34. */
  35. public StringBuffer getQueryString(String url, Map<String, String> queries) {
  36. StringBuffer sb = new StringBuffer(url);
  37. if (queries != null && queries.keySet().size() > 0) {
  38. boolean firstFlag = true;
  39. Iterator iterator = queries.entrySet().iterator();
  40. while (iterator.hasNext()) {
  41. Map.Entry entry = (Map.Entry<String, String>) iterator.next();
  42. if (firstFlag) {
  43. sb.append("?" + entry.getKey() + "=" + entry.getValue());
  44. firstFlag = false;
  45. } else {
  46. sb.append("&" + entry.getKey() + "=" + entry.getValue());
  47. }
  48. }
  49. }
  50. return sb;
  51. }
  52. /**
  53. * get
  54. *
  55. * @param url 请求的url
  56. * @param queries 请求的参数,在浏览器?后面的数据,没有可以传null
  57. * @return
  58. */
  59. public String get(String url, Map<String, String> queries) {
  60. StringBuffer sb = getQueryString(url, queries);
  61. Request request = new Request.Builder().url(sb.toString()).build();
  62. log.debug(MessageFormat.format("发送Get to url<{0}>,参数为:{1}", url, queries));
  63. return execNewCall(request);
  64. }
  65. /**
  66. * post
  67. *
  68. * @param url 请求的url
  69. * @param params post form 提交的参数
  70. * @return
  71. */
  72. public String postFormParams(String url, Map<String, String> params) {
  73. FormBody.Builder builder = new FormBody.Builder();
  74. // 添加参数
  75. if (params != null && params.keySet().size() > 0) {
  76. for (String key : params.keySet()) {
  77. builder.add(key, params.get(key));
  78. }
  79. }
  80. log.debug(MessageFormat.format("发送post from to url<{0}>,参数为:{1}", url, params));
  81. Request request = new Request.Builder().url(url).post(builder.build()).build();
  82. return execNewCall(request);
  83. }
  84. /** Post请求发送JSON数据....{"name":"zhangsan","pwd":"123456"} 参数一:请求Url 参数二:请求的JSON 参数三:请求回调 */
  85. public String postJsonParams(String url, String jsonParams) {
  86. RequestBody requestBody = RequestBody.create(jsonParams, MediaType.parse("application/json; charset=utf-8"));
  87. Request request = new Request.Builder().url(url).post(requestBody).build();
  88. log.debug(MessageFormat.format("发送post json to url<{0}>,参数为:{1}", url, jsonParams));
  89. return execNewCall(request);
  90. }
  91. /** Post请求发送JSON数据....{"name":"zhangsan","pwd":"123456"} 参数一:请求Url 参数二:请求的JSON 参数三:请求回调 */
  92. public String getJsonParams(String url, String jsonParams) {
  93. Request request = new Request.Builder().url(url).addHeader("application/json","charset=utf-8").build();
  94. log.debug(MessageFormat.format("get json to url<{0}>", url));
  95. return execNewCall(request);
  96. }
  97. /** Post请求发送xml数据.... 参数一:请求Url 参数二:请求的xmlString 参数三:请求回调 */
  98. public String postXmlParams(String url, String xml) {
  99. RequestBody requestBody =
  100. RequestBody.create(xml, MediaType.parse("application/xml; charset=utf-8"));
  101. Request request = new Request.Builder().url(url).post(requestBody).build();
  102. log.debug(MessageFormat.format("发送post xml to url<{0}>,参数为:{1}", url, xml));
  103. return execNewCall(request);
  104. }
  105. /**
  106. * 调用okhttp的newCall方法
  107. *
  108. * @param request
  109. * @return
  110. */
  111. private String execNewCall(Request request) {
  112. try (Response response = okHttpClient.newCall(request).execute()) {
  113. if (response.isSuccessful()) {
  114. return Objects.requireNonNull(response.body()).string();
  115. }
  116. } catch (Exception e) {
  117. log.error("okhttp3 put error >> ex = {}", ExceptionUtils.getStackTrace(e));
  118. }
  119. return "FAIL";
  120. }
  121. /**
  122. * Post请求发送JSON数据....{"name":"zhangsan","pwd":"123456"} 参数一:请求Url 参数二:请求的JSON 参数三:请求回调
  123. */
  124. public String postJsonParamsWithToken(String url, String token, String jsonParams) {
  125. RequestBody requestBody =
  126. RequestBody.create(jsonParams, MediaType.parse("application/json; charset=utf-8"));
  127. Request request = new Request.Builder().url(url).
  128. addHeader("Authorization", token).post(requestBody).build();
  129. log.debug(MessageFormat.format("发送post json to url<{0}>,参数为:{1}", url, jsonParams));
  130. return execNewCall(request);
  131. }
  132. public JSONObject postRequestWithJson(String url, String accessToken, JSONObject postData) {
  133. String postResult;
  134. if (ObjectUtils.isNotEmpty(accessToken)) {
  135. postResult = postJsonParamsWithToken(url, accessToken, JSONObject.toJSONString(postData));
  136. } else {
  137. postResult = postJsonParams(url, JSONObject.toJSONString(postData));
  138. }
  139. if (postResult == null) {
  140. log.error("访问错误");
  141. return null;
  142. } else {
  143. log.debug(postResult);
  144. if(("FAIL").equals(postResult.toString())) {
  145. JSONObject object = new JSONObject();
  146. object.put("result", "FAIL");
  147. return object;
  148. } else {
  149. return JSONObject.parseObject(postResult);
  150. }
  151. }
  152. }
  153. }