Reference Source

js/datas/providers/record_provider.js

  1.  
  2. // NPM IMPORTS
  3. import assert from 'assert'
  4.  
  5. // COMMON IMPORTS
  6. import T from '../../utils/types'
  7.  
  8.  
  9. /**
  10. * Contextual constant for this file logs.
  11. * @private
  12. */
  13. const context = 'common/datas/providers/record_provider'
  14.  
  15.  
  16.  
  17. /**
  18. * Record provider base class.
  19. * @abstract
  20. * @author Luc BORIES
  21. * @license Apache-2.0
  22. */
  23. export default class RecordProvider
  24. {
  25. /**
  26. * Create a record provider instance
  27. */
  28. constructor(arg_settings)
  29. {
  30. assert( T.isObject(arg_settings), context + ':bad settings object')
  31. /**
  32. * Record provider settings.
  33. * @type {object}
  34. */
  35. this.$settings = T.isFunction(arg_settings.toJS) ? arg_settings.toJS() : arg_settings
  36. }
  37. /**
  38. * Build a query to fetch datas.
  39. * @param {object|undefined} arg_query - optional query context
  40. * @returns {Promise} datas record promise
  41. */
  42. build_query(arg_query)
  43. {
  44. // logs.debug(context, 'build_query:not implemented')
  45.  
  46. return arg_query
  47. }
  48. /**
  49. * Provide all datas records
  50. * @abstract
  51. * @param {object|undefined} arg_query - optional query context
  52. * @returns {Promise} datas record promise
  53. */
  54. find_all_records(/*arg_query*/)
  55. {
  56. // logs.debug(context, 'find_all_records:not implemented')
  57. return Promise.resolve(null)
  58. }
  59. /**
  60. * Find a record by its id.
  61. * @abstract
  62. * @param {string|number} arg_id - record id
  63. * @param {object|undefined} arg_query - optional query context
  64. * @returns {Promise} - promise of found record or null
  65. */
  66. find_records_by_id(arg_id, arg_query)
  67. {
  68. // logs.debug(context, 'find_records_by_id:not implemented')
  69. assert( T.isString(arg_id) || T.isNumber(arg_id), context + ':find_records_by_id:bad id string or number')
  70.  
  71. // TO IMPLEMENT IN SUBCLASSES
  72.  
  73. return Promise.resolve(null)
  74. }
  75. /**
  76. * Find a record with a set of values.
  77. * @abstract
  78. * @param {object} arg_values_map - values map
  79. * @param {object|undefined} arg_query - optional query context
  80. * @returns {Promise} - promise of found record or null
  81. */
  82. find_records_by_values(arg_values_map/*, arg_query*/)
  83. {
  84. // logs.debug(context, 'find_records_by_values:not implemented')
  85. assert( T.isObject(arg_values_map), context + ':find_records_by_id:bad values object')
  86.  
  87. // TO IMPLEMENT IN SUBCLASSES
  88.  
  89. return Promise.resolve(null)
  90. }
  91. }