Source: managers/collections.ts

  1. /**
  2. * @fileoverview Manager for the Box Collection 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 = '/collections';
  16. // ------------------------------------------------------------------------------
  17. // Public
  18. // ------------------------------------------------------------------------------
  19. /**
  20. * Simple manager for interacting with all 'Collection' 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 Collections {
  27. client: BoxClient;
  28. constructor(client: BoxClient) {
  29. this.client = client;
  30. }
  31. /**
  32. * Requests all of a user's collection objects.
  33. *
  34. * API Endpoint: '/collections'
  35. * Method: GET
  36. *
  37. * @param {Function} [callback] - Called with a collection of collections if successful
  38. * @returns {Promise<Object>} A promise resolving to the collection of collections
  39. */
  40. getAll(callback?: Function) {
  41. return this.client.wrapWithDefaultHandler(this.client.get)(
  42. BASE_PATH,
  43. {},
  44. callback
  45. );
  46. }
  47. /**
  48. * Requests the items in the collection object with a given ID.
  49. *
  50. * API Endpoint: '/collections/:collectionID/items'
  51. * Method: GET
  52. *
  53. * @param {string} collectionID - Box ID of the collection with items being requested
  54. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  55. * @param {Function} [callback] - Passed the items information if they were acquired successfully
  56. * @returns {Promise<Object>} A promise resolving to the collection of items in the collection
  57. */
  58. getItems(
  59. collectionID: string,
  60. options?: Record<string, any>,
  61. callback?: Function
  62. ) {
  63. var params = {
  64. qs: options,
  65. };
  66. var apiPath = urlPath(BASE_PATH, collectionID, 'items');
  67. return this.client.wrapWithDefaultHandler(this.client.get)(
  68. apiPath,
  69. params,
  70. callback
  71. );
  72. }
  73. }
  74. /**
  75. * @module box-node-sdk/lib/managers/collections
  76. * @see {@Link Collections}
  77. */
  78. export = Collections;