Source: managers/trash.ts

  1. /**
  2. * @fileoverview Manager for the Trash Resource
  3. */
  4. // -----------------------------------------------------------------------------
  5. // Requirements
  6. // -----------------------------------------------------------------------------
  7. import BoxClient from '../box-client';
  8. import urlPath from '../util/url-path';
  9. // -----------------------------------------------------------------------------
  10. // Private
  11. // -----------------------------------------------------------------------------
  12. // Trash is technically a folder, so it uses the folders endpoint
  13. const BASE_PATH = '/folders',
  14. TRASH_ID = 'trash',
  15. ITEMS_SUBRESOURCE = 'items';
  16. // -----------------------------------------------------------------------------
  17. // Public
  18. // -----------------------------------------------------------------------------
  19. /**
  20. * Simple manager for interacting with all Trash 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 Trash {
  27. client: BoxClient;
  28. constructor(client: BoxClient) {
  29. this.client = client;
  30. }
  31. /**
  32. * Get items in the user's trash
  33. *
  34. * API Endpoint: '/folders/trash/items'
  35. * Method: GET
  36. *
  37. * @param {Object} [options] - Optional parameters, can be left null in most cases
  38. * @param {string} [options.fields] - Comma-delimited list of item fields to return
  39. * @param {Function} [callback] - Passed the list of trashed items if successful, error otherwise
  40. * @returns {Promise<Object>} A promise resolving to the collection of trashed items
  41. */
  42. get(
  43. options?: {
  44. fields?: string;
  45. },
  46. callback?: Function
  47. ) {
  48. var apiPath = urlPath(BASE_PATH, TRASH_ID, ITEMS_SUBRESOURCE),
  49. params = {
  50. qs: options,
  51. };
  52. return this.client.wrapWithDefaultHandler(this.client.get)(
  53. apiPath,
  54. params,
  55. callback
  56. );
  57. }
  58. }
  59. export = Trash;