EntityAttribute/getValue.js

  1. const { NULL_CHARACTER } = require('./constants')
  2. const getLoader = require('./getLoader')
  3. const v = require('./validate')
  4. /**
  5. * Asynchronously returns the value of the attribute for the entity with the given ID.
  6. *
  7. * @function EntityAttribute#getValue
  8. * @param {String} entityId The given entity ID.
  9. * @param {Function} done The final callback. Invoked with `(err, value)`
  10. * @returns {?String}
  11. */
  12. module.exports = function EntityAttribute$getValue(entityId, done) {
  13. if (!v.callback(done, "argument 2, 'done'")) {
  14. throw v.lastError
  15. }
  16. if (!v.entityId(entityId, "argument 1, 'entityId'")) {
  17. done(v.lastError)
  18. return
  19. }
  20. const client = this._client
  21. getLoader(client).load('getValue', (err, sha) => {
  22. if (err) {
  23. done(err)
  24. return
  25. }
  26. client.evalsha(sha, 0, this._keyPrefix, entityId, (err, value) => {
  27. if (err) {
  28. done(err)
  29. return
  30. }
  31. done(null, value !== NULL_CHARACTER ? value : null)
  32. })
  33. })
  34. }