Source

lib/util/generalRequest.js

  1. // Includes
  2. const http = require('./http.js').func
  3. const getVerification = require('./getVerification.js').func
  4. // Args
  5. exports.required = ['url', 'events']
  6. exports.optional = ['http', 'ignoreCache', 'getBody', 'jar']
  7. // Docs
  8. /**
  9. * 🔐 Get the verification inputs and send a request.
  10. * @category Utility
  11. * @alias generalRequest
  12. * @param {string} url - The url to post to.
  13. * @param {object} events - Form data to send with the request.
  14. * @param {boolean=} [ignoreCache=false] - Whether to ignore the cache or not.
  15. * @param {boolean=} [getBody=false] - Whether to return the original body before the POST request.
  16. * @param {CookieJar=} jar - The CookieJar containing the .ROBLOSECURITY cookie.
  17. * @returns {Promise<Object>}
  18. * @example const noblox = require("noblox.js")
  19. * // Login using your cookie.
  20. * noblox.generalRequest("//www.roblox.com/Groups/Group.aspx?gid=1", { __EVENTTARGET: 'JoinGroupDiv', __EVENTARGUMENT: 'Click' })
  21. **/
  22. // Define
  23. function general (jar, url, inputs, events, customOpt, body) {
  24. for (const input in events) {
  25. inputs[input] = events[input]
  26. }
  27. const httpOpt = {
  28. url,
  29. options: {
  30. resolveWithFullResponse: true,
  31. method: 'POST',
  32. form: inputs,
  33. jar
  34. }
  35. }
  36. if (customOpt) {
  37. if (customOpt.url) {
  38. delete customOpt.url
  39. }
  40. Object.assign(httpOpt.options, customOpt)
  41. }
  42. return http(httpOpt).then(function (res) {
  43. return {
  44. res,
  45. body
  46. }
  47. })
  48. }
  49. exports.func = function (args) {
  50. const jar = args.jar
  51. const url = args.url
  52. const custom = args.http
  53. return getVerification({ url: custom ? (custom.url || url) : url, jar, ignoreCache: args.ignoreCache, getBody: args.getBody })
  54. .then(function (response) {
  55. return general(jar, url, response.inputs, args.events, args.http, response.body)
  56. })
  57. }