Source: managers/groups.ts

  1. /**
  2. * @fileoverview Manager for the Groups 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. * Enum of valid access levels for groups, which are used to specify who can
  15. * perform certain actions on the group.
  16. * @enum {GroupAccessLevel}
  17. */
  18. enum GroupAccessLevel {
  19. ADMINS = 'admins_only',
  20. MEMBERS = 'admins_and_members',
  21. ALL_USERS = 'all_managed_users',
  22. }
  23. /**
  24. * Enum of valid user roles within a group
  25. * @enum {GroupUserRole}
  26. */
  27. enum GroupUserRole {
  28. MEMBER = 'member',
  29. ADMIN = 'admin',
  30. }
  31. // -----------------------------------------------------------------------------
  32. // Private
  33. // -----------------------------------------------------------------------------
  34. const BASE_PATH = '/groups',
  35. MEMBERSHIPS_PATH = '/group_memberships',
  36. MEMBERSHIPS_SUBRESOURCE = 'memberships',
  37. COLLABORATIONS_SUBRESOURCE = 'collaborations';
  38. // -----------------------------------------------------------------------------
  39. // Public
  40. // -----------------------------------------------------------------------------
  41. /**
  42. * Simple manager for interacting with all 'Groups' endpoints and actions.
  43. *
  44. * @constructor
  45. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  46. * @returns {void}
  47. */
  48. class Groups {
  49. client: BoxClient;
  50. accessLevels!: typeof GroupAccessLevel;
  51. userRoles!: typeof GroupUserRole;
  52. constructor(client: BoxClient) {
  53. this.client = client;
  54. }
  55. /**
  56. * Used to create a new group
  57. *
  58. * API Endpoint: '/groups'
  59. * Method: POST
  60. *
  61. * @param {string} name - The name for the new group
  62. * @param {Object} [options] - Additional parameters
  63. * @param {string} [options.provenance] - Used to track the external source where the group is coming from
  64. * @param {string} [options.external_sync_identifier] - Used as a group identifier for groups coming from an external source
  65. * @param {string} [options.description] - Description of the group
  66. * @param {GroupAccessLevel} [options.invitability_level] - Specifies who can invite this group to collaborate on folders
  67. * @param {GroupAccessLevel} [options.member_viewability_level] - Specifies who can view the members of this group
  68. * @param {Function} [callback] - Passed the new group object if it was created successfully, error otherwise
  69. * @returns {Promise<Object>} A promise resolving to the new group object
  70. */
  71. create(
  72. name: string,
  73. options?: {
  74. provenance?: string;
  75. external_sync_identifier?: string;
  76. description?: string;
  77. invitability_level?: GroupAccessLevel;
  78. member_viewability_level?: GroupAccessLevel;
  79. },
  80. callback?: Function
  81. ) {
  82. var apiPath = urlPath(BASE_PATH),
  83. params: Record<string, any> = {
  84. body: options || {},
  85. };
  86. params.body.name = name;
  87. return this.client.wrapWithDefaultHandler(this.client.post)(
  88. apiPath,
  89. params,
  90. callback
  91. );
  92. }
  93. /**
  94. * Used to fetch information about a group
  95. *
  96. * API Endpoint: '/groups/:groupID'
  97. * Method: GET
  98. *
  99. * @param {string} groupID - The ID of the group to retrieve
  100. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  101. * @param {Function} [callback] - Passed the group object if successful, error otherwise
  102. * @returns {Promise<Object>} A promise resolving to the group object
  103. */
  104. get(groupID: string, options?: Record<string, any>, callback?: Function) {
  105. var apiPath = urlPath(BASE_PATH, groupID),
  106. params = {
  107. qs: options,
  108. };
  109. return this.client.wrapWithDefaultHandler(this.client.get)(
  110. apiPath,
  111. params,
  112. callback
  113. );
  114. }
  115. /**
  116. * Used to update or modify a group object
  117. *
  118. * API Endpoint: '/groups/:groupID'
  119. * Method: PUT
  120. *
  121. * @param {string} groupID - The ID of the group to update
  122. * @param {Object} updates - Group fields to update
  123. * @param {Function} [callback] - Passed the updated group object if successful, error otherwise
  124. * @returns {Promise<Object>} A promise resolving to the updated group object
  125. */
  126. update(groupID: string, updates?: Record<string, any>, callback?: Function) {
  127. var apiPath = urlPath(BASE_PATH, groupID),
  128. params = {
  129. body: updates,
  130. };
  131. return this.client.wrapWithDefaultHandler(this.client.put)(
  132. apiPath,
  133. params,
  134. callback
  135. );
  136. }
  137. /**
  138. * Delete a group
  139. *
  140. * API Endpoint: '/groups/:groupID'
  141. * Method: DELETE
  142. *
  143. * @param {string} groupID - The ID of the group to delete
  144. * @param {Function} [callback] - Passed nothing if successful, error otherwise
  145. * @returns {Promise<void>} A promise resolving to nothing
  146. */
  147. delete(groupID: string, callback?: Function) {
  148. var apiPath = urlPath(BASE_PATH, groupID);
  149. return this.client.wrapWithDefaultHandler(this.client.del)(
  150. apiPath,
  151. null,
  152. callback
  153. );
  154. }
  155. /**
  156. * Add a user to a group, which creates a membership record for the user
  157. *
  158. * API Endpoint: '/group_memberships'
  159. * Method: POST
  160. *
  161. * @param {string} groupID - The ID of the group to add the user to
  162. * @param {string} userID - The ID of the user to add the the group
  163. * @param {Object} [options] - Optional parameters for adding the user, can be left null in most cases
  164. * @param {GroupUserRole} [options.role] - The role of the user in the group
  165. * @param {Function} [callback] - Passed the membership record if successful, error otherwise
  166. * @returns {Promise<Object>} A promise resolving to the new membership object
  167. */
  168. addUser(
  169. groupID: string,
  170. userID: string,
  171. options?: {
  172. role?: GroupUserRole;
  173. },
  174. callback?: Function
  175. ) {
  176. var apiPath = urlPath(MEMBERSHIPS_PATH),
  177. params = {
  178. body: {
  179. user: {
  180. id: userID,
  181. },
  182. group: {
  183. id: groupID,
  184. },
  185. },
  186. };
  187. Object.assign(params.body, options);
  188. return this.client.wrapWithDefaultHandler(this.client.post)(
  189. apiPath,
  190. params,
  191. callback
  192. );
  193. }
  194. /**
  195. * Fetch a specific membership record, which shows that a given user is a member
  196. * of some group.
  197. *
  198. * API Endpoint: '/group_memberships/:membershipID'
  199. * Method: GET
  200. *
  201. * @param {string} membershipID - The ID of the membership to fetch
  202. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  203. * @param {Function} [callback] - Passed the membership record if successful, error otherwise
  204. * @returns {Promise<Object>} A promise resolving to the membership object
  205. */
  206. getMembership(
  207. membershipID: string,
  208. options?: Record<string, any>,
  209. callback?: Function
  210. ) {
  211. var apiPath = urlPath(MEMBERSHIPS_PATH, membershipID),
  212. params = {
  213. qs: options,
  214. };
  215. return this.client.wrapWithDefaultHandler(this.client.get)(
  216. apiPath,
  217. params,
  218. callback
  219. );
  220. }
  221. /**
  222. * Used to update or modify a group object
  223. *
  224. * API Endpoint: '/group_memberships/:membershipID'
  225. * Method: PUT
  226. *
  227. * @param {string} membershipID - The ID of the membership to update
  228. * @param {Object} options - Membership record fields to update
  229. * @param {Function} [callback] - Passed the updated membership object if successful, error otherwise
  230. * @returns {Promise<Object>} A promise resolving to the updated membership object
  231. */
  232. updateMembership(
  233. membershipID: string,
  234. options: Record<string, any>,
  235. callback?: Function
  236. ) {
  237. var apiPath = urlPath(MEMBERSHIPS_PATH, membershipID),
  238. params = {
  239. body: options,
  240. };
  241. return this.client.wrapWithDefaultHandler(this.client.put)(
  242. apiPath,
  243. params,
  244. callback
  245. );
  246. }
  247. /**
  248. * Used to remove a group membership
  249. *
  250. * API Endpoint: '/group_memberships/:membershipID'
  251. * Method: DELETE
  252. *
  253. * @param {string} membershipID - The ID of the membership to be removed
  254. * @param {Function} [callback] - Passed nothing if successful, error otherwise
  255. * @returns {Promise<void>} A promise resolving to nothing
  256. */
  257. removeMembership(membershipID: string, callback?: Function) {
  258. var apiPath = urlPath(MEMBERSHIPS_PATH, membershipID);
  259. return this.client.wrapWithDefaultHandler(this.client.del)(
  260. apiPath,
  261. null,
  262. callback
  263. );
  264. }
  265. /**
  266. * Retreieve a list of memberships for the group, which show which users
  267. * belong to the group
  268. *
  269. * API Endpoint: '/groups/:groupID/memberships'
  270. * Method: GET
  271. *
  272. * @param {string} groupID - The ID of the group to get memberships for
  273. * @param {Object} [options] - Optional parameters, can be left null in most cases
  274. * @param {int} [options.limit] - The number of memberships to retrieve
  275. * @param {int} [options.offset] - Paging marker, retrieve records starting at this position in the list
  276. * @param {Function} [callback] - Passed a list of memberships if successful, error otherwise
  277. * @returns {Promise<Object>} A promise resolving to the collection of memberships
  278. */
  279. getMemberships(
  280. groupID: string,
  281. options?: {
  282. limit?: number;
  283. offset?: number;
  284. },
  285. callback?: Function
  286. ) {
  287. var apiPath = urlPath(BASE_PATH, groupID, MEMBERSHIPS_SUBRESOURCE),
  288. params = {
  289. qs: options,
  290. };
  291. return this.client.wrapWithDefaultHandler(this.client.get)(
  292. apiPath,
  293. params,
  294. callback
  295. );
  296. }
  297. /**
  298. * Retreieve a list of groups in the caller's enterprise. This ability is
  299. * restricted to certain users with permission to view groups.
  300. *
  301. * API Endpoint: '/groups'
  302. * Method: GET
  303. *
  304. * @param {Object} [options] - Optional parameters, can be left null in most cases
  305. * @param {string} [options.filter_term] - Limits the results to only groups whose name starts with the search term
  306. * @param {int} [options.limit] - The number of memberships to retrieve
  307. * @param {int} [options.offset] - Paging marker, retrieve records starting at this position in the list
  308. * @param {Function} [callback] - Passed a list of groups if successful, error otherwise
  309. * @returns {Promise<Object>} A promise resolving to the collection of groups
  310. */
  311. getAll(
  312. options?: {
  313. filter_term?: string;
  314. limit?: number;
  315. offset?: number;
  316. },
  317. callback?: Function
  318. ) {
  319. var apiPath = urlPath(BASE_PATH),
  320. params = {
  321. qs: options,
  322. };
  323. return this.client.wrapWithDefaultHandler(this.client.get)(
  324. apiPath,
  325. params,
  326. callback
  327. );
  328. }
  329. /**
  330. * Retreieve a list of collaborations for the group, which show which items the
  331. * group has access to.
  332. *
  333. * API Endpoint: '/groups/:groupID/collaborations'
  334. * Method: GET
  335. *
  336. * @param {string} groupID - The ID of the group to get collaborations for
  337. * @param {Object} [options] - Optional parameters, can be left null in most cases
  338. * @param {int} [options.limit] - The number of memberships to retrieve
  339. * @param {int} [options.offset] - Paging marker, retrieve records starting at this position in the list
  340. * @param {Function} [callback] - Passed a list of collaborations if successful, error otherwise
  341. * @returns {Promise<Object>} A promise resolving to the collection of collaborations for the group
  342. */
  343. getCollaborations(
  344. groupID: string,
  345. options?: {
  346. limit?: number;
  347. offset?: number;
  348. },
  349. callback?: Function
  350. ) {
  351. var apiPath = urlPath(BASE_PATH, groupID, COLLABORATIONS_SUBRESOURCE),
  352. params = {
  353. qs: options,
  354. };
  355. return this.client.wrapWithDefaultHandler(this.client.get)(
  356. apiPath,
  357. params,
  358. callback
  359. );
  360. }
  361. /**
  362. * Validates the roles and permissions of the group,
  363. * and creates asynchronous jobs to terminate the group's sessions.
  364. *
  365. * API Endpoint: '/groups/terminate_sessions'
  366. * Method: POST
  367. *
  368. * @param {string[]} groupIDs A list of group IDs
  369. * @returns {Promise<Object>} A promise resolving a message about the request status.
  370. */
  371. terminateSession(groupIDs: string[], callback?: Function) {
  372. var apiPath = urlPath(BASE_PATH, 'terminate_sessions'),
  373. params = {
  374. body: {
  375. group_ids: groupIDs
  376. }
  377. };
  378. return this.client.wrapWithDefaultHandler(this.client.post)(
  379. apiPath,
  380. params,
  381. callback
  382. )
  383. }
  384. }
  385. /**
  386. * Enum of valid access levels for groups, which are used to specify who can
  387. * perform certain actions on the group.
  388. * @enum {GroupAccessLevel}
  389. */
  390. Groups.prototype.accessLevels = GroupAccessLevel;
  391. /**
  392. * Enum of valid user roles within a group
  393. * @enum {GroupUserRole}
  394. */
  395. Groups.prototype.userRoles = GroupUserRole;
  396. export = Groups;