activity.js

  1. const { TextActivityQuery, MessageActivityQuery, ListActivityQuery } = require("./consts");
  2. /**
  3. * Access activities on AniList
  4. * @since 1.7.0
  5. * @memberof AniList
  6. */
  7. class Activity {
  8. /**
  9. * @description This constructor is meant for internal use and is apart of initializing. You cannot access this
  10. * through the AniList class and are not expect to.
  11. * @param { Utilities } utilities - The AniList Utilities class.
  12. * @hideconstructor
  13. */
  14. constructor(utilities) {
  15. this.util = utilities;
  16. }
  17. /**
  18. * Get a specific AniList activity by its ID.
  19. * @param {Number} activityID The AniList activity ID
  20. * @returns { ListActivity | TextActivity | MessageActivity } Returns the activity information. Activity will either appear as:
  21. * {@link ListActivity}, {@link TextActivity}, {@link MessageActivity}. All of which are identifiable by the type key.
  22. * @since 1.7.0
  23. */
  24. get(activityID) {
  25. const queryVars = this.util.generateQueryHeaders("Activity", activityID);
  26. return this.util
  27. .send(
  28. queryVars[1] +
  29. `... on ListActivity {
  30. ${ListActivityQuery}
  31. }
  32. ... on TextActivity {
  33. ${TextActivityQuery}
  34. }
  35. ... on MessageActivity {
  36. ${MessageActivityQuery}
  37. }}}`,
  38. queryVars[0]
  39. )
  40. .then((data) => {
  41. return data.Activity;
  42. });
  43. }
  44. /**
  45. * Fetch activities from a user.
  46. * @param {Number} user - Required. Needs to be the user's AniList ID.
  47. * @param {Number} page - The page number to display
  48. * @param {Number} perPage - How many entries to display on one page. (Max is 25 per AniList limit)
  49. * @returns { Object[] } Returns a list of user activities based on the page & perPage values Contains any number of
  50. * {@link ListActivity}, {@link TextActivity}, {@link MessageActivity}. All of which are identifiable by the type key.
  51. *
  52. * @since 1.7.0
  53. */
  54. getUserActivity(user, page = 1, perPage = 25) {
  55. if (typeof user !== "number" || typeof page !== "number" || typeof perPage !== "number") {
  56. throw new Error("Term does not match the required type!");
  57. }
  58. return this.util
  59. .send(
  60. `query ($page: Int, $perPage: Int, $user: Int) {
  61. Page (page: $page, perPage: $perPage) { pageInfo { total currentPage lastPage hasNextPage perPage }
  62. activities(userId: $user, sort:ID_DESC) {
  63. ... on ListActivity { ${ListActivityQuery} }
  64. ... on TextActivity { ${TextActivityQuery} }
  65. ... on MessageActivity { ${MessageActivityQuery} }
  66. } } }`,
  67. { user: user, page: page, perPage: perPage }
  68. )
  69. .then((data) => {
  70. return data;
  71. });
  72. }
  73. /**
  74. * [Require Login] Post a new text activity or update the activity with its ID
  75. * @param {String} text - The content of the activity.
  76. * @param {Number?} id - The AniList activity ID. Null to create, number for update
  77. *
  78. * @returns {TextActivity}
  79. * @since 1.11.0
  80. */
  81. async postText(text, id) {
  82. if (typeof text !== "string") {
  83. throw new Error("Text is not a string type.");
  84. }
  85. if (id && typeof id !== "number") {
  86. throw new Error("Provided ID is not a number type.");
  87. }
  88. const data = await this.util.send(
  89. `mutation ($id: Int, $text: String) {
  90. SaveTextActivity(id: $id, text: $text) {
  91. ${TextActivityQuery}
  92. } }`,
  93. { id: id, text: text }
  94. );
  95. return data.SaveTextActivity;
  96. }
  97. /**
  98. * [Require Login] Post a new message activity or update the activity with its ID
  99. * @param {String} text - The activity message text
  100. * @param {Number} recipientId - The target user to send the message to
  101. * @param {Boolean} isPrivate - Set to true if it is a private message
  102. * @param {Number?} id - AniList Activity ID. Null to create, number to update.
  103. *
  104. * @returns {MessageActivity}
  105. * @since 1.11.0
  106. */
  107. async postMessage(text, recipientId, isPrivate = false, id) {
  108. if (typeof text !== "string") {
  109. throw new Error("Text is not a string type.");
  110. }
  111. if (typeof recipientId !== "number") {
  112. throw new Error("Recipient ID is not a number type.");
  113. }
  114. if (id && typeof id !== "number") {
  115. throw new Error("Provided ID is not a number type.");
  116. }
  117. const data = await this.util.send(
  118. `mutation ($id: Int, $text: String, $recipientId: Int, $private: Boolean) {
  119. SaveMessageActivity(message: $text, id: $id, recipientId: $recipientId, private: $private) {
  120. ${MessageActivityQuery}
  121. } }`,
  122. { id: id, text: text, recipientId: recipientId, private: isPrivate }
  123. );
  124. return data.SaveMessageActivity;
  125. }
  126. /**
  127. * [Require Login] Delete the current authorized user's activity post
  128. * @param {Number} id - The AniList activity ID to delete
  129. *
  130. * @returns {Boolean} Returns true if successful
  131. * @since 1.11.0
  132. */
  133. async delete(id) {
  134. if (typeof id !== "number") {
  135. throw new Error("ID is not a number type.");
  136. }
  137. const data = await this.util.send(`mutation ($id: Int) { DeleteActivity(id: $id) { deleted } }`, { id: id });
  138. return data.DeleteActivity.deleted;
  139. }
  140. }
  141. module.exports = Activity;