Source

lib/games/getGameRevenue.js

  1. const http = require('../util/http.js').func
  2. const getGeneralToken = require('../util/getGeneralToken.js').func
  3. exports.required = ['placeId', 'type', 'granularity']
  4. exports.optional = ['jar']
  5. /**
  6. * 🔐 Get the Game Revenue data.
  7. * @category Game
  8. * @alias getGameRevenue
  9. * @param {number} placeId - The id of the game.
  10. * @param {"Revenue" | "RevenuePerVisit" | "AverageVisitLength" | "Visits"} type - The type of revenue. Options: Revenue, RevenuePerVisit, AverageVisitLength, Visits
  11. * @param {"Hourly" | "Daily" | "Monthly"} granularity - The type of revenue. Options: Hourly, Daily, Monthly
  12. * @returns {Promise<GameRevenueResponse>}
  13. * @example const noblox = require("noblox.js")
  14. * const gameRevenue = await noblox.getGameRevenue(936068308, "Revenue", "Hourly");
  15. **/
  16. function getGameRevenue (placeId, type, granularity, jar, token) {
  17. return new Promise((resolve, reject) => {
  18. const httpOpt = {
  19. url: `//develop.roblox.com/v1/places/${placeId}/stats/${type}?granularity=${granularity}`,
  20. options: {
  21. method: 'GET',
  22. jar,
  23. headers: {
  24. 'X-CSRF-TOKEN': token
  25. },
  26. resolveWithFullResponse: true
  27. }
  28. }
  29. return http(httpOpt)
  30. .then(function (res) {
  31. if (res.statusCode === 200) resolve(JSON.parse(res.body))
  32. else if (res.statusCode === 401) reject(new Error('You are not logged in.'))
  33. else if (res.statusCode === 403) reject(new Error('You do not have permission to view this game.'))
  34. else reject(new Error('An unknown error occurred.'))
  35. })
  36. .catch(function (err) { console.error(err); reject(err) })
  37. })
  38. }
  39. exports.func = function (args) {
  40. const jar = args.jar
  41. return getGeneralToken({ jar })
  42. .then(function (xcsrf) {
  43. return getGameRevenue(args.placeId, args.type, args.granularity, jar, xcsrf)
  44. })
  45. }