entities/customer.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:customer-service');
  6. /**
  7. * Service to interact with a customer
  8. */
  9. class Customer {
  10. /**
  11. * Create a new customer service
  12. * @param {Object} options - configuration parameters
  13. */
  14. constructor (options) {
  15. this.options = options;
  16. }
  17. /**
  18. * Gets the customer's details
  19. * @param {string} accessToken - the oauth bearer token.
  20. * @return {Promise} - the http request promise
  21. */
  22. getCustomer (accessToken) {
  23. typeValidation(arguments, getCustomerParameterDefinition);
  24. const url = `${this.options.apiUrl}/api/v1/customers`;
  25. log(`GET ${url}`);
  26. return axios({
  27. method: 'GET',
  28. url,
  29. headers: defaultHeaders(accessToken)
  30. });
  31. }
  32. }
  33. const getCustomerParameterDefinition = [
  34. {name: 'accessToken', validations: ['required', 'string']}
  35. ];
  36. module.exports = Customer;