Source: managers/users.ts

  1. /**
  2. * @fileoverview Manager for the Box User Resource
  3. */
  4. // ------------------------------------------------------------------------------
  5. // Requirements
  6. // ------------------------------------------------------------------------------
  7. import BoxClient from '../box-client';
  8. import urlPath from '../util/url-path';
  9. import { Readable } from 'stream';
  10. // ------------------------------------------------------------------------------
  11. // Private
  12. // ------------------------------------------------------------------------------
  13. const BASE_PATH = '/users',
  14. EMAIL_ALIASES_SUBRESOURCE = 'email_aliases',
  15. GROUP_MEMBERSHIPS_SUBRESOURCE = 'memberships',
  16. CURRENT_USER_ID = 'me';
  17. // ------------------------------------------------------------------------------
  18. // Public
  19. // ------------------------------------------------------------------------------
  20. /**
  21. * Simple manager for interacting with all 'User' endpoints and actions.
  22. *
  23. * @constructor
  24. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  25. * @returns {void}
  26. */
  27. class Users {
  28. client: BoxClient;
  29. CURRENT_USER_ID!: string;
  30. constructor(client: BoxClient) {
  31. this.client = client;
  32. }
  33. /**
  34. * Requests information for the Box user info associated with a given ID
  35. *
  36. * API Endpoint: '/users/:id'
  37. * Method: GET
  38. *
  39. * @param {string} userID - The ID of the user to retrieve
  40. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  41. * @param {Function} [callback] - passed the user info if it was acquired successfully
  42. * @returns {Promise<Object>} A promise resolving to the user object
  43. */
  44. get(userID: string, options?: Record<string, any>, callback?: Function) {
  45. var apiPath = urlPath(BASE_PATH, userID),
  46. params = {
  47. qs: options,
  48. };
  49. return this.client.wrapWithDefaultHandler(this.client.get)(
  50. apiPath,
  51. params,
  52. callback
  53. );
  54. }
  55. /**
  56. * Update some information about a user.
  57. *
  58. * API Endpoint: '/users/:id'
  59. * Method: PUT
  60. *
  61. * @param {string} userID - The ID of the user to update
  62. * @param {Object} updates - User fields to update
  63. * @param {Function} [callback] - Passed the updated user information if it was acquired successfully
  64. * @returns {Promise<Object>} A promise resolving to the updated user object
  65. */
  66. update(userID: string, updates: Record<string, any>, callback?: Function) {
  67. var apiPath = urlPath(BASE_PATH, userID),
  68. params = {
  69. body: updates,
  70. };
  71. return this.client.wrapWithDefaultHandler(this.client.put)(
  72. apiPath,
  73. params,
  74. callback
  75. );
  76. }
  77. /**
  78. * Deletes a user in an enterprise account.
  79. *
  80. * API Endpoint: '/users/:userID'
  81. * Method: DELETE
  82. *
  83. * @param {string} userID - The ID of the user to delete
  84. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  85. * @param {boolean} [options.notify] - Determines if the destination user should receive email notification of the transfer.
  86. * @param {boolean} [options.force] - Whether or not the user should be deleted even if this user still own files.
  87. * @param {Function} [callback] - Empty response body passed if successful, error otherwise
  88. * @returns {Promise<void>} A promise resolving to nothing
  89. */
  90. delete(
  91. userID: string,
  92. options?: {
  93. notify?: boolean;
  94. force?: boolean;
  95. },
  96. callback?: Function
  97. ) {
  98. var apiPath = urlPath(BASE_PATH, userID),
  99. params = {
  100. qs: options,
  101. };
  102. return this.client.wrapWithDefaultHandler(this.client.del)(
  103. apiPath,
  104. params,
  105. callback
  106. );
  107. }
  108. // @NOTE(mwiller) 2014-06-10: This does not include their primary email address!
  109. /**
  110. * Get all linked email addresses for a user.
  111. *
  112. * API Endpoint: '/users/:id/email_aliases'
  113. * Method: GET
  114. *
  115. * @param {string} userID - The ID of the user to retrieve email alises for
  116. * @param {Function} [callback] - Passed the email aliases if successful
  117. * @returns {Promise<Object>} A promise resolving to the collection of email aliases
  118. */
  119. getEmailAliases(userID: string, callback?: Function) {
  120. var apiPath = urlPath(BASE_PATH, userID, EMAIL_ALIASES_SUBRESOURCE);
  121. return this.client.wrapWithDefaultHandler(this.client.get)(
  122. apiPath,
  123. null,
  124. callback
  125. );
  126. }
  127. /**
  128. * Add a linked email address to a user's account.
  129. *
  130. * API Endpoint: '/users/:id/email_aliases'
  131. * Method: POST
  132. *
  133. * @param {string} userID - The ID of the user to add an email alias to
  134. * @param {string} email - The email address to add
  135. * @param {Object} [options] - Optional parameters
  136. * @param {boolean} [options.is_confirmed=false] Whether or not to attempt to auto-confirm the alias (for admins)
  137. * @param {Function} [callback] - Passed the new alias if successful
  138. * @returns {Promise<Object>} A promise resolving to the new email alias
  139. */
  140. addEmailAlias(
  141. userID: string,
  142. email: string,
  143. options?:
  144. | {
  145. is_confirmed?: boolean;
  146. }
  147. | Function,
  148. callback?: Function
  149. ) {
  150. options = options || {};
  151. if (typeof options === 'function') {
  152. callback = options;
  153. options = {};
  154. }
  155. var apiPath = urlPath(BASE_PATH, userID, EMAIL_ALIASES_SUBRESOURCE),
  156. params = {
  157. body: {
  158. email,
  159. is_confirmed: false, // don't attempt to autoconfirm aliases for admins by default
  160. },
  161. };
  162. Object.assign(params.body, options);
  163. return this.client.wrapWithDefaultHandler(this.client.post)(
  164. apiPath,
  165. params,
  166. callback
  167. );
  168. }
  169. /**
  170. * Remove a linked email address from the current user by alias ID.
  171. *
  172. * API Endpoint: '/users/:id/email_aliases/:aliasID'
  173. * Method: DELETE
  174. *
  175. * @param {string} userID - The ID of the user to remove the email alias from
  176. * @param {string} aliasID - The ID of the linked email alias to remove
  177. * @param {Function} [callback] - Passed nothing on success
  178. * @returns {Promise<void>} A promise resolving to nothing
  179. */
  180. removeEmailAlias(userID: string, aliasID: string, callback?: Function) {
  181. var apiPath = urlPath(
  182. BASE_PATH,
  183. userID,
  184. EMAIL_ALIASES_SUBRESOURCE,
  185. aliasID
  186. );
  187. return this.client.wrapWithDefaultHandler(this.client.del)(
  188. apiPath,
  189. null,
  190. callback
  191. );
  192. }
  193. /**
  194. * Retrieve a list of group memberships for the user, which show which groups
  195. * the user belongs to. This ability is restricted to group admins.
  196. *
  197. * API Endpoint: '/users/:userID/memberships'
  198. * Method: GET
  199. *
  200. * @param {string} userID - The ID of the user to get group memberships for
  201. * @param {Object} [options] - Optional parameters, can be left null in most cases
  202. * @param {int} [options.limit] - The number of memberships to retrieve
  203. * @param {int} [options.offset] - Paging marker, retrieve records starting at this position in the list
  204. * @param {Function} [callback] - Passed a list of memberships if successful, error otherwise
  205. * @returns {Promise<Object>} A promise resolving to the collection of group memberships
  206. */
  207. getGroupMemberships(
  208. userID: string,
  209. options?: {
  210. limit?: number;
  211. offset?: number;
  212. },
  213. callback?: Function
  214. ) {
  215. var apiPath = urlPath(BASE_PATH, userID, GROUP_MEMBERSHIPS_SUBRESOURCE),
  216. params = {
  217. qs: options,
  218. };
  219. return this.client.wrapWithDefaultHandler(this.client.get)(
  220. apiPath,
  221. params,
  222. callback
  223. );
  224. }
  225. /**
  226. * Retrieve the user's avatar image.
  227. *
  228. * API Endpoint: '/users/:userID/avatar'
  229. * Method: GET
  230. *
  231. * @param {string} userID The ID of the user whose avatar should be retrieved
  232. * @param {Function} [callback] Passed a stream over the bytes of the avatar image if successful
  233. * @returns {Promise<Readable>} A promise resolving to the image stream
  234. */
  235. getAvatar(userID: string, callback?: Function) {
  236. var apiPath = urlPath(BASE_PATH, userID, 'avatar'),
  237. params = {
  238. streaming: true,
  239. };
  240. return this.client.get(apiPath, params).asCallback(callback);
  241. }
  242. /**
  243. * Set the user's avatar image.
  244. *
  245. * API Endpoint: '/users/:userID/avatar'
  246. * Method: POST
  247. *
  248. * @param {string} userID The ID of the user whose avatar should be set
  249. * @param {string|Buffer|ReadStream} avatar - the content of the file. It can be a string, a Buffer, or a read stream
  250. * (like that returned by fs.createReadStream()).
  251. * @param {Function} [callback] Passed dictionary of picture urls if successful
  252. * @returns {Promise<Object>} A promise resolving to the picture urls
  253. */
  254. setAvatar(
  255. userID: string,
  256. avatar: string | Buffer | Readable,
  257. callback?: Function
  258. ) {
  259. var apiPath = urlPath(BASE_PATH, userID, 'avatar'),
  260. params = {
  261. formData: {
  262. pic: avatar,
  263. },
  264. };
  265. return this.client.wrapWithDefaultHandler(this.client.post)(
  266. apiPath,
  267. params,
  268. callback
  269. );
  270. }
  271. /**
  272. * Delete the user's avatar image.
  273. *
  274. * API Endpoint: '/users/:userID/avatar'
  275. * Method: DELETE
  276. *
  277. * @param {string} userID The ID of the user whose avatar should be deleted
  278. * @param {Function} [callback] Passed nothing if successful
  279. * @returns {Promise<void>} A promise resolving to nothing
  280. */
  281. deleteAvatar(userID: string, callback?: Function) {
  282. var apiPath = urlPath(BASE_PATH, userID, 'avatar'),
  283. params = {};
  284. return this.client.wrapWithDefaultHandler(this.client.del)(
  285. apiPath,
  286. params,
  287. callback
  288. );
  289. }
  290. /**
  291. * Validates the roles and permissions of the user,
  292. * and creates asynchronous jobs to terminate the user's sessions.
  293. *
  294. * API Endpoint: '/users/terminate_sessions'
  295. * Method: POST
  296. *
  297. * @param {Object} options - The user IDs or logins to terminate sessions
  298. * @param {string[]} [options.userIDs] - The user IDs to terminate sessions
  299. * @param {string[]} [options.userLogins] - The user logins to terminate sessions
  300. * @returns {Promise<Object>} A promise resolving a message about the request status.
  301. */
  302. terminateSession(options: {
  303. userIDs?: string[],
  304. userLogins?: string[],
  305. },
  306. callback?: Function
  307. ) {
  308. var apiPath = urlPath(BASE_PATH, 'terminate_sessions'),
  309. params = {
  310. body: options
  311. };
  312. return this.client.wrapWithDefaultHandler(this.client.post)(
  313. apiPath,
  314. params,
  315. callback
  316. );
  317. }
  318. }
  319. /** @const {string} */
  320. Users.prototype.CURRENT_USER_ID = CURRENT_USER_ID;
  321. /**
  322. * @module box-node-sdk/lib/managers/users
  323. * @see {@Link Users}
  324. */
  325. export = Users;