Source: managers/comments.ts

  1. /**
  2. * @fileoverview Manager for the Box Comments Resource
  3. */
  4. // ------------------------------------------------------------------------------
  5. // Requirements
  6. // ------------------------------------------------------------------------------
  7. import BoxClient from '../box-client';
  8. import urlPath from '../util/url-path';
  9. // -----------------------------------------------------------------------------
  10. // Typedefs
  11. // -----------------------------------------------------------------------------
  12. // ------------------------------------------------------------------------------
  13. // Private
  14. // ------------------------------------------------------------------------------
  15. const BASE_PATH = '/comments';
  16. // ------------------------------------------------------------------------------
  17. // Public
  18. // ------------------------------------------------------------------------------
  19. /**
  20. * Simple manager for interacting with all 'Comment' endpoints and actions.
  21. *
  22. * @constructor
  23. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  24. * @returns {void}
  25. */
  26. class Comments {
  27. client: BoxClient;
  28. constructor(client: BoxClient) {
  29. this.client = client;
  30. }
  31. /**
  32. * Requests a comment object with the given ID.
  33. *
  34. * API Endpoint: '/comments/:commentID'
  35. * Method: GET
  36. *
  37. * @param {string} commentID - Box ID of the comment being requested
  38. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  39. * @param {Function} [callback] - Passed the comment information if it was acquired successfully
  40. * @returns {Promise<Object>} A promise resolving to the comment object
  41. */
  42. get(commentID: string, options?: Record<string, any>, callback?: Function) {
  43. var params = {
  44. qs: options,
  45. };
  46. var apiPath = urlPath(BASE_PATH, commentID);
  47. return this.client.wrapWithDefaultHandler(this.client.get)(
  48. apiPath,
  49. params,
  50. callback
  51. );
  52. }
  53. /**
  54. * Posts a new comment on a file.
  55. *
  56. * API Endpoint: '/comments
  57. * Method: POST
  58. *
  59. * @param {string} fileID - Box file id of the file to comment on
  60. * @param {string} commentBody - text of the comment
  61. * @param {Function} [callback] - passed the new comment data if it was posted successfully
  62. * @returns {Promise<Object>} A promise resolving to the new comment object
  63. */
  64. create(fileID: string, commentBody: string, callback?: Function) {
  65. // @TODO(bemerick) 2013-10-29: Don't hardcode this 'item'. Abstract to all commentable types...
  66. var params = {
  67. body: {
  68. item: {
  69. type: 'file',
  70. id: fileID,
  71. },
  72. message: commentBody,
  73. },
  74. };
  75. return this.client.wrapWithDefaultHandler(this.client.post)(
  76. BASE_PATH,
  77. params,
  78. callback
  79. );
  80. }
  81. /**
  82. * Posts a new tagged comment on a file.
  83. *
  84. * API Endpoint: '/comments
  85. * Method: POST
  86. *
  87. * @param {string} fileID - Box file id of the file to comment on
  88. * @param {string} commentBody - text of the tagged comment
  89. * @param {Function} [callback] - passed the new tagged comment data if it was posted successfully
  90. * @returns {Promise<Object>} A promise resolving to the new comment object
  91. */
  92. createTaggedComment(
  93. fileID: string,
  94. commentBody: string,
  95. callback?: Function
  96. ) {
  97. var params = {
  98. body: {
  99. item: {
  100. type: 'file',
  101. id: fileID,
  102. },
  103. tagged_message: commentBody,
  104. },
  105. };
  106. return this.client.wrapWithDefaultHandler(this.client.post)(
  107. BASE_PATH,
  108. params,
  109. callback
  110. );
  111. }
  112. /**
  113. * Posts a new comment as a reply to another comment.
  114. *
  115. * API Endpoint: '/comments
  116. * Method: POST
  117. *
  118. * @param {string} commentID - Comment ID of the comment to reply to
  119. * @param {string} commentBody - text of the comment
  120. * @param {Function} [callback] - passed the new comment data if it was posted successfully
  121. * @returns {Promise<Object>} A promise resolving to the new comment object
  122. */
  123. reply(commentID: string, commentBody: string, callback?: Function) {
  124. var params = {
  125. body: {
  126. item: {
  127. type: 'comment',
  128. id: commentID,
  129. },
  130. message: commentBody,
  131. },
  132. };
  133. return this.client.wrapWithDefaultHandler(this.client.post)(
  134. BASE_PATH,
  135. params,
  136. callback
  137. );
  138. }
  139. /**
  140. * Posts a new tagged comment as a reply to another comment.
  141. *
  142. * API Endpoint: '/comments
  143. * Method: POST
  144. *
  145. * @param {string} commentID - Comment ID of the comment to reply to
  146. * @param {string} commentBody - text of the tagged comment
  147. * @param {Function} [callback] - passed the new tagged comment data if it was posted successfully
  148. * @returns {Promise<Object>} A promise resolving to the new comment object
  149. */
  150. createTaggedReply(
  151. commentID: string,
  152. commentBody: string,
  153. callback?: Function
  154. ) {
  155. var params = {
  156. body: {
  157. item: {
  158. type: 'comment',
  159. id: commentID,
  160. },
  161. tagged_message: commentBody,
  162. },
  163. };
  164. return this.client.wrapWithDefaultHandler(this.client.post)(
  165. BASE_PATH,
  166. params,
  167. callback
  168. );
  169. }
  170. /**
  171. * Update some information about a given comment.
  172. *
  173. * API Endpoint: '/comments/:commentID'
  174. * Method: PUT
  175. *
  176. * @param {string} commentID - Box ID of the comment being requested
  177. * @param {Object} updates - Fields to update on the comment
  178. * @param {Function} [callback] - Passed the updated comment information if it was acquired successfully
  179. * @returns {Promise<Object>} A promise resolving to the updated comment object
  180. */
  181. update(commentID: string, updates: Record<string, any>, callback?: Function) {
  182. var params = {
  183. body: updates,
  184. };
  185. var apiPath = urlPath(BASE_PATH, commentID);
  186. return this.client.wrapWithDefaultHandler(this.client.put)(
  187. apiPath,
  188. params,
  189. callback
  190. );
  191. }
  192. /**
  193. * Delete a given comment.
  194. *
  195. * API Endpoint: '/comments/:commentID'
  196. * Method: DELETE
  197. *
  198. * @param {string} commentID - Box ID of the comment being requested
  199. * @param {Function} [callback] - Empty response body passed if successful.
  200. * @returns {Promise<void>} A promise resolving to nothing
  201. */
  202. delete(commentID: string, callback?: Function) {
  203. var apiPath = urlPath(BASE_PATH, commentID);
  204. return this.client.wrapWithDefaultHandler(this.client.del)(
  205. apiPath,
  206. null,
  207. callback
  208. );
  209. }
  210. }
  211. /**
  212. * @module box-node-sdk/lib/managers/comments
  213. * @see {@Link Comments}
  214. */
  215. export = Comments;