Source: managers/legal-hold-policies.ts

  1. /**
  2. * @fileoverview Manager for the Legal Hold Policies 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. * Enum of valid policy assignment types, which specify what object the policy applies to
  14. * @readonly
  15. * @enum {LegalHoldPolicyAssignmentType}
  16. */
  17. enum LegalHoldPolicyAssignmentType {
  18. FOLDER = 'folder',
  19. USER = 'user',
  20. FILE = 'file',
  21. FILE_VERSION = 'file_version',
  22. }
  23. // -----------------------------------------------------------------------------
  24. // Private
  25. // -----------------------------------------------------------------------------
  26. const BASE_PATH = '/legal_hold_policies',
  27. ASSIGNMENTS_PATH = '/legal_hold_policy_assignments',
  28. FILE_VERSION_LEGAL_HOLDS_PATH = '/file_version_legal_holds';
  29. // -----------------------------------------------------------------------------
  30. // Public
  31. // -----------------------------------------------------------------------------
  32. /**
  33. * Simple manager for interacting with all Legal Holds endpoints and actions.
  34. *
  35. * @constructor
  36. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  37. * @returns {void}
  38. */
  39. class LegalHoldPolicies {
  40. client: BoxClient;
  41. assignmentTypes!: typeof LegalHoldPolicyAssignmentType;
  42. constructor(client: BoxClient) {
  43. this.client = client;
  44. }
  45. /**
  46. * Used to create a single legal hold policy for an enterprise
  47. *
  48. * API Endpoint: '/legal_hold_policies'
  49. * Method: POST
  50. *
  51. * @param {string} name - The name of the legal hold policy to be created
  52. * @param {Object} [options] - Additional parameters
  53. * @param {string} [options.description] - Description of the legal hold policy
  54. * @param {string} [options.filter_started_at] - Date filter, any Custodian assignments will apply only to file versions created or uploaded inside of the date range
  55. * @param {string} [options.filter_ended_at] - Date filter, any Custodian assignments will apply only to file versions created or uploaded inside of the date range
  56. * @param {boolean} [options.is_ongoing] - After initialization, Assignments under this Policy will continue applying to files based on events, indefinitely
  57. * @param {Function} [callback] - Passed the new policy information if it was acquired successfully, error otherwise
  58. * @returns {Promise<Object>} A promise resolving to the created policy
  59. */
  60. create(
  61. name: string,
  62. options?: {
  63. description?: string;
  64. filter_started_at?: string;
  65. filter_ended_at?: string;
  66. is_ongoing?: boolean;
  67. },
  68. callback?: Function
  69. ) {
  70. var apiPath = urlPath(BASE_PATH),
  71. params: Record<string, any> = {
  72. body: options || {},
  73. };
  74. params.body.policy_name = name;
  75. return this.client.wrapWithDefaultHandler(this.client.post)(
  76. apiPath,
  77. params,
  78. callback
  79. );
  80. }
  81. /**
  82. * Fetches details about a specific legal hold policy
  83. *
  84. * API Endpoint: '/legal_hold_policies/:policyID'
  85. * Method: GET
  86. *
  87. * @param {string} policyID - The Box ID of the legal hold policy being requested
  88. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  89. * @param {Function} [callback] - Passed the policy information if it was acquired successfully, error otherwise
  90. * @returns {Promise<Object>} A promise resolving to the policy object
  91. */
  92. get(policyID: string, options?: Record<string, any>, callback?: Function) {
  93. var apiPath = urlPath(BASE_PATH, policyID),
  94. params = {
  95. qs: options,
  96. };
  97. return this.client.wrapWithDefaultHandler(this.client.get)(
  98. apiPath,
  99. params,
  100. callback
  101. );
  102. }
  103. /**
  104. * Update or modify a legal hold policy.
  105. *
  106. * API Endpoint: '/legal_hold_policies/:policyID'
  107. * Method: PUT
  108. *
  109. * @param {string} policyID - The Box ID of the legal hold policy to update
  110. * @param {Object} updates - The information to be updated
  111. * @param {string} [updates.policy_name] - Name of Legal Hold Policy
  112. * @param {string} [updates.description] - Description of Legal Hold Policy
  113. * @param {string} [updates.release_notes] - Notes around why the policy was released
  114. * @param {Function} [callback] - Passed the updated policy information if it was acquired successfully, error otherwise
  115. * @returns {Promise<Object>} A promise resolving to the updated policy
  116. */
  117. update(
  118. policyID: string,
  119. updates: {
  120. policy_name?: string;
  121. description?: string;
  122. release_notes?: string;
  123. },
  124. callback?: Function
  125. ) {
  126. var apiPath = urlPath(BASE_PATH, policyID),
  127. params = {
  128. body: updates,
  129. };
  130. return this.client.wrapWithDefaultHandler(this.client.put)(
  131. apiPath,
  132. params,
  133. callback
  134. );
  135. }
  136. /**
  137. * Fetches a list of legal hold policies for the enterprise
  138. *
  139. * API Endpoint: '/legal_hold_policies'
  140. * Method: GET
  141. *
  142. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  143. * @param {string} [options.policy_name] - A full or partial name to filter the legal hold policies by
  144. * @param {int} [options.limit] - Limit result size to this number
  145. * @param {string} [options.marker] - Paging marker, leave blank to start at the first page
  146. * @param {Function} [callback] - Passed the policy objects if they were acquired successfully, error otherwise
  147. * @returns {Promise<Object>} A promise resolving to the collection of policies
  148. */
  149. getAll(
  150. options?: {
  151. policy_name?: string;
  152. limit?: number;
  153. marker?: string;
  154. },
  155. callback?: Function
  156. ) {
  157. var apiPath = urlPath(BASE_PATH),
  158. params = {
  159. qs: options,
  160. };
  161. return this.client.wrapWithDefaultHandler(this.client.get)(
  162. apiPath,
  163. params,
  164. callback
  165. );
  166. }
  167. /**
  168. * Sends request to delete an existing legal hold policy. Note that this is an
  169. * asynchronous process - the policy will not be fully deleted yet when the
  170. * response comes back.
  171. *
  172. * API Endpoint: '/legal_hold_policies/:policyID'
  173. * Method: DELETE
  174. *
  175. * @param {string} policyID - The legal hold policy to delete
  176. * @param {Function} [callback] - Passed nothing if successful, error otherwise
  177. * @returns {Promise<void>} A promise resolving to nothing
  178. */
  179. delete(policyID: string, callback?: Function) {
  180. var apiPath = urlPath(BASE_PATH, policyID);
  181. return this.client.wrapWithDefaultHandler(this.client.del)(
  182. apiPath,
  183. null,
  184. callback
  185. );
  186. }
  187. /**
  188. * Fetch a list of assignments for a given legal hold policy
  189. *
  190. * API Endpoint: '/legal_hold_policies/:policyID/assignments'
  191. * Method: GET
  192. *
  193. * @param {string} policyID - The Box ID of the legal hold policy to get assignments for
  194. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  195. * @param {LegalHoldPolicyAssignmentType} [options.assign_to_type] - Filter assignments of this type only
  196. * @param {string} [options.assign_to_id] - Filter assignments to this ID only. Note that this will only show assignments applied directly to this entity.
  197. * @param {Function} [callback] - Passed the assignment objects if they were acquired successfully, error otherwise
  198. * @returns {Promise<Object>} A promise resolving to the collection of policy assignments
  199. */
  200. getAssignments(
  201. policyID: string,
  202. options?: {
  203. assign_to_type?: LegalHoldPolicyAssignmentType;
  204. assign_to_id?: string;
  205. },
  206. callback?: Function
  207. ) {
  208. var apiPath = urlPath(ASSIGNMENTS_PATH),
  209. params = {
  210. qs: Object.assign({ policy_id: policyID }, options),
  211. };
  212. return this.client.wrapWithDefaultHandler(this.client.get)(
  213. apiPath,
  214. params,
  215. callback
  216. );
  217. }
  218. /**
  219. * Assign a lehal hold policy to an object
  220. *
  221. * API Endpoint: '/legal_hold_policy_assignments
  222. * Method: POST
  223. *
  224. * @param {string} policyID - The ID of the policy to assign
  225. * @param {LegalHoldPolicyAssignmentType} assignType - The type of object the policy will be assigned to
  226. * @param {string} assignID - The Box ID of the object to assign the legal hold policy to
  227. * @param {Function} [callback] - Passed the new assignment object if successful, error otherwise
  228. * @returns {Promise<Object>} A promise resolving to the created assignment object
  229. */
  230. assign(
  231. policyID: string,
  232. assignType: LegalHoldPolicyAssignmentType,
  233. assignID: string,
  234. callback?: Function
  235. ) {
  236. var apiPath = urlPath(ASSIGNMENTS_PATH),
  237. params = {
  238. body: {
  239. policy_id: policyID,
  240. assign_to: {
  241. type: assignType,
  242. id: assignID,
  243. },
  244. },
  245. };
  246. return this.client.wrapWithDefaultHandler(this.client.post)(
  247. apiPath,
  248. params,
  249. callback
  250. );
  251. }
  252. /**
  253. * Fetch a specific policy assignment
  254. *
  255. * API Endpoint: '/legal_hold_policy_assignments/:assignmentID'
  256. * Method: GET
  257. *
  258. * @param {string} assignmentID - The Box ID of the policy assignment object to fetch
  259. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  260. * @param {Function} [callback] - Passed the assignment object if it was acquired successfully, error otherwise
  261. * @returns {Promise<Object>} A promise resolving to the assignment object
  262. */
  263. getAssignment(
  264. assignmentID: string,
  265. options?: Record<string, any>,
  266. callback?: Function
  267. ) {
  268. var apiPath = urlPath(ASSIGNMENTS_PATH, assignmentID),
  269. params = {
  270. qs: options,
  271. };
  272. return this.client.wrapWithDefaultHandler(this.client.get)(
  273. apiPath,
  274. params,
  275. callback
  276. );
  277. }
  278. /**
  279. * Sends request to delete an existing legal hold policy. Note that this is an
  280. * asynchronous process - the policy will not be fully deleted yet when the
  281. * response comes back.
  282. *
  283. * API Endpoint: '/legal_hold_policy_assignments/:assignmentID'
  284. * Method: DELETE
  285. *
  286. * @param {string} assignmentID - The legal hold policy assignment to delete
  287. * @param {Function} [callback] - Passed nothing if successful, error otherwise
  288. * @returns {Promise<void>} A promise resolving to nothing
  289. */
  290. deleteAssignment(assignmentID: string, callback?: Function) {
  291. var apiPath = urlPath(ASSIGNMENTS_PATH, assignmentID);
  292. return this.client.wrapWithDefaultHandler(this.client.del)(
  293. apiPath,
  294. null,
  295. callback
  296. );
  297. }
  298. /**
  299. * Get the specific legal hold record for a held file version.
  300. *
  301. * API Endpoint: '/file_version_legal_holds/:legalHoldID'
  302. * Method: GET
  303. *
  304. * @param {string} legalHoldID - The ID for the file legal hold record to retrieve
  305. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  306. * @param {Function} [callback] - Pass the file version legal hold record if successful, error otherwise
  307. * @returns {Promise<Object>} A promise resolving to the legal hold record
  308. */
  309. getFileVersionLegalHold(
  310. legalHoldID: string,
  311. options?: Record<string, any>,
  312. callback?: Function
  313. ) {
  314. var apiPath = urlPath(FILE_VERSION_LEGAL_HOLDS_PATH, legalHoldID),
  315. params = {
  316. qs: options,
  317. };
  318. return this.client.wrapWithDefaultHandler(this.client.get)(
  319. apiPath,
  320. params,
  321. callback
  322. );
  323. }
  324. /**
  325. * Get a list of legal hold records for held file versions in an enterprise.
  326. *
  327. * API Endpoint: '/file_version_legal_holds'
  328. * Method: GET
  329. *
  330. * @param {string} policyID - ID of Legal Hold Policy to get File Version Legal Holds for
  331. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  332. * @param {Function} [callback] - Pass the file version legal holds records if successful, error otherwise
  333. * @returns {Promise<Object>} A promise resolving to the collection of all file version legal holds
  334. */
  335. getAllFileVersionLegalHolds(
  336. policyID: string,
  337. options?: Record<string, any>,
  338. callback?: Function
  339. ) {
  340. var apiPath = urlPath(FILE_VERSION_LEGAL_HOLDS_PATH),
  341. params = {
  342. qs: Object.assign({ policy_id: policyID }, options),
  343. };
  344. return this.client.wrapWithDefaultHandler(this.client.get)(
  345. apiPath,
  346. params,
  347. callback
  348. );
  349. }
  350. }
  351. /**
  352. * Enum of valid policy assignment types, which specify what object the policy applies to
  353. * @readonly
  354. * @enum {LegalHoldPolicyAssignmentType}
  355. */
  356. LegalHoldPolicies.prototype.assignmentTypes = LegalHoldPolicyAssignmentType;
  357. export = LegalHoldPolicies;