entities/transaction.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:transaction-service');
  6. const transactionSource = (source) => {
  7. if (source === 'MASTER_CARD') {
  8. return '/mastercard';
  9. } else if (source === 'FASTER_PAYMENTS_IN') {
  10. return '/fps/in';
  11. } else if (source === 'FASTER_PAYMENTS_OUT') {
  12. return '/fps/out';
  13. } else if (source === 'DIRECT_DEBIT') {
  14. return '/direct-debit';
  15. } else {
  16. return ''
  17. }
  18. };
  19. /**
  20. * Service to interact with a customer's transactions
  21. */
  22. class Transaction {
  23. /**
  24. * Create a new transaction service
  25. * @param {Object} options - configuration parameters
  26. */
  27. constructor (options) {
  28. this.options = options;
  29. }
  30. /**
  31. * Gets the customer's transactions over the given period
  32. * @param {string} accessToken - the oauth bearer token.
  33. * @param {string} fromDate - filter transactions after this date. Format: YYYY-MM-DD
  34. * @param {string} toDate - filter transactions before this date. Format: YYYY-MM-DD
  35. * @param {string=} source - the transaction type (e.g. faster payments, mastercard).
  36. * If not specified, results are not filtered by source.
  37. * @return {Promise} - the http request promise
  38. */
  39. getTransactions (accessToken, fromDate, toDate, source) {
  40. typeValidation(arguments, getTransactionsParameterDefinition);
  41. const url = `${this.options.apiUrl}/api/v1/transactions${transactionSource(source)}`;
  42. log(`GET ${url} from=${fromDate} to=${toDate}`);
  43. return axios({
  44. method: 'GET',
  45. url,
  46. params: {
  47. from: fromDate,
  48. to: toDate
  49. },
  50. headers: defaultHeaders(accessToken)
  51. });
  52. }
  53. /**
  54. * Gets the full details of a single transaction
  55. * @param {string} accessToken - the oauth bearer token
  56. * @param {string} transactionId - the unique transaction ID
  57. * @param {string=} source - the transaction type (e.g. faster payments, mastercard).
  58. * If not specified, only generic transaction information will be returned.
  59. * @return {Promise} - the http request promise
  60. */
  61. getTransaction (accessToken, transactionId, source) {
  62. typeValidation(arguments, getTransactionParameterDefinition);
  63. const url = `${this.options.apiUrl}/api/v1/transactions${transactionSource(source)}/${transactionId}`;
  64. log(`GET ${url}`);
  65. return axios({
  66. method: 'GET',
  67. url,
  68. headers: defaultHeaders(accessToken)
  69. });
  70. }
  71. }
  72. const getTransactionsParameterDefinition = [
  73. {name: 'accessToken', validations: ['required', 'string']},
  74. {name: 'fromDate', validations: ['optional', 'string']},
  75. {name: 'toDate', validations: ['optional', 'string']},
  76. {name: 'source', validations: ['optional', 'string']}
  77. ];
  78. const getTransactionParameterDefinition = [
  79. {name: 'accessToken', validations: ['required', 'string']},
  80. {name: 'transactionId', validations: ['required', 'string']},
  81. {name: 'source', validations: ['optional', 'string']}
  82. ];
  83. module.exports = Transaction;