http.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. "use strict";
  2. import axios from "axios";
  3. import bus from "./bus.js";
  4. axios.defaults.withCredentials = true;
  5. axios.defaults.timeout = 0;
  6. axios.interceptors.request.use(
  7. (config) => {
  8. // 请求拦截
  9. let auth = localStorage.getItem("auth");
  10. if (auth) {
  11. config.headers.Authorization = auth;
  12. }
  13. const uuid = localStorage.getItem("uuid") || "";
  14. config.headers.Uuid = uuid;
  15. config.headers.AccessToken = uuid + "--zheshiyigename";
  16. config.headers.Lang = localStorage.getItem("i18n") || 'zh';
  17. return config;
  18. },
  19. (error) => {
  20. return Promise.reject(error);
  21. }
  22. );
  23. axios.interceptors.response.use(
  24. (response) => {
  25. //响应拦截
  26. return response;
  27. },
  28. (error) => {
  29. return Promise.reject(error);
  30. }
  31. );
  32. function postData(val, url) {
  33. //处理请求数据
  34. return val;
  35. }
  36. function getData(val, url) {
  37. //处理请求数据
  38. return val;
  39. }
  40. function checkStatus(response) {
  41. //处理响应数据
  42. if (response && response.status === 200) {
  43. // loading,如果http状态码正常,则直接返回数据
  44. let res = bus.$parseData(response);
  45. if (!res) {
  46. bus.$message.error("服务器开了个小差");
  47. return false;
  48. } else if (res.Ret == 403) {
  49. bus.$message.error(res.Msg);
  50. } else if (res.Ret === 408) {
  51. localStorage.setItem("auth", "")
  52. localStorage.setItem("loginTime", "")
  53. bus
  54. .$alert(res.Msg, "提示", {
  55. showClose: false,
  56. })
  57. .then(() => {
  58. window.location.href = window.location.origin + '/login';
  59. });
  60. }
  61. return res;
  62. } else {
  63. bus.$message.error("网络异常");
  64. return false;
  65. }
  66. }
  67. function checkCode(res) {
  68. bus.$message.error("网络异常");
  69. }
  70. // 请求时间需要过长,取消限制
  71. const cancelTimeoutUrlPost = ["/cloud_disk/resource/upload"];
  72. export default {
  73. post(url, data) {
  74. //post请求方式
  75. let timeout = cancelTimeoutUrlPost.includes(url) ? 0 : 600000;
  76. return axios({
  77. method: "post",
  78. url: url,
  79. baseURL: process.env.VUE_APP_API_ROOT,
  80. data: postData(data, url),
  81. timeout,
  82. headers: { "Content-Type": "application/json; charset=utf-8" },
  83. })
  84. .then((response) => {
  85. return checkStatus(response);
  86. })
  87. .catch((res) => {
  88. return checkCode(res);
  89. });
  90. },
  91. get(url, data, responseType = "json") {
  92. //get请求方式
  93. return axios({
  94. method: "get",
  95. baseURL: process.env.VUE_APP_API_ROOT,
  96. url: url,
  97. params: getData(data, url),
  98. timeout:600000,
  99. headers: {
  100. "Content-type": "application/x-www-form-urlencoded; charset=utf-8",
  101. },
  102. responseType: responseType,
  103. transformRequest: [
  104. function (data) {
  105. let ret = "";
  106. for (let it in data) {
  107. ret +=
  108. encodeURIComponent(it) + "=" + encodeURIComponent(data[it]) + "&";
  109. }
  110. return ret;
  111. },
  112. ],
  113. })
  114. .then((response) => {
  115. if(responseType==='blob'){
  116. return response
  117. }
  118. return checkStatus(response);
  119. })
  120. .catch((res) => {
  121. return checkCode(res);
  122. });
  123. },
  124. Base64,
  125. dateFormatter,
  126. getTotalMonth,
  127. Decrypt,
  128. Encrypt,
  129. isMobileNo,
  130. };
  131. //解密方法
  132. function Decrypt(word) {
  133. let encryptedHexStr = CryptoJS.enc.Hex.parse(word);
  134. let srcs = CryptoJS.enc.Base64.stringify(encryptedHexStr);
  135. let decrypt = CryptoJS.AES.decrypt(srcs, key, { iv: iv, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.Pkcs7 });
  136. let decryptedStr = decrypt.toString(CryptoJS.enc.Utf8);
  137. return decryptedStr.toString();
  138. }
  139. //加密方法
  140. function Encrypt(word) {
  141. let srcs = CryptoJS.enc.Utf8.parse(word);
  142. let encrypted = CryptoJS.AES.encrypt(srcs, key, { iv: iv, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.Pkcs7 });
  143. return encrypted.ciphertext.toString().toUpperCase();
  144. }
  145. function isMobileNo(account) {
  146. // 手机号正则
  147. var isChinaMobile = new RegExp(
  148. "(^1(3[4-9]|4[78]|5[0-27-9]|7[28]|8[2-478]|98)\\d{8}$)"
  149. ); // 中国移动
  150. // 手机段:134,135,136,137,138,139,147,148[卫星通信],150,151,152,157,158,159,172,178,182,183,184,187,188,198
  151. var isChinaUnicom = new RegExp(
  152. "(^1(3[0-2]|4[56]|5[56]|66|7[156]|8[56])\\d{8}$)"
  153. ); // 中国联通
  154. // 手机段:130,131,132,145,146[卫星通信],155,156,166,171,175,176,185,186
  155. var isChinaTelcom = new RegExp("(^1(33|49|53|7[347]|8[019]|99)\\d{8}$)"); // 中国电信
  156. // 手机段:133,149,153,173,174,177,180,181,189,199
  157. var isOtherTelphone = new RegExp("(^170\\d{8}$)");
  158. // 虚拟运营商170号段
  159. if (isChinaMobile.test(account)) {
  160. return true;
  161. } else if (isChinaUnicom.test(account)) {
  162. return true;
  163. } else if (isChinaTelcom.test(account)) {
  164. return true;
  165. } else return isOtherTelphone.test(account);
  166. }
  167. function Base64() {
  168. // private property
  169. var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
  170. // public method for encoding
  171. this.encode = function (input) {
  172. var output = "";
  173. var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
  174. var i = 0;
  175. input = this._utf8_encode(input);
  176. while (i < input.length) {
  177. chr1 = input.charCodeAt(i++);
  178. chr2 = input.charCodeAt(i++);
  179. chr3 = input.charCodeAt(i++);
  180. enc1 = chr1 >> 2;
  181. enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
  182. enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
  183. enc4 = chr3 & 63;
  184. if (isNaN(chr2)) {
  185. enc3 = enc4 = 64;
  186. } else if (isNaN(chr3)) {
  187. enc4 = 64;
  188. }
  189. output = output +
  190. _keyStr.charAt(enc1) + _keyStr.charAt(enc2) +
  191. _keyStr.charAt(enc3) + _keyStr.charAt(enc4);
  192. }
  193. return output;
  194. }
  195. // public method for decoding
  196. this.decode = function (input) {
  197. var output = "";
  198. var chr1, chr2, chr3;
  199. var enc1, enc2, enc3, enc4;
  200. var i = 0;
  201. input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
  202. while (i < input.length) {
  203. enc1 = _keyStr.indexOf(input.charAt(i++));
  204. enc2 = _keyStr.indexOf(input.charAt(i++));
  205. enc3 = _keyStr.indexOf(input.charAt(i++));
  206. enc4 = _keyStr.indexOf(input.charAt(i++));
  207. chr1 = (enc1 << 2) | (enc2 >> 4);
  208. chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
  209. chr3 = ((enc3 & 3) << 6) | enc4;
  210. output = output + String.fromCharCode(chr1);
  211. if (enc3 != 64) {
  212. output = output + String.fromCharCode(chr2);
  213. }
  214. if (enc4 != 64) {
  215. output = output + String.fromCharCode(chr3);
  216. }
  217. }
  218. output = this._utf8_decode(output);
  219. return output;
  220. }
  221. // private method for UTF-8 encoding
  222. this._utf8_encode = function (string) {
  223. string = string.replace(/\r\n/g, "\n");
  224. var utftext = "";
  225. for (var n = 0; n < string.length; n++) {
  226. var c = string.charCodeAt(n);
  227. if (c < 128) {
  228. utftext += String.fromCharCode(c);
  229. } else if ((c > 127) && (c < 2048)) {
  230. utftext += String.fromCharCode((c >> 6) | 192);
  231. utftext += String.fromCharCode((c & 63) | 128);
  232. } else {
  233. utftext += String.fromCharCode((c >> 12) | 224);
  234. utftext += String.fromCharCode(((c >> 6) & 63) | 128);
  235. utftext += String.fromCharCode((c & 63) | 128);
  236. }
  237. }
  238. return utftext;
  239. }
  240. // private method for UTF-8 decoding
  241. this._utf8_decode = function (utftext) {
  242. var string = "";
  243. var i = 0;
  244. var c = 0;
  245. var c1 = 0;
  246. var c2 = 0;
  247. while (i < utftext.length) {
  248. c = utftext.charCodeAt(i);
  249. if (c < 128) {
  250. string += String.fromCharCode(c);
  251. i++;
  252. } else if ((c > 191) && (c < 224)) {
  253. c2 = utftext.charCodeAt(i + 1);
  254. string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
  255. i += 2;
  256. } else {
  257. c2 = utftext.charCodeAt(i + 1);
  258. var c3 = utftext.charCodeAt(i + 2);
  259. string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
  260. i += 3;
  261. }
  262. }
  263. return string;
  264. }
  265. }
  266. function dateFormatter(str) {
  267. //默认返回yyyy-MM-dd HH-mm-ss
  268. var hasTime = arguments[1] != false ? true : false; //可传第二个参数false,返回yyyy-MM-dd
  269. var hasType = arguments[2]; //可传第三个参数,tru 返回yyyy年MM月dd日
  270. var dateStr = String(str);
  271. if (!(dateStr.indexOf("-") > -1 && dateStr.indexOf("T") > -1)) {
  272. dateStr = dateStr.replace(/\-/g, "/");
  273. }
  274. var d = new Date(dateStr);
  275. var year = d.getFullYear();
  276. var month =
  277. d.getMonth() + 1 < 10 ? "0" + (d.getMonth() + 1) : d.getMonth() + 1;
  278. var day = d.getDate() < 10 ? "0" + d.getDate() : d.getDate();
  279. var hour = d.getHours() < 10 ? "0" + d.getHours() : d.getHours();
  280. var minute = d.getMinutes() < 10 ? "0" + d.getMinutes() : d.getMinutes();
  281. var second = d.getSeconds() < 10 ? "0" + d.getSeconds() : d.getSeconds();
  282. if (hasTime) {
  283. if (hasType) {
  284. return `${month}月${day}日 ${hour}时${minute}分${second}秒`;
  285. }
  286. return (
  287. [year, month, day].join(".") + " " + [hour, minute, second].join(":")
  288. );
  289. } else {
  290. if (hasType) {
  291. return `${month}月${day}日`;
  292. }
  293. return [year, month, day].join(".");
  294. }
  295. }
  296. function getTotalMonth(date, hasTime = false) {
  297. //默认返回 [yyyy-MM-01,yyyy-MM-dd] 整月时间
  298. let newDate = new Date(date);
  299. let year = newDate.getFullYear();
  300. let month =
  301. newDate.getMonth() + 1 < 10
  302. ? "0" + (newDate.getMonth() + 1)
  303. : newDate.getMonth() + 1;
  304. var hour =
  305. newDate.getHours() < 10 ? "0" + newDate.getHours() : newDate.getHours();
  306. var minute =
  307. newDate.getMinutes() < 10
  308. ? "0" + newDate.getMinutes()
  309. : newDate.getMinutes();
  310. var second =
  311. newDate.getSeconds() < 10
  312. ? "0" + newDate.getSeconds()
  313. : newDate.getSeconds();
  314. let timestamp =
  315. new Date(`${year}/${newDate.getMonth() + 2}/01`).getTime() -
  316. 24 * 60 * 60 * 1000;
  317. if (hasTime) {
  318. return [
  319. `${year}-${month}-01 ${hour}:${minute}:${second}`,
  320. dateFormatter(timestamp, true),
  321. ];
  322. } else {
  323. return [`${year}-${month}-01`, dateFormatter(timestamp, false)];
  324. }
  325. }
  326. export async function downloadFileByUrl(dataUrl) {
  327. return (await fetch(dataUrl)).blob();
  328. }