Source: Client.js

  1. import axios from 'axios';
  2. import Qs from 'qs';
  3. /**
  4. * The request client takes configuration from state and an axios request object
  5. * then (1) logs the method and URL, (2) applies standard headers and auth
  6. * before spreading the rest of the axios configuration, and (3) executes an
  7. * axios request.
  8. * @function
  9. * @param {object} configuration - configuration must have a username and password
  10. * @param {object} axiosRequest - the axiosRequest contains valid axios params: https://axios-http.com/docs/req_config
  11. * @returns {Promise} a promise that will resolve to either a response object or an error object.
  12. */
  13. export function request({ username, password }, axiosRequest) {
  14. const { method, url, params } = axiosRequest;
  15. console.log(`Sending ${method} request to ${url}`);
  16. if (params) console.log(` with params:`, params);
  17. // NOTE: We don't follow redirects for unsafe methods: https://github.com/axios/axios/issues/2460
  18. const safeRedirect = ['get', 'head', 'options', 'trace'].includes(
  19. method.toLowerCase()
  20. );
  21. return axios({
  22. headers: { 'Content-Type': 'application/json' },
  23. responseType: 'json',
  24. maxRedirects: safeRedirect ? 5 : 0,
  25. auth: { username, password },
  26. paramsSerializer: (params) => Qs.stringify(params, {arrayFormat: 'repeat'}),
  27. // Note that providing headers or auth in the request object will overwrite.
  28. ...axiosRequest,
  29. });
  30. }