Source

lib/users/getUsernameFromId.js

  1. // Includes
  2. const http = require('../util/http.js').func
  3. const cache = require('../cache')
  4. // Args
  5. exports.required = ['id']
  6. // Docs
  7. /**
  8. * ✅ Get a user's username from their user id.
  9. * @category User
  10. * @alias getUsernameFromId
  11. * @param {number} id - The id of the user.
  12. * @returns {Promise<string>}
  13. * @example const noblox = require("noblox.js")
  14. * let username = await noblox.getUsernameFromId(123456)
  15. **/
  16. // Define
  17. function getUsernameFromId (id) {
  18. const httpOpt = {
  19. url: `//users.roblox.com/v1/users/${id}`,
  20. options: {
  21. resolveWithFullResponse: true,
  22. method: 'GET'
  23. }
  24. }
  25. return http(httpOpt)
  26. .then(function (res) {
  27. if (res.statusCode === 200) {
  28. const json = JSON.parse(res.body)
  29. return json.name
  30. } else {
  31. throw new Error('User does not exist')
  32. }
  33. })
  34. }
  35. exports.func = function (args) {
  36. const id = args.id
  37. return cache.wrap('NameFromID', id, function () {
  38. return getUsernameFromId(id)
  39. })
  40. }