Source

lib/economy/getUserFunds.js

  1. // Includes
  2. const http = require('../util/http.js').func
  3. // Args
  4. exports.required = ['userId']
  5. exports.optional = ['jar']
  6. // Docs
  7. /**
  8. * 🔓 Gets the amount of robux for the authenticated user.
  9. * @category User
  10. * @param {number} userId - Must match the userId of the authenticated user
  11. * @alias getUserFunds
  12. * @returns {Promise<number>}
  13. * @example const noblox = require("noblox.js")
  14. * // Login using your cookie
  15. * const currentUser = await noblox.setCookie(process.env.ROBLOXCOOKIE)
  16. * const robux = await noblox.getUserFunds(currentUser.id)
  17. */
  18. // Define
  19. function getUserFunds (userId, jar) {
  20. return http({
  21. url: `//economy.roblox.com/v1/users/${userId}/currency`,
  22. options: {
  23. jar,
  24. resolveWithFullResponse: true
  25. }
  26. })
  27. .then(({ statusCode, body }) => {
  28. const { robux, errors } = JSON.parse(body)
  29. if (statusCode === 200) {
  30. return robux
  31. } else if (statusCode === 400 || statusCode === 403) {
  32. throw new Error(`${errors[0].message} | userId: ${userId}`)
  33. } else {
  34. throw new Error(`An unknown error occurred with getUserFunds() | [${statusCode}] userId: ${userId}`)
  35. }
  36. })
  37. }
  38. exports.func = function ({ userId, jar }) {
  39. return getUserFunds(userId, jar)
  40. }