Source

lib/friends/unfollow.js

  1. // Includes
  2. const http = require('../util/http.js').func
  3. const getGeneralToken = require('../util/getGeneralToken.js').func
  4. // Args
  5. exports.required = ['userId']
  6. exports.optional = ['jar']
  7. // Docs
  8. /**
  9. * 🔐 Unfollow a user.
  10. * @category User
  11. * @alias unfollow
  12. * @param {number} userId - The id of the user.
  13. * @returns {Promise<void>}
  14. * @example const noblox = require("noblox.js")
  15. * // Login using your cookie
  16. * noblox.unfollow(123456)
  17. **/
  18. // Define
  19. function unfollow (jar, token, userId) {
  20. return new Promise((resolve, reject) => {
  21. const httpOpt = {
  22. url: `//friends.roblox.com/v1/users/${userId}/unfollow`,
  23. options: {
  24. method: 'POST',
  25. jar,
  26. headers: {
  27. 'X-CSRF-TOKEN': token
  28. },
  29. resolveWithFullResponse: true
  30. }
  31. }
  32. return http(httpOpt)
  33. .then(function (res) {
  34. if (res.statusCode === 200) {
  35. resolve()
  36. } else {
  37. const body = JSON.parse(res.body) || {}
  38. if (body.errors && body.errors.length > 0) {
  39. const errors = body.errors.map((e) => {
  40. return e.message
  41. })
  42. reject(new Error(`${res.statusCode} ${errors.join(', ')}`))
  43. }
  44. }
  45. })
  46. })
  47. }
  48. exports.func = function (args) {
  49. const jar = args.jar
  50. return getGeneralToken({ jar })
  51. .then(function (xcsrf) {
  52. return unfollow(jar, xcsrf, args.userId)
  53. })
  54. }