Source

lib/economy/buy.js

  1. // Includes
  2. const http = require('../util/http.js').func
  3. const getProductInfo = require('../asset/getProductInfo.js').func
  4. const getGeneralToken = require('../util/getGeneralToken.js').func
  5. // Args
  6. exports.required = [['asset', 'product']]
  7. exports.optional = ['price', 'jar']
  8. // Docs
  9. /**
  10. * 🔐 Buy an asset from the marketplace.
  11. * @category Assets
  12. * @param {number} asset - The ID of the product.
  13. * @param {number=} price - The price of the product.
  14. * @returns {Promise<BuyAssetResponse>}
  15. * @example const noblox = require("noblox.js")
  16. * // Login using your cookie
  17. * noblox.buy(1117747196)
  18. **/
  19. // Define
  20. function buy (jar, token, product, price) {
  21. const robux = product.PriceInRobux || 0
  22. const productId = product.ProductId
  23. if (price) {
  24. if (typeof price === 'number') {
  25. if (robux !== price) {
  26. throw new Error('Price requirement not met. Requested price: ' + price + ' Actual price: ' + robux)
  27. }
  28. } else if (typeof price === 'object') {
  29. const high = price.high
  30. const low = price.low
  31. if (high) {
  32. if (robux > high) {
  33. throw new Error('Price requirement not met. Requested price: <=' + high + ' Actual price: ' + robux)
  34. }
  35. }
  36. if (low) {
  37. if (robux < low) {
  38. throw new Error('Price requirement not met. Requested price: >=' + low + ' Actual price: ' + robux)
  39. }
  40. }
  41. }
  42. }
  43. const httpOpt = {
  44. url: '//economy.roblox.com/v1/purchases/products/' + productId,
  45. options: {
  46. method: 'POST',
  47. jar,
  48. headers: {
  49. 'X-CSRF-TOKEN': token
  50. },
  51. json: {
  52. expectedCurrency: 1,
  53. expectedPrice: robux,
  54. expectedSellerId: product.Creator.Id
  55. }
  56. }
  57. }
  58. return http(httpOpt)
  59. .then(function (json) {
  60. let err = json.errorMsg
  61. if (json.reason === 'InsufficientFunds') {
  62. err = 'You need ' + json.shortfallPrice + ' more robux to purchase this item.'
  63. } else if (json.errorMsg) {
  64. err = json.errorMsg
  65. }
  66. if (!err) {
  67. return { productId, price: robux }
  68. } else {
  69. throw new Error(err)
  70. }
  71. })
  72. }
  73. function runWithToken (args) {
  74. const jar = args.jar
  75. return getGeneralToken({
  76. jar
  77. })
  78. .then(function (token) {
  79. return buy(jar, token, args.product, args.price)
  80. })
  81. }
  82. exports.func = function (args) {
  83. if (!args.product) {
  84. return getProductInfo({
  85. asset: args.asset
  86. })
  87. .then(function (product) {
  88. args.product = product
  89. return runWithToken(args)
  90. })
  91. } else {
  92. return runWithToken(args)
  93. }
  94. }