entities/feedItem.js

  1. import axios from 'axios'
  2. import debug from 'debug'
  3. import { defaultHeaders } from '../utils/http'
  4. import { struct, minAPIParameterDefintion } from '../utils/validator'
  5. const log = debug('starling:feed-item-service')
  6. /**
  7. * Service to interact with a customer's feed items
  8. */
  9. class FeedItem {
  10. /**
  11. * Create a new feed item service
  12. * @param {Object} options - configuration parameters
  13. */
  14. constructor (options) {
  15. this.options = options
  16. }
  17. /**
  18. * Get feed items created between two timestamps
  19. * @param {string} parameters.apiUrl - the API URL
  20. * @param {string} parameters.accessToken - the oauth bearer token
  21. * @param {string} parameters.accountUid - the account uid
  22. * @param {string} parameters.categoryUid - the category uid
  23. * @param {string} parameters.minTransactionTimestamp - timestamp e.g. '2019-10-25T12:34:56.789Z'
  24. * @param {string} parameters.maxTransactionTimestamp - timestamp e.g. '2019-10-26T12:34:56.789Z'
  25. * @return {Promise} - the http request promise
  26. */
  27. getFeedItemsBetween (parameters) {
  28. parameters = Object.assign({}, this.options, parameters)
  29. getFeedItemsBetweenParameterValidator(parameters)
  30. const { apiUrl, accessToken, accountUid, categoryUid, minTransactionTimestamp, maxTransactionTimestamp } = parameters
  31. const url = `${apiUrl}/api/v2/feed/account/${accountUid}/category/${categoryUid}/transactions-between`
  32. log(`GET ${url}`)
  33. return axios({
  34. method: 'GET',
  35. url,
  36. params: {
  37. minTransactionTimestamp,
  38. maxTransactionTimestamp
  39. },
  40. headers: defaultHeaders(accessToken)
  41. })
  42. }
  43. /**
  44. * Get a feed item
  45. * @param {string} parameters.apiUrl - the API URL
  46. * @param {string} parameters.accessToken - the oauth bearer token
  47. * @param {string} parameters.accountUid - the account uid
  48. * @param {string} parameters.categoryUid - the category uid
  49. * @param {string} parameters.feedItemUid - the feed item uid
  50. * @return {Promise} - the http request promise
  51. */
  52. getFeedItem (parameters) {
  53. parameters = Object.assign({}, this.options, parameters)
  54. getFeedItemParameterValidator(parameters)
  55. const { apiUrl, accessToken, accountUid, categoryUid, feedItemUid } = parameters
  56. const url = `${apiUrl}/api/v2/feed/account/${accountUid}/category/${categoryUid}/${feedItemUid}`
  57. log(`GET ${url}`)
  58. return axios({
  59. method: 'GET',
  60. url,
  61. headers: defaultHeaders(accessToken)
  62. })
  63. }
  64. /**
  65. * Get feed items created or updated since a given timestamp
  66. * @param {string} parameters.apiUrl - the API URL
  67. * @param {string} parameters.accessToken - the oauth bearer token
  68. * @param {string} parameters.accountUid - the account uid
  69. * @param {string} parameters.categoryUid - the category uid
  70. * @param {string} parameters.changesSince - timestamp e.g. '2019-10-25T12:34:56.789Z'
  71. * @return {Promise} - the http request promise
  72. */
  73. getFeedItemsChangedSince (parameters) {
  74. parameters = Object.assign({}, this.options, parameters)
  75. getFeedItemsChangedSinceParameterValidator(parameters)
  76. const { apiUrl, accessToken, accountUid, categoryUid, changesSince } = parameters
  77. const url = `${apiUrl}/api/v2/feed/account/${accountUid}/category/${categoryUid}`
  78. log(`GET ${url}`)
  79. return axios({
  80. method: 'GET',
  81. url,
  82. params: {
  83. changesSince
  84. },
  85. headers: defaultHeaders(accessToken)
  86. })
  87. }
  88. }
  89. const getFeedItemsBetweenParameterValidator = struct.interface({
  90. ...minAPIParameterDefintion,
  91. accountUid: 'uuid',
  92. categoryUid: 'uuid',
  93. minTransactionTimestamp: 'timestamp',
  94. maxTransactionTimestamp: 'timestamp'
  95. })
  96. const getFeedItemParameterValidator = struct.interface({
  97. ...minAPIParameterDefintion,
  98. accountUid: 'uuid',
  99. categoryUid: 'uuid',
  100. feedItemUid: 'uuid'
  101. })
  102. const getFeedItemsChangedSinceParameterValidator = struct.interface({
  103. ...minAPIParameterDefintion,
  104. accountUid: 'uuid',
  105. categoryUid: 'uuid',
  106. changesSince: 'timestamp'
  107. })
  108. module.exports = FeedItem