Source

lib/util/getGeneralToken.js

  1. // Includes
  2. const getHash = require('./getHash.js').func
  3. const http = require('./http.js').func
  4. const cache = require('../cache')
  5. const options = require('../options.js')
  6. // Args
  7. exports.optional = ['jar']
  8. // Docs
  9. /**
  10. * 🔐 Generate an X-CSRF-Token.
  11. * @category Utility
  12. * @alias getGeneralToken
  13. * @param {CookieJar=} jar - The jar containing the .ROBLOSECURITY token.
  14. * @returns {Promise<string>}
  15. * @example const noblox = require("noblox.js")
  16. * // Login using your cookie.
  17. * const XCSRF = await noblox.getGeneralToken()
  18. **/
  19. // Define
  20. function getGeneralToken (jar) {
  21. if (!jar && !options.jar.session) {
  22. throw new Error('Cannot get CSRF: You are not logged in.')
  23. }
  24. const httpOpt = {
  25. // This will never actually sign you out because an X-CSRF-TOKEN isn't provided, only received
  26. url: '//auth.roblox.com/v2/logout', // REQUIRES https. Thanks for letting me know, ROBLOX...
  27. options: {
  28. resolveWithFullResponse: true,
  29. method: 'POST',
  30. jar
  31. }
  32. }
  33. return http(httpOpt)
  34. .then(function (res) {
  35. const xcsrf = res.headers['x-csrf-token']
  36. if (xcsrf) {
  37. return xcsrf
  38. } else {
  39. throw new Error('Did not receive X-CSRF-TOKEN')
  40. }
  41. })
  42. }
  43. exports.func = function (args) {
  44. const jar = args.jar
  45. return cache.wrap('XCSRF', getHash({ jar }), function () {
  46. return getGeneralToken(jar)
  47. })
  48. }