Source: faq/index.js

  1. /**
  2. * @module faq
  3. */
  4. const faqRepo = require("../../repositories/faq");
  5. const cache = require("../cache");
  6. /**
  7. * Fetch all FAQ objects and return them sorted ascending by id.
  8. * If FAQs are cached, fetch from cache, otherwise fetch from
  9. * the database and cache them for future use.
  10. */
  11. const fetchAll = async () => {
  12. if (cache.has("faqs")) {
  13. return cache.get("faqs");
  14. } else {
  15. const findResult = await faqRepo.findAll();
  16. const sortedFaqs = findResult.rows.sort((a, b) => a.id - b.id);
  17. cache.set("faqs", sortedFaqs);
  18. return sortedFaqs;
  19. }
  20. };
  21. /**
  22. * Get an FAQ object record directly from the database.
  23. * Skips cache check, designed to be used for admin functionality.
  24. * @param {Number} id
  25. * @return {Object} faq object
  26. */
  27. const findById = async (id) => {
  28. const findResult = await faqRepo.findById(id);
  29. return findResult.rows[0];
  30. };
  31. /**
  32. * Fetch FAQs based on input keyword and matching questions.
  33. * If FAQs are cached, return from cache,
  34. * otherwise, fetch from database.
  35. * @param {String} keyword
  36. * @return {Array} matching FAQ objects
  37. */
  38. const fetchByKeyword = async (keyword) => {
  39. if (cache.has("faqs")) {
  40. const cachedVal = cache.get("faqs");
  41. const regex = RegExp(keyword ? keyword : '', 'i');
  42. const matching = [];
  43. cachedVal.forEach(e => {
  44. if (regex.test(e.question)) {
  45. matching.push(e);
  46. }
  47. });
  48. return matching;
  49. }
  50. const findResult = await faqRepo.findByKeyword(keyword ? keyword : '');
  51. return findResult.rows;
  52. };
  53. /**
  54. * Update an faq object in the database.
  55. * Flushes the faqs from cache upon a successful
  56. * update.
  57. * @param {Object} faq valid faq object
  58. * @return {Object} updated faq object
  59. */
  60. const update = async (faq) => {
  61. const updateResult = await faqRepo.update(faq);
  62. // flush cached faqs if successful
  63. cache.del("faqs");
  64. return updateResult.rows[0];
  65. };
  66. /**
  67. * Delete an faq object from the database.
  68. * Flushes the faqs from the cache upon a successful
  69. * deletion.
  70. * @param {Number} id of faq object
  71. */
  72. const remove = async (id) => {
  73. await faqRepo.removeById(id);
  74. // flush cached faqs if successful
  75. cache.del("faqs");
  76. };
  77. /**
  78. * Insert a new faq into the database.
  79. * Flushes the faqs from the cache upon a successful
  80. * insertion.
  81. * @param {String} question
  82. * @param {String} answer
  83. * @return {Object} new faq record
  84. */
  85. const insert = async (question, answer) => {
  86. const insertionResult = await faqRepo.insert({
  87. question,
  88. answer,
  89. });
  90. cache.del("faqs");
  91. return insertionResult.rows[0];
  92. };
  93. module.exports = {
  94. fetchAll,
  95. fetchByKeyword,
  96. update,
  97. insert,
  98. findById,
  99. remove,
  100. };