Source: managers/tasks.ts

  1. /**
  2. * @fileoverview Manager for the Tasks 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. * Enum of valid task resolution states
  14. * @readonly
  15. * @enum {TaskResolutionState}
  16. */
  17. enum TaskResolutionState {
  18. COMPLETE = 'completed',
  19. INCOMPLETE = 'incomplete',
  20. APPROVED = 'approved',
  21. REJECTED = 'rejected',
  22. }
  23. // -----------------------------------------------------------------------------
  24. // Private
  25. // -----------------------------------------------------------------------------
  26. const BASE_PATH = '/tasks',
  27. ASSIGNMENTS_SUBRESOURCE = 'assignments',
  28. ASSIGNMENTS_PATH = '/task_assignments',
  29. REVIEW_ACTION = 'review';
  30. // -----------------------------------------------------------------------------
  31. // Public
  32. // -----------------------------------------------------------------------------
  33. /**
  34. * Simple manager for interacting with all 'Tasks' endpoints and actions.
  35. *
  36. * @constructor
  37. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  38. * @returns {void}
  39. */
  40. class Tasks {
  41. client: BoxClient;
  42. resolutionStates!: typeof TaskResolutionState;
  43. constructor(client: BoxClient) {
  44. this.client = client;
  45. }
  46. /**
  47. * Used to create a single task for single user on a single file.
  48. *
  49. * API Endpoint: '/tasks'
  50. * Method: POST
  51. *
  52. * @param {string} fileID - The ID of the item this task is for
  53. * @param {Object} [options] - Additional parameters
  54. * @param {string} [options.message] - An optional message to include with the task
  55. * @param {string} [options.due_at] - The day at which this task is due
  56. * @param {Function} [callback] - Passed the new task information if it was acquired successfully, error otherwise
  57. * @returns {Promise<Object>} A promise resolving to the created task object
  58. */
  59. create(
  60. fileID: string,
  61. options?: {
  62. message?: string;
  63. due_at?: string;
  64. },
  65. callback?: Function
  66. ) {
  67. var apiPath = urlPath(BASE_PATH),
  68. params = {
  69. body: {
  70. item: {
  71. type: 'file',
  72. id: fileID,
  73. },
  74. action: REVIEW_ACTION,
  75. },
  76. };
  77. Object.assign(params.body, options);
  78. return this.client.wrapWithDefaultHandler(this.client.post)(
  79. apiPath,
  80. params,
  81. callback
  82. );
  83. }
  84. /**
  85. * Fetches a specific task.
  86. *
  87. * API Endpoint: '/tasks/:taskID'
  88. * Method: GET
  89. *
  90. * @param {string} taskID - The Box ID of the task being requested
  91. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  92. * @param {Function} [callback] - Passed the task information if it was acquired successfully, error otherwise
  93. * @returns {Promise<Object>} A promise resolving to the task object
  94. */
  95. get(taskID: string, options?: Record<string, any>, callback?: Function) {
  96. var apiPath = urlPath(BASE_PATH, taskID),
  97. params = {
  98. qs: options,
  99. };
  100. return this.client.wrapWithDefaultHandler(this.client.get)(
  101. apiPath,
  102. params,
  103. callback
  104. );
  105. }
  106. /**
  107. * Updates a specific task.
  108. *
  109. * API Endpoint: '/tasks/:taskID'
  110. * Method: PUT
  111. *
  112. * @param {string} taskID - The Box ID of the task being updated
  113. * @param {Object} updates - Fields of the task object to update
  114. * @param {string} [updates.message] - An optional message to include with the task
  115. * @param {string} [updates.due_at] - The day at which this task is due
  116. * @param {Function} [callback] - Passed the updated task information if it was acquired successfully, error otherwise
  117. * @returns {Promise<Object>} A promise resolving to the updated task object
  118. */
  119. update(
  120. taskID: string,
  121. updates?: {
  122. message?: string;
  123. due_at?: string;
  124. },
  125. callback?: Function
  126. ) {
  127. var apiPath = urlPath(BASE_PATH, taskID),
  128. params = {
  129. body: updates,
  130. };
  131. return this.client.wrapWithDefaultHandler(this.client.put)(
  132. apiPath,
  133. params,
  134. callback
  135. );
  136. }
  137. /**
  138. * Permanently deletes a specific task.
  139. *
  140. * API Endpoint: '/tasks/:taskID'
  141. * Method: DELETE
  142. *
  143. * @param {string} taskID - The Box ID of the task being deleted
  144. * @param {Function} [callback] - Empty body passed if successful, error otherwise
  145. * @returns {Promise<void>} A promise resolving to nothing
  146. */
  147. delete(taskID: string, callback?: Function) {
  148. var apiPath = urlPath(BASE_PATH, taskID);
  149. return this.client.wrapWithDefaultHandler(this.client.del)(
  150. apiPath,
  151. null,
  152. callback
  153. );
  154. }
  155. /**
  156. * Get a list of assignments for a given task
  157. *
  158. * API Endpoint: '/tasks/:taskID/assignments'
  159. * Method: GET
  160. *
  161. * @param {string} taskID - The Box ID of the task to get assignments for
  162. * @param {Object} [options] - Additional parameters, can be left null in most cases
  163. * @param {Function} [callback] - Passed the list of assignments if successful, error otherwise
  164. * @returns {Promise<Object>} A promise resolving to the collection of assignment objects
  165. */
  166. getAssignments(
  167. taskID: string,
  168. options?: Record<string, any>,
  169. callback?: Function
  170. ) {
  171. var apiPath = urlPath(BASE_PATH, taskID, ASSIGNMENTS_SUBRESOURCE),
  172. params = {
  173. qs: options,
  174. };
  175. return this.client.wrapWithDefaultHandler(this.client.get)(
  176. apiPath,
  177. params,
  178. callback
  179. );
  180. }
  181. /**
  182. * Get a specific task assignment
  183. *
  184. * API Endpoint: '/task_assignments/:assignmentID'
  185. * Method: GET
  186. *
  187. * @param {string} assignmentID - The Box ID of the task assignment to retrieve
  188. * @param {Object} [options] - Additional parameters, can be left null in most cases
  189. * @param {Function} [callback] - Passed the task assignment if successful, error otherwise
  190. * @returns {Promise<Object>} A promise resolving to the assignment object
  191. */
  192. getAssignment(
  193. assignmentID: string,
  194. options?: Record<string, any>,
  195. callback?: Function
  196. ) {
  197. var apiPath = urlPath(ASSIGNMENTS_PATH, assignmentID),
  198. params = {
  199. qs: options,
  200. };
  201. return this.client.wrapWithDefaultHandler(this.client.get)(
  202. apiPath,
  203. params,
  204. callback
  205. );
  206. }
  207. /**
  208. * Assign a task to a specific user by ID
  209. *
  210. * API Endpoint: '/task_assignments'
  211. * Method: POST
  212. *
  213. * @param {string} taskID - The Box ID of the task to assign
  214. * @param {string} userID - The ID of the user to assign the task to
  215. * @param {Function} [callback] - Passed the task assignment if successful, error otherwise
  216. * @returns {Promise<Object>} A promise resolving to the new assignment object
  217. */
  218. assignByUserID(taskID: string, userID: string, callback?: Function) {
  219. var apiPath = urlPath(ASSIGNMENTS_PATH),
  220. params = {
  221. body: {
  222. task: {
  223. type: 'task',
  224. id: taskID,
  225. },
  226. assign_to: {
  227. id: userID,
  228. },
  229. },
  230. };
  231. return this.client.wrapWithDefaultHandler(this.client.post)(
  232. apiPath,
  233. params,
  234. callback
  235. );
  236. }
  237. /**
  238. * Assign a task to a specific user by email address
  239. *
  240. * API Endpoint: '/task_assignments'
  241. * Method: POST
  242. *
  243. * @param {string} taskID - The Box ID of the task to assign
  244. * @param {string} email - The email address of the user to assign the task to
  245. * @param {Function} [callback] - Passed the task assignment if successful, error otherwise
  246. * @returns {Promise<Object>} A promise resolving to the new assignment object
  247. */
  248. assignByEmail(taskID: string, email: string, callback?: Function) {
  249. var apiPath = urlPath(ASSIGNMENTS_PATH),
  250. params = {
  251. body: {
  252. task: {
  253. type: 'task',
  254. id: taskID,
  255. },
  256. assign_to: {
  257. login: email,
  258. },
  259. },
  260. };
  261. return this.client.wrapWithDefaultHandler(this.client.post)(
  262. apiPath,
  263. params,
  264. callback
  265. );
  266. }
  267. /**
  268. * Update a task assignment. This is used to resolve or complete a task.
  269. *
  270. * API Endpoint: '/task_assignments/:assignmentID'
  271. * Method: PUT
  272. *
  273. * @param {string} assignmentID - The Box ID of the task assignment to update
  274. * @param {Object} options - The fields of the assignment to update
  275. * @param {string} [options.message] - A message from the assignee about this task
  276. * @param {TaskResolutionState} [options.resolution_state] - Resolution of the task
  277. * @param {Function} [callback] - Passed the updated task assignment if successful, error otherwise
  278. * @returns {Promise<Object>} A promise resolving to the updated assignment object
  279. */
  280. updateAssignment(
  281. assignmentID: string,
  282. options?: {
  283. message?: string;
  284. resolution_state?: TaskResolutionState;
  285. },
  286. callback?: Function
  287. ) {
  288. var apiPath = urlPath(ASSIGNMENTS_PATH, assignmentID),
  289. params = {
  290. body: options,
  291. };
  292. return this.client.wrapWithDefaultHandler(this.client.put)(
  293. apiPath,
  294. params,
  295. callback
  296. );
  297. }
  298. /**
  299. * Delete a task assignment. This unassigns a user from the related task.
  300. *
  301. * API Endpoint: '/task_assignments/:assignmentID'
  302. * Method: DELETE
  303. *
  304. * @param {string} assignmentID - The Box ID of the task assignment to delete
  305. * @param {Function} [callback] - Passed nothing if successful, error otherwise
  306. * @returns {Promise<void>} A promise resolving to nothing
  307. */
  308. deleteAssignment(assignmentID: string, callback?: Function) {
  309. var apiPath = urlPath(ASSIGNMENTS_PATH, assignmentID);
  310. return this.client.wrapWithDefaultHandler(this.client.del)(
  311. apiPath,
  312. null,
  313. callback
  314. );
  315. }
  316. }
  317. /**
  318. * Enum of valid task resolution states
  319. * @readonly
  320. * @enum {TaskResolutionState}
  321. */
  322. Tasks.prototype.resolutionStates = TaskResolutionState;
  323. export = Tasks;