Source

lib/friends/getFriendRequests.js

  1. // Includes
  2. const http = require('../util/http.js').func
  3. // Args
  4. exports.required = []
  5. exports.optional = ['sortOrder', 'limit', 'cursor', 'jar']
  6. // Docs
  7. /**
  8. * 🔐 Get the friend requests of the authenticated user.
  9. * @category User
  10. * @alias getFriendRequests
  11. * @param {SortOrder=} [sortOrder=Asc] - The order of the returned data (Asc or Desc)
  12. * @param {Limit=} [limit=10] - The number of users returned by each request.
  13. * @param {string=} cursor - The previous or next page's cursor.
  14. * @returns {Promise<FriendRequestsPage>}
  15. * @example const noblox = require("noblox.js")
  16. * // Login using your cookie
  17. * let friendRequests = await noblox.getFriendRequests({sortOrder: "Desc", limit: 100})
  18. **/
  19. // Define
  20. function getFriendsRequests (args) {
  21. return new Promise((resolve, reject) => {
  22. const jar = args.jar
  23. const httpOpt = {
  24. url: '//friends.roblox.com/v1/my/friends/requests',
  25. options: {
  26. method: 'GET',
  27. jar,
  28. resolveWithFullResponse: true
  29. }
  30. }
  31. return http(httpOpt)
  32. .then(function (res) {
  33. if (res.statusCode === 200) {
  34. const response = JSON.parse(res.body)
  35. response.data = response.data.map((entry) => {
  36. entry.created = new Date(entry.created)
  37. return entry
  38. })
  39. resolve(response)
  40. } else {
  41. const body = JSON.parse(res.body) || {}
  42. if (body.errors && body.errors.length > 0) {
  43. const errors = body.errors.map((e) => {
  44. return e.message
  45. })
  46. reject(new Error(`${res.statusCode} ${errors.join(', ')}`))
  47. }
  48. }
  49. })
  50. })
  51. }
  52. exports.func = getFriendsRequests