Source: managers/device-pins.ts

  1. /**
  2. * @fileoverview Manager for the Device Pins resource
  3. * @author mwiller
  4. */
  5. // ------------------------------------------------------------------------------
  6. // Requirements
  7. // ------------------------------------------------------------------------------
  8. import BoxClient from '../box-client';
  9. import urlPath from '../util/url-path';
  10. // -----------------------------------------------------------------------------
  11. // Typedefs
  12. // -----------------------------------------------------------------------------
  13. // ------------------------------------------------------------------------------
  14. // Private
  15. // ------------------------------------------------------------------------------
  16. const BASE_PATH = '/device_pinners',
  17. ENTERPRISES_PATH = '/enterprises',
  18. DEVICE_PINNERS_SUBRESOURCE = 'device_pinners';
  19. // ------------------------------------------------------------------------------
  20. // Public
  21. // ------------------------------------------------------------------------------
  22. /**
  23. * Simple manager for interacting with all Device Pin endpoints and actions.
  24. *
  25. * @constructor
  26. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  27. * @returns {void}
  28. */
  29. class DevicePins {
  30. client: BoxClient;
  31. constructor(client: BoxClient) {
  32. this.client = client;
  33. }
  34. /**
  35. * Get a specific device pinning record
  36. *
  37. * API Endpoint: '/device_pinners/:pinID'
  38. * Method: GET
  39. *
  40. * @param {string} pinID - The ID of the pin to retrieve
  41. * @param {Object} [options] - Optional paramters, can be left null in many cases
  42. * @param {Function} [callback] - Passed the device pin if successful, error otherwise
  43. * @returns {Promise<Object>} A promise resolving to the device pin object
  44. */
  45. get(pinID: string, options?: Record<string, any>, callback?: Function) {
  46. var apiPath = urlPath(BASE_PATH, pinID),
  47. params = {
  48. qs: options,
  49. };
  50. return this.client.wrapWithDefaultHandler(this.client.get)(
  51. apiPath,
  52. params,
  53. callback
  54. );
  55. }
  56. /**
  57. * Delete a specific device pinning record
  58. *
  59. * API Endpoint: '/device_pinners/:pinID'
  60. * Method: DELETE
  61. *
  62. * @param {string} pinID - The ID of the pin to delete
  63. * @param {Object} [options] - Optional paramters, can be left null in many cases
  64. * @param {Function} [callback] - Passed nothing if successful, error otherwise
  65. * @returns {Promise<void>} A promise resolving to nothing
  66. */
  67. delete(pinID: string, options?: Record<string, any>, callback?: Function) {
  68. var apiPath = urlPath(BASE_PATH, pinID),
  69. params = {
  70. qs: options,
  71. };
  72. return this.client.wrapWithDefaultHandler(this.client.del)(
  73. apiPath,
  74. params,
  75. callback
  76. );
  77. }
  78. /**
  79. * Get all device pin records for the current enterprise
  80. *
  81. * API Endpoint: '/enterprises/:enterpriseID/device_pinners'
  82. * Method: GET
  83. *
  84. * @param {Object} [options] - Optional paramters, can be left null in many cases
  85. * @param {Function} [callback] - Passed a list of device pins if successful, error otherwise
  86. * @returns {Promise<Object>} A promise resolving to the collection of device pins
  87. */
  88. getAll(options?: Record<string, any>, callback?: Function) {
  89. return this.client.users
  90. .get(this.client.CURRENT_USER_ID, { fields: 'enterprise' })
  91. .then((data: any /* FIXME */) => {
  92. if (!data.enterprise || !data.enterprise.id) {
  93. throw new Error('User must be in an enterprise to view device pins');
  94. }
  95. var apiPath = urlPath(
  96. ENTERPRISES_PATH,
  97. data.enterprise.id,
  98. DEVICE_PINNERS_SUBRESOURCE
  99. ),
  100. params = {
  101. qs: options,
  102. };
  103. return this.client.wrapWithDefaultHandler(this.client.get)(
  104. apiPath,
  105. params
  106. );
  107. })
  108. .asCallback(callback);
  109. }
  110. }
  111. export = DevicePins;