Source: managers/collaboration-allowlist.ts

  1. /**
  2. * @fileoverview Manager for the Box Collaboration Allowlist 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. * Collaboration Allowlist parameter constant
  14. * @typedef {string} CollaborationAllowlistDirection Determines the type of restriction for allowlisting for a domain
  15. */
  16. enum CollaborationAllowlistDirection {
  17. INBOUND = 'inbound',
  18. OUTBOUND = 'outbound',
  19. BOTH = 'both',
  20. }
  21. // ------------------------------------------------------------------------------
  22. // Private
  23. // ------------------------------------------------------------------------------
  24. const BASE_PATH = '/collaboration_whitelist_entries',
  25. TARGET_ENTRY_PATH = '/collaboration_whitelist_exempt_targets';
  26. // ------------------------------------------------------------------------------
  27. // Public
  28. // ------------------------------------------------------------------------------
  29. /**
  30. * Simple manager for interacting with all 'Collaboration Allowlist' endpoints and actions.
  31. *
  32. * @constructor
  33. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  34. * @returns {void}
  35. */
  36. class CollaborationAllowlist {
  37. client: BoxClient;
  38. directions!: Record<string, string>;
  39. constructor(client: BoxClient) {
  40. this.client = client;
  41. }
  42. /**
  43. * Add a domain to the enterprise's allowlist.
  44. *
  45. * API Endpoint: '/collaboration_whitelist_entries'
  46. * Method: POST
  47. *
  48. * @param {string} domain - The domain to be added to the allowlist
  49. * @param {CollaborationAllowlistDirection} direction - Inbound refers to collaboration actions within an enterprise. Outbound
  50. * refers to collaboration actions external to an enterprise. Both refers to
  51. * collaboration actions taken within and external to an enterprise
  52. * @param {Function} [callback] - Passed the collaboration allowlist information if it was created successfully
  53. * @returns {Promise<Object>} A promise resolve to the collaboration allowlist object
  54. */
  55. addDomain(
  56. domain: string,
  57. direction: CollaborationAllowlistDirection,
  58. callback?: Function
  59. ) {
  60. var params = {
  61. body: {
  62. domain,
  63. direction,
  64. },
  65. };
  66. var apiPath = urlPath(BASE_PATH);
  67. return this.client.wrapWithDefaultHandler(this.client.post)(
  68. apiPath,
  69. params,
  70. callback
  71. );
  72. }
  73. /**
  74. * Requests a collaboration allowlist entry with a given ID.
  75. *
  76. * API Endpoint: '/collaboration_whitelist_entries/:domainID'
  77. * Method: GET
  78. *
  79. * @param {string} domainID - Box ID of the collaboration allowlist being requested
  80. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  81. * @param {Function} [callback] - Passed the collaboration allowlist information if it was acquired successfully
  82. * @returns {Promise<Object>} A promise resolving to the collaboration allowlist object
  83. */
  84. getAllowlistedDomain(
  85. domainID: string,
  86. options?: Record<string, any>,
  87. callback?: Function
  88. ) {
  89. var params = { qs: options };
  90. var apiPath = urlPath(BASE_PATH, domainID);
  91. return this.client.wrapWithDefaultHandler(this.client.get)(
  92. apiPath,
  93. params,
  94. callback
  95. );
  96. }
  97. /**
  98. * Requests all collaboration allowlist entries within an enterprise.
  99. *
  100. * API Endpoint: '/collaboration_whitelist_entries'
  101. * Method: GET
  102. *
  103. * @param {Object} [options] - Additional options. Can be left null in most cases.
  104. * @param {int} [options.limit] - The number of collaboration allowlists to retrieve
  105. * @param {string} [options.marker] - Paging marker, retrieve records starting at this position in the list. Left blank to start at the beginning.
  106. * @param {Function} [callback] - Passed a list of collaboration allowlists if successful, error otherwise
  107. * @returns {Promise<Object>} A promise resolving to the collection of collaboration allowlists
  108. */
  109. getAllAllowlistedDomains(
  110. options?: {
  111. limit?: number;
  112. marker?: string;
  113. },
  114. callback?: Function
  115. ) {
  116. var params = {
  117. qs: options,
  118. };
  119. var apiPath = urlPath(BASE_PATH);
  120. return this.client.wrapWithDefaultHandler(this.client.get)(
  121. apiPath,
  122. params,
  123. callback
  124. );
  125. }
  126. /**
  127. * Delete a given collaboration allowlist entry.
  128. *
  129. * API Endpoint: '/collaboration_whitelist_entries/:domainID'
  130. * Method: DELETE
  131. *
  132. * @param {string} domainID - Box ID of the collaboration allowlist being requested
  133. * @param {Function} [callback] - Empty response body passed if successful.
  134. * @returns {Promise<void>} A promise resolving to nothing
  135. */
  136. removeDomain(domainID: string, callback?: Function) {
  137. var apiPath = urlPath(BASE_PATH, domainID);
  138. return this.client.wrapWithDefaultHandler(this.client.del)(
  139. apiPath,
  140. null,
  141. callback
  142. );
  143. }
  144. /**
  145. * Adds a Box User to the exempt target list.
  146. *
  147. * API Endpoint: '/collaboration_whitelist_exempt_targets'
  148. * Method: GET
  149. *
  150. * @param {string} userID - The ID of the Box User to be added to the allowlist
  151. * @param {Function} [callback] - Passed a collaboration allowlist for user if successful, error otherwise
  152. * @returns {Promise<Object>} A promise resolving to a user collaboration allowlist
  153. */
  154. addExemption(userID: string, callback?: Function) {
  155. var params = {
  156. body: {
  157. user: {
  158. id: userID,
  159. type: 'user',
  160. },
  161. },
  162. };
  163. var apiPath = urlPath(TARGET_ENTRY_PATH);
  164. return this.client.wrapWithDefaultHandler(this.client.post)(
  165. apiPath,
  166. params,
  167. callback
  168. );
  169. }
  170. /**
  171. * Retrieves information about a collaboration allowlist for user by allowlist ID.
  172. *
  173. * API Endpoint: '/collaboration_whitelist_exempt_targets/:exemptionID'
  174. * Method: GET
  175. *
  176. * @param {string} exemptionID - The ID of the collaboration allowlist
  177. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  178. * @param {Function} [callback] - Passed the collaboration allowlist information for a user if it was acquired successfully
  179. * @returns {Promise<Object>} A promise resolving to the collaboration allowlist object
  180. */
  181. getExemption(
  182. exemptionID: string,
  183. options?: Record<string, any>,
  184. callback?: Function
  185. ) {
  186. var params = {
  187. qs: options,
  188. };
  189. var apiPath = urlPath(TARGET_ENTRY_PATH, exemptionID);
  190. return this.client.wrapWithDefaultHandler(this.client.get)(
  191. apiPath,
  192. params,
  193. callback
  194. );
  195. }
  196. /**
  197. * Retrieve a list of all exemptions to an enterprise's collaboration allowlist.
  198. *
  199. * API Endpoint: '/collaboration_whitelist_exempt_targets'
  200. * Method: GET
  201. *
  202. * @param {Object} [options] - Additional options. Can be left null in most cases.
  203. * @param {int} [options.limit] - The number of user collaboration allowlists to retrieve
  204. * @param {string} [options.marker] - Paging marker, retrieve records starting at this position in the list. Left blank to start at the beginning.
  205. * @param {Function} [callback] - Passed a list of user collaboration allowlists if successful, error otherwise
  206. * @returns {Promise<Object>} A promise resolving to the collection of user collaboration allowlists
  207. */
  208. getAllExemptions(
  209. options?: {
  210. limit?: number;
  211. marker?: string;
  212. },
  213. callback?: Function
  214. ) {
  215. var params = {
  216. qs: options,
  217. };
  218. var apiPath = urlPath(TARGET_ENTRY_PATH);
  219. return this.client.wrapWithDefaultHandler(this.client.get)(
  220. apiPath,
  221. params,
  222. callback
  223. );
  224. }
  225. /**
  226. * Delete a given user collaboration allowlist.
  227. *
  228. * API Endpoint: '/collaboration_whitelist_exempt_targets/:exemptionID'
  229. * Method: DELETE
  230. *
  231. * @param {string} exemptionID - Box ID of the user collaboration allowlist being requested
  232. * @param {Function} [callback] - Empty response body passed if successful.
  233. * @returns {Promise<void>} A promise resolving to nothing
  234. */
  235. removeExemption(exemptionID: string, callback?: Function) {
  236. var apiPath = urlPath(TARGET_ENTRY_PATH, exemptionID);
  237. return this.client.wrapWithDefaultHandler(this.client.del)(
  238. apiPath,
  239. null,
  240. callback
  241. );
  242. }
  243. }
  244. /**
  245. * Enum of valid collaboration allowlist directions
  246. *
  247. * @readonly
  248. * @enum {CollaborationAllowlistDirection}
  249. */
  250. CollaborationAllowlist.prototype.directions = CollaborationAllowlistDirection;
  251. /**
  252. * @module box-node-sdk/lib/managers/collaboration-allowlists
  253. * @see {@Link CollaborationAllowlist}
  254. */
  255. export = CollaborationAllowlist;