Source

lib/chat/markChatAsRead.js

  1. const http = require('../util/http.js').func
  2. const getGeneralToken = require('../util/getGeneralToken.js').func
  3. exports.required = ['conversationId', 'endMessageId']
  4. exports.optional = ['jar']
  5. // Docs
  6. /**
  7. * 🔐 Mark a chat as read.
  8. * @category Chat
  9. * @alias markChatAsRead
  10. * @param {number} conversationId - The id of the conversation.
  11. * @param {string} endMessageId - The last message to read.
  12. * @returns {Promise<void>}
  13. * @example const noblox = require("noblox.js")
  14. * // Login using your cookie
  15. * noblox.markChatAsRead(8212952828, 'e775e103-876f-4332-84ab-1ea14f326d39')
  16. **/
  17. const nextFunction = (jar, token, conversationId, endMessageId) => {
  18. return http({
  19. url: '//chat.roblox.com/v2/mark-as-read',
  20. options: {
  21. method: 'POST',
  22. jar,
  23. headers: {
  24. 'X-CSRF-TOKEN': token
  25. },
  26. json: {
  27. conversationId,
  28. endMessageId
  29. },
  30. resolveWithFullResponse: true
  31. }
  32. }).then((res) => {
  33. if (res.statusCode === 200) {
  34. if (!res.body.resultType === 'Success') {
  35. throw new Error(res.body.statusMessage)
  36. }
  37. } else {
  38. throw new Error('Mark as read failed')
  39. }
  40. })
  41. }
  42. exports.func = (args) => {
  43. const jar = args.jar
  44. return getGeneralToken({ jar }).then((xcsrf) => {
  45. return nextFunction(jar, xcsrf, args.conversationId, args.endMessageId)
  46. })
  47. }