UNPKG

@esri/arcgis-rest-portal

Version:

ArcGIS Online and Enterprise content and user helpers for @esri/arcgis-rest-request

41 lines 1.77 kB
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc. * Apache-2.0 */ import { request } from "@esri/arcgis-rest-request"; import { getPortalUrl } from "../util/get-portal-url.js"; /** * Update a user profile. The username will be extracted from the authentication session unless it is provided explicitly. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/update-user.htm) for more information. * * ```js * import { updateUser } from '@esri/arcgis-rest-portal'; * * // any user can update their own profile * updateUser({ * authentication, * user: { description: "better than the last one" } * }) * .then(response) * * // org administrators must declare the username that will be updated explicitly * updateUser({ * authentication, * user: { username: "c@sey", description: "" } * }) * .then(response) * // => { "success": true, "username": "c@sey" } * ``` * * @param requestOptions - options to pass through in the request * @returns A Promise that will resolve with metadata about the user */ export async function updateUser(requestOptions) { // default to the authenticated username unless another username is provided manually const username = requestOptions.user.username || (await requestOptions.authentication.getUsername()); const updateUrl = `${getPortalUrl(requestOptions)}/community/users/${encodeURIComponent(username)}/update`; // mixin custom params and the user information, then drop the user info requestOptions.params = Object.assign(Object.assign({}, requestOptions.user), requestOptions.params); delete requestOptions.user; // send the request return request(updateUrl, requestOptions); } //# sourceMappingURL=update.js.map