entities/whoAmI.js

  1. import axios from 'axios';
  2. import debug from 'debug';
  3. import {defaultHeaders} from '../utils/http';
  4. import {typeValidation} from '../utils/validator';
  5. const log = debug('starling:who-am-i-service');
  6. /**
  7. * Service to interact with the Who Am I endpoint
  8. */
  9. class WhoAmI {
  10. /**
  11. * Creates an instance of the who am I client
  12. * @param {Object} options - configuration parameters
  13. */
  14. constructor (options) {
  15. this.options = options;
  16. }
  17. /**
  18. * Retrieves the customer UUID and permissions corresponding to the access token passed
  19. * @param {string} accessToken - the oauth bearer token.
  20. * @return {Promise} - the http request promise
  21. */
  22. getMe (accessToken) {
  23. typeValidation(arguments, getMeParameterDefinition);
  24. const url = `${this.options.apiUrl}/api/v1/me`;
  25. log(`GET ${url}`);
  26. return axios({
  27. method: 'GET',
  28. url,
  29. headers: defaultHeaders(accessToken)
  30. });
  31. }
  32. }
  33. const getMeParameterDefinition = [
  34. {name: 'accessToken', validations: ['required', 'string']}
  35. ];
  36. module.exports = WhoAmI;