Source: managers/web-links.ts

  1. /**
  2. * @fileoverview Manager for the Web Links Resource
  3. */
  4. // ------------------------------------------------------------------------------
  5. // Requirements
  6. // ------------------------------------------------------------------------------
  7. import BoxClient from '../box-client';
  8. import urlPath from '../util/url-path';
  9. // ------------------------------------------------------------------------------
  10. // Private
  11. // ------------------------------------------------------------------------------
  12. const BASE_PATH = '/web_links';
  13. // ------------------------------------------------------------------------------
  14. // Public
  15. // ------------------------------------------------------------------------------
  16. /**
  17. * Simple manager for interacting with all 'Weblinks' endpoints and actions.
  18. *
  19. * @constructor
  20. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  21. * @returns {void}
  22. */
  23. class WebLinks {
  24. client: BoxClient;
  25. constructor(client: BoxClient) {
  26. this.client = client;
  27. }
  28. /**
  29. * Creates a web link object within a given folder.
  30. *
  31. * API Endpoint: '/web_links'
  32. * Method: POST
  33. *
  34. * @param {string} url - URL you want the web link to point to. Must include http:// or https://
  35. * @param {string} parentID - The ID of the parent folder where you're creating the web link
  36. * @param {Object} [options] - Additional parameters
  37. * @param {string} [options.name] - Name for the web link. Will default to the URL if empty.
  38. * @param {string} [options.description] - Description of the web link. Will provide more context to users about the web link.
  39. * @param {Function} [callback] - Passed the new web link information if it was acquired successfully, error otherwise
  40. * @returns {Promise<Object>} A promise resolving to the created weblink object
  41. */
  42. create(
  43. url: string,
  44. parentID: string,
  45. options?: {
  46. name?: string;
  47. description?: string;
  48. },
  49. callback?: Function
  50. ) {
  51. var apiPath = urlPath(BASE_PATH),
  52. params = {
  53. body: {
  54. url,
  55. parent: {
  56. id: parentID,
  57. },
  58. },
  59. };
  60. Object.assign(params.body, options);
  61. return this.client.wrapWithDefaultHandler(this.client.post)(
  62. apiPath,
  63. params,
  64. callback
  65. );
  66. }
  67. /**
  68. * Use to get information about the web link.
  69. *
  70. * API Endpoint: '/web_links/:weblinkID'
  71. * Method: GET
  72. *
  73. * @param {string} weblinkID - The Box ID of web link being requested
  74. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  75. * @param {Function} [callback] - Passed the web-link information if it was acquired successfully, error otherwise
  76. * @returns {Promise<Object>} A promise resolving to the weblink object
  77. */
  78. get(weblinkID: string, options?: Record<string, any>, callback?: Function) {
  79. var apiPath = urlPath(BASE_PATH, weblinkID),
  80. params = {
  81. qs: options,
  82. };
  83. return this.client.wrapWithDefaultHandler(this.client.get)(
  84. apiPath,
  85. params,
  86. callback
  87. );
  88. }
  89. /**
  90. * Updates information for a web link.
  91. *
  92. * API Endpoint: '/web_links/:weblinkID'
  93. * Method: PUT
  94. *
  95. * @param {string} weblinkID - The Box ID of the web link being updated
  96. * @param {Object} updates - Fields of the weblink to update
  97. * @param {string} [updates.name] - Name for the web link. Will default to the URL if empty.
  98. * @param {string} [updates.description] - Description of the web link. Will provide more context to users about the web link.
  99. * @param {Function} [callback] - Passed the updated web link information if it was acquired successfully, error otherwise
  100. * @returns {Promise<Object>} A promise resolving to the updated web link object
  101. */
  102. update(
  103. weblinkID: string,
  104. updates?: {
  105. name?: string;
  106. description?: string;
  107. collections?: string[];
  108. },
  109. callback?: Function
  110. ) {
  111. var apiPath = urlPath(BASE_PATH, weblinkID),
  112. params = {
  113. body: updates,
  114. };
  115. return this.client.wrapWithDefaultHandler(this.client.put)(
  116. apiPath,
  117. params,
  118. callback
  119. );
  120. }
  121. /**
  122. * Deletes a web link and moves it to the trash
  123. *
  124. * API Endpoint: '/web_links/:weblinkID'
  125. * Method: DELETE
  126. *
  127. * @param {string} weblinkID - The Box ID of the web link being moved to the trash
  128. * @param {Function} [callback] - Empty body passed if successful, error otherwise
  129. * @returns {Promise<Object>} A promise resolving to nothing
  130. */
  131. delete(weblinkID: string, callback?: Function) {
  132. var apiPath = urlPath(BASE_PATH, weblinkID);
  133. return this.client.wrapWithDefaultHandler(this.client.del)(
  134. apiPath,
  135. null,
  136. callback
  137. );
  138. }
  139. /**
  140. * Move a web link into a new parent folder.
  141. *
  142. * API Endpoint: '/web_links/:webLinkID'
  143. * Method: PUT
  144. *
  145. * @param {string} webLinkID - The Box ID of the web link being requested
  146. * @param {string} newParentID - The Box ID for the new parent folder. '0' to move to All Files.
  147. * @param {Function} [callback] - Passed the updated web link information if it was acquired successfully
  148. * @returns {Promise<Object>} A promise resolving to the updated web link object
  149. */
  150. move(webLinkID: string, newParentID: string, callback?: Function) {
  151. var params = {
  152. body: {
  153. parent: {
  154. id: newParentID,
  155. },
  156. },
  157. };
  158. var apiPath = urlPath(BASE_PATH, webLinkID);
  159. return this.client.wrapWithDefaultHandler(this.client.put)(
  160. apiPath,
  161. params,
  162. callback
  163. );
  164. }
  165. /**
  166. * Copy a web link into a new, different folder
  167. *
  168. * API Endpoint: '/web_links/:webLinkID/copy
  169. * Method: POST
  170. *
  171. * @param {string} webLinkID - The Box ID of the web link being requested
  172. * @param {string} newParentID - The Box ID for the new parent folder. '0' to copy to All Files.
  173. * @param {Object} [options] - Optional parameters for the copy operation, can be left null in most cases
  174. * @param {string} [options.name] - A new name to use if there is an identically-named item in the new parent folder
  175. * @param {Function} [callback] - passed the new web link info if call was successful
  176. * @returns {Promise<Object>} A promise resolving to the new web link object
  177. */
  178. copy(
  179. webLinkID: string,
  180. newParentID: string,
  181. options?: {
  182. name?: string;
  183. },
  184. callback?: Function
  185. ) {
  186. options = options || {};
  187. (options as Record<string, any>).parent = {
  188. id: newParentID,
  189. };
  190. var params = {
  191. body: options,
  192. };
  193. var apiPath = urlPath(BASE_PATH, webLinkID, '/copy');
  194. return this.client.wrapWithDefaultHandler(this.client.post)(
  195. apiPath,
  196. params,
  197. callback
  198. );
  199. }
  200. /**
  201. * Add a web link to a given collection
  202. *
  203. * API Endpoint: '/web_links/:webLinkID'
  204. * Method: PUT
  205. *
  206. * @param {string} webLinkID - The web link to add to the collection
  207. * @param {string} collectionID - The collection to add the web link to
  208. * @param {Function} [callback] - Passed the updated web link if successful, error otherwise
  209. * @returns {Promise<Object>} A promise resolving to the updated web link object
  210. */
  211. addToCollection(
  212. webLinkID: string,
  213. collectionID: string,
  214. callback?: Function
  215. ) {
  216. return this.get(webLinkID, { fields: 'collections' })
  217. .then((data: any /* FIXME */) => {
  218. var collections = data.collections || [];
  219. // Convert to correct format
  220. collections = collections.map((c: any /* FIXME */) => ({ id: c.id }));
  221. if (!collections.find((c: any /* FIXME */) => c.id === collectionID)) {
  222. collections.push({ id: collectionID });
  223. }
  224. return this.update(webLinkID, { collections });
  225. })
  226. .asCallback(callback);
  227. }
  228. /**
  229. * Remove a web link from a given collection
  230. *
  231. * API Endpoint: '/web_links/:webLinkID'
  232. * Method: PUT
  233. *
  234. * @param {string} webLinkID - The web link to remove from the collection
  235. * @param {string} collectionID - The collection to remove the web link from
  236. * @param {Function} [callback] - Passed the updated web link if successful, error otherwise
  237. * @returns {Promise<Object>} A promise resolving to the updated web link object
  238. */
  239. removeFromCollection(
  240. webLinkID: string,
  241. collectionID: string,
  242. callback?: Function
  243. ) {
  244. return this.get(webLinkID, { fields: 'collections' })
  245. .then((data: any /* FIXME */) => {
  246. var collections = data.collections || [];
  247. // Convert to correct object format and remove the specified collection
  248. collections = collections
  249. .map((c: any /* FIXME */) => ({ id: c.id }))
  250. .filter((c: any /* FIXME */) => c.id !== collectionID);
  251. return this.update(webLinkID, { collections });
  252. })
  253. .asCallback(callback);
  254. }
  255. }
  256. export = WebLinks;