Source

lib/util/getAuthenticatedUser.js

  1. // Includes
  2. const http = require('./http.js').func
  3. // Args
  4. exports.optional = ['jar']
  5. // Docs
  6. /**
  7. * 🔐 Get the current authenticated user.
  8. * @category Utility
  9. * @alias getAuthenticatedUser
  10. * @returns {AuthenticatedUserData}
  11. * @example const noblox = require("noblox.js")
  12. * // Login using your cookie.
  13. * const user = await noblox.getAuthenticatedUser()
  14. **/
  15. // Define
  16. exports.func = async function (args) {
  17. const jar = args.jar
  18. const httpOpt = {
  19. url: '//users.roblox.com/v1/users/authenticated',
  20. options: {
  21. method: 'GET',
  22. followRedirect: false,
  23. jar,
  24. json: true,
  25. resolveWithFullResponse: true
  26. }
  27. }
  28. const res = await http(httpOpt)
  29. if (res.statusCode === 401) {
  30. throw new Error('You are not logged in.')
  31. } else if (res.statusCode !== 200) {
  32. throw new Error(JSON.stringify(res.body))
  33. }
  34. return res.body
  35. }