Source: managers/enterprise.ts

  1. /**
  2. * @fileoverview Manager for Enterprise resources
  3. */
  4. // ------------------------------------------------------------------------------
  5. // Requirements
  6. // ------------------------------------------------------------------------------
  7. import BoxClient from '../box-client';
  8. import urlPath from '../util/url-path';
  9. // -----------------------------------------------------------------------------
  10. // Typedefs
  11. // -----------------------------------------------------------------------------
  12. /**
  13. * List of valid user types
  14. * @readonly
  15. * @enum {EnterpriseUserType}
  16. */
  17. enum EnterpriseUserType {
  18. ALL = 'all',
  19. MANAGED = 'managed',
  20. EXTERNAL = 'external',
  21. }
  22. /**
  23. * List of valid user statuses
  24. * @readonly
  25. * @enum {EnterpriseUserStatus}
  26. */
  27. enum EnterpriseUserStatus {
  28. ACTIVE = 'active',
  29. INACTIVE = 'inactive',
  30. CANNOT_DELETE_OR_EDIT = 'cannot_delete_edit',
  31. CANNOT_DELETE_EDIT_OR_UPLOAD = 'cannot_delete_edit_upload',
  32. }
  33. /**
  34. * List of valid roles
  35. * @readonly
  36. * @enum {EnterpriseRole}
  37. */
  38. enum EnterpriseRole {
  39. USER = 'user',
  40. COADMIN = 'coadmin',
  41. }
  42. // -----------------------------------------------------------------------------
  43. // Private
  44. // -----------------------------------------------------------------------------
  45. const USERS_PATH = '/users',
  46. INVITES_PATH = '/invites',
  47. FOLDERS_SUBRESOURCE = 'folders',
  48. ROOT_FOLDER_ID = '0';
  49. // -----------------------------------------------------------------------------
  50. // Public
  51. // -----------------------------------------------------------------------------
  52. /**
  53. * Simple manager for interacting with all Enterprise endpoints and actions.
  54. *
  55. * @constructor
  56. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  57. * @returns {void}
  58. */
  59. class Enterprise {
  60. client: BoxClient;
  61. userTypes!: typeof EnterpriseUserType;
  62. userStatuses!: typeof EnterpriseUserStatus;
  63. userRoles!: typeof EnterpriseRole;
  64. constructor(client: BoxClient) {
  65. this.client = client;
  66. }
  67. /**
  68. * Get a list of users in the current enterprise
  69. *
  70. * API Endpoint: '/users'
  71. * Method: GET
  72. *
  73. * @param {Object} [options] - Optional parameters, can be left null in most cases
  74. * @param {string} [options.filter_term] - Filter the results to only users starting with the filter_term in either the name or the login
  75. * @param {int} [options.limit=100] - The number of records to return
  76. * @param {boolean} [options.usemarker=false] - Whether or not to use marker-based pagination
  77. * @param {string} [options.marker=''] - The marker for the page at which to start. Default is the first page
  78. * @param {int} [options.offset=0] - The record at which to start
  79. * @param {EnterpriseUserType} [options.user_type=managed] - The type of user to search for
  80. * @param {Function} [callback] - Passed the list of users if successful, error otherwise
  81. * @returns {Promise<Object>} A promise resolving to the collection of users
  82. */
  83. getUsers(
  84. options?: {
  85. filter_term?: string;
  86. limit?: number;
  87. usemarker?: boolean;
  88. marker?: string;
  89. offset?: number;
  90. user_type?: EnterpriseUserType;
  91. },
  92. callback?: Function
  93. ) {
  94. var apiPath = urlPath(USERS_PATH),
  95. params = {
  96. qs: options,
  97. };
  98. return this.client.wrapWithDefaultHandler(this.client.get)(
  99. apiPath,
  100. params,
  101. callback
  102. );
  103. }
  104. /**
  105. * Invites a user to join the enterprise
  106. *
  107. * API Endpoint: '/invites'
  108. * Method: POST
  109. *
  110. * @param {string} enterpriseID - The ID of the enterprise to invite the user to
  111. * @param {string} email - The email address of the user to invite
  112. * @param {Function} [callback] - Passed the invite object if successful, error otherwise
  113. * @returns {Promise<Object>} A promise resolving to the invite object
  114. */
  115. inviteUser(enterpriseID: string, email: string, callback?: Function) {
  116. var apiPath = urlPath(INVITES_PATH),
  117. params = {
  118. body: {
  119. enterprise: {
  120. id: enterpriseID,
  121. },
  122. actionable_by: {
  123. login: email,
  124. },
  125. },
  126. };
  127. return this.client.wrapWithDefaultHandler(this.client.post)(
  128. apiPath,
  129. params,
  130. callback
  131. );
  132. }
  133. /**
  134. * Create a new user in the current enterprise
  135. *
  136. * API Endpoint: '/users'
  137. * Method: POST
  138. *
  139. * @param {string} login - The email address this user uses to login
  140. * @param {string} name - The name of this user
  141. * @param {Object} [options] - Optional parameters, can be left null in most cases
  142. * @param {EnterpriseRole} [options.role] - This user’s enterprise role
  143. * @param {string} [options.language] - The user's language
  144. * @param {boolean} [options.is_sync_enabled] - Whether or not this user can use Box Sync
  145. * @param {string} [options.job_title] - The user’s job title
  146. * @param {string} [options.phone] - The user’s phone number
  147. * @param {string} [options.address] - The user’s address
  148. * @param {int} [options.space_amount] - The user’s total available storage space in bytes
  149. * @param {Array} [options.tracking_codes] - An array of key/value pairs set by the user’s admin
  150. * @param {EnterpriseUserStatus} [options.status] - The user's status
  151. * @param {boolean} [options.can_see_managed_users] - Whether the user should be able to see other managed users
  152. * @param {string} [options.timezone] - The user's timezone
  153. * @param {boolean} [options.is_exempt_from_device_limits] - Whether to exempt this user from Enterprise device limits
  154. * @param {boolean} [options.is_exempt_from_login_verification] - Whether or not this user must use two-factor authentication
  155. * @param {boolean} [options.is_external_collab_restricted] - Whether the user is allowed to collaborate with users outside their enterprise
  156. * @param {Function} [callback] - Passed the created user if successful, error otherwise
  157. * @returns {Promise<Object>} A promise resolving to the created user
  158. */
  159. addUser(
  160. login: string,
  161. name: string,
  162. options?: {
  163. role?: EnterpriseRole;
  164. language?: string;
  165. is_sync_enabled?: boolean;
  166. job_title?: string;
  167. phone?: string;
  168. address?: string;
  169. space_amount?: number;
  170. tracking_codes?: [string, any][];
  171. status?: EnterpriseUserStatus;
  172. can_see_managed_users?: boolean;
  173. timezone?: string;
  174. is_exempt_from_device_limits?: boolean;
  175. is_exempt_from_login_verification?: boolean;
  176. is_external_collab_restricted?: boolean;
  177. },
  178. callback?: Function
  179. ) {
  180. var apiPath = urlPath(USERS_PATH),
  181. params = {
  182. body: { login, name },
  183. };
  184. Object.assign(params.body, options);
  185. return this.client.wrapWithDefaultHandler(this.client.post)(
  186. apiPath,
  187. params,
  188. callback
  189. );
  190. }
  191. /**
  192. * Create a new app user in the current enterprise
  193. *
  194. * API Endpoint: '/users'
  195. * Method: POST
  196. *
  197. * @param {string} name - The name of this user
  198. * @param {Object} [options] - Optional parameters, can be left null in most cases
  199. * @param {string} [options.language] - The user's language
  200. * @param {string} [options.job_title] - The user’s job title
  201. * @param {string} [options.phone] - The user’s phone number
  202. * @param {string} [options.address] - The user’s address
  203. * @param {int} [options.space_amount] - The user’s total available storage space in bytes
  204. * @param {string} [options.timezone] - The user's timezone
  205. * @param {Function} [callback] - Passed the created user if successful, error otherwise
  206. * @returns {Promise<Object>} A promise resolving to the created user
  207. */
  208. addAppUser(
  209. name: string,
  210. options?: {
  211. language?: string;
  212. job_title?: string;
  213. phone?: string;
  214. address?: string;
  215. space_amount?: number;
  216. timezone?: string;
  217. },
  218. callback?: Function
  219. ) {
  220. var apiPath = urlPath(USERS_PATH),
  221. params = {
  222. body: {
  223. name,
  224. is_platform_access_only: true,
  225. },
  226. };
  227. Object.assign(params.body, options);
  228. return this.client.wrapWithDefaultHandler(this.client.post)(
  229. apiPath,
  230. params,
  231. callback
  232. );
  233. }
  234. /**
  235. * Transfers all of a user's files into another user's account.
  236. *
  237. * API Endpoint: '/users/:sourceUserID/folders/0'
  238. * Method: PUT
  239. *
  240. * @param {string} sourceUserID - The ID of the user whose files will be transferred
  241. * @param {string} destUserID - The ID of the user to transfer the files to
  242. * @param {Function} [callback] - Passed the new folder which contains all the files if successful, error otherwise
  243. * @returns {Promise<Object>} A promise resolving to the folder containing the transferred content
  244. */
  245. transferUserContent(
  246. sourceUserID: string,
  247. destUserID: string,
  248. callback?: Function
  249. ) {
  250. var apiPath = urlPath(
  251. USERS_PATH,
  252. sourceUserID,
  253. FOLDERS_SUBRESOURCE,
  254. ROOT_FOLDER_ID
  255. ),
  256. params = {
  257. body: {
  258. owned_by: { id: destUserID },
  259. },
  260. };
  261. return this.client.wrapWithDefaultHandler(this.client.put)(
  262. apiPath,
  263. params,
  264. callback
  265. );
  266. }
  267. }
  268. Enterprise.prototype.userTypes = EnterpriseUserType;
  269. Enterprise.prototype.userStatuses = EnterpriseUserStatus;
  270. Enterprise.prototype.userRoles = EnterpriseRole;
  271. export = Enterprise;