All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartsheet.api.internal.UserResourcesImpl Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.smartsheet.api.internal;

/*
 * #[license]
 * Smartsheet SDK for Java
 * %%
 * Copyright (C) 2014 Smartsheet
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * %[license]
 */



import com.smartsheet.api.*;
import com.smartsheet.api.internal.util.QueryUtil;
import com.smartsheet.api.internal.util.Util;
import com.smartsheet.api.models.*;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Set;

/**
 * This is the implementation of the UserResources.
 * 
 * Thread Safety: This class is thread safe because it is immutable and its base class is thread safe.
 */
public class UserResourcesImpl extends AbstractResources implements UserResources {

	/**
	 * Constructor.
	 * 
	 * Exceptions: - IllegalArgumentException : if any argument is null
	 *
	 * @param smartsheet the smartsheet
	 */
	public UserResourcesImpl(SmartsheetImpl smartsheet) {
		super(smartsheet);
	}

	/**
	 * 

List all users.

* *

It mirrors to the following Smartsheet REST API method: GET /users

* * @return the list of all users * @throws IllegalArgumentException if any argument is null or empty string * @throws InvalidRequestException if there is any problem with the REST API request * @throws AuthorizationException if there is any problem with the REST API authorization (access token) * @throws ResourceNotFoundException if the resource cannot be found * @throws ServiceUnavailableException if the REST API service is not available (possibly due to rate limiting) * @throws SmartsheetException if there is any other error during the operation */ public PagedResult listUsers() throws SmartsheetException { return this.listResourcesWithWrapper("users", User.class); } /** * List all users. * * It mirrors to the following Smartsheet REST API method: GET /users * * Exceptions: * - InvalidRequestException : if there is any problem with the REST API request * - AuthorizationException : if there is any problem with the REST API authorization(access token) * - ServiceUnavailableException : if the REST API service is not available (possibly due to rate limiting) * - SmartsheetRestException : if there is any other REST API related error occurred during the operation * - SmartsheetException : if there is any other error occurred during the operation * * @param email the list of email addresses * @param pagination the object containing the pagination query parameters * @return all users (note that empty list will be returned if there is none) * @throws SmartsheetException the smartsheet exception */ public PagedResult listUsers(Set email, PaginationParameters pagination) throws SmartsheetException { String path = "users"; HashMap parameters = new HashMap(); if (pagination != null){ parameters = pagination.toHashMap(); } parameters.put("email", QueryUtil.generateCommaSeparatedList(email)); path += QueryUtil.generateUrl(null, parameters); return this.listResourcesWithWrapper(path, User.class); } /** * Add a user to the organization, without sending email. * * It mirrors to the following Smartsheet REST API method: POST /users * * Exceptions: * - IllegalArgumentException : if any argument is null * - InvalidRequestException : if there is any problem with the REST API request * - AuthorizationException : if there is any problem with the REST API authorization(access token) * - ResourceNotFoundException : if the resource can not be found * - ServiceUnavailableException : if the REST API service is not available (possibly due to rate limiting) * - SmartsheetRestException : if there is any other REST API related error occurred during the operation * - SmartsheetException : if there is any other error occurred during the operation * * @param user the user object limited to the following attributes: * admin * email * licensedSheetCreator * @return the user * @throws SmartsheetException the smartsheet exception */ public User addUser(User user) throws SmartsheetException { return this.createResource("users", User.class, user); } /** * Add a user to the organization, without sending email. * * It mirrors to the following Smartsheet REST API method: POST /users * * Exceptions: * - IllegalArgumentException : if any argument is null * - InvalidRequestException : if there is any problem with the REST API request * - AuthorizationException : if there is any problem with the REST API authorization(access token) * - ResourceNotFoundException : if the resource can not be found * - ServiceUnavailableException : if the REST API service is not available (possibly due to rate limiting) * - SmartsheetRestException : if there is any other REST API related error occurred during the operation * - SmartsheetException : if there is any other error occurred during the operation * * @param user the created user * @param sendEmail whether to send email * @return the user object limited to the following attributes: * admin * email * licensedSheetCreator * @throws SmartsheetException the smartsheet exception */ public User addUser(User user, boolean sendEmail) throws SmartsheetException { return this.createResource("users?sendEmail=" + sendEmail, User.class, user); } /** *

Get the current user.

* *

It mirrors to the following Smartsheet REST API method: GET /users/{userId}

* * @param userId the user id * @return the user * @throws IllegalArgumentException if any argument is null or empty string * @throws InvalidRequestException if there is any problem with the REST API request * @throws AuthorizationException if there is any problem with the REST API authorization (access token) * @throws ResourceNotFoundException if the resource cannot be found * @throws ServiceUnavailableException if the REST API service is not available (possibly due to rate limiting) * @throws SmartsheetException if there is any other error during the operation */ public UserProfile getUser(long userId) throws SmartsheetException { return this.getResource("users/" + userId, UserProfile.class); } /** * Get the current user. * * It mirrors to the following Smartsheet REST API method: GET /users/me * * Exceptions: * - InvalidRequestException : if there is any problem with the REST API request * - AuthorizationException : if there is any problem with the REST API authorization(access token) * - ResourceNotFoundException : if the resource can not be found * - ServiceUnavailableException : if the REST API service is not available (possibly due to rate limiting) * - SmartsheetRestException : if there is any other REST API related error occurred during the operation * - SmartsheetException : if there is any other error occurred during the operation * * @return the resource (note that if there is no such resource, this method will throw ResourceNotFoundException * rather than returning null). * @throws SmartsheetException the smartsheet exception */ public UserProfile getCurrentUser() throws SmartsheetException { return this.getResource("users/me", UserProfile.class); } /** *

List all organisation sheets.

* *

It mirrors to the following Smartsheet REST API method: GET /users/sheets

* * @param pagination the object containing the pagination query parameters * @param modifiedSince * @return the list of all organisation sheets * @throws IllegalArgumentException if any argument is null or empty string * @throws InvalidRequestException if there is any problem with the REST API request * @throws AuthorizationException if there is any problem with the REST API authorization (access token) * @throws ResourceNotFoundException if the resource cannot be found * @throws ServiceUnavailableException if the REST API service is not available (possibly due to rate limiting) * @throws SmartsheetException if there is any other error during the operation */ public PagedResult listOrgSheets(PaginationParameters pagination, Date modifiedSince) throws SmartsheetException { String path = "users/sheets"; HashMap parameters = new HashMap(); if (pagination != null) { parameters = pagination.toHashMap(); } if (modifiedSince != null) { String isoDate = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ").format(modifiedSince); parameters.put("modifiedSince", isoDate); } path += QueryUtil.generateUrl(null, parameters); return this.listResourcesWithWrapper(path, Sheet.class); } public PagedResult listOrgSheets(PaginationParameters pagination) throws SmartsheetException { return this.listOrgSheets(pagination, null); } /** *

List all user alternate emails.

* *

It mirrors to the following Smartsheet REST API method: GET /users/{userId}/alternateemails

* * @param the id of the user * @param pagination the object containing the pagination query parameters * @return the list of all user alternate emails * @throws IllegalArgumentException if any argument is null or empty string * @throws InvalidRequestException if there is any problem with the REST API request * @throws AuthorizationException if there is any problem with the REST API authorization (access token) * @throws ResourceNotFoundException if the resource cannot be found * @throws ServiceUnavailableException if the REST API service is not available (possibly due to rate limiting) * @throws SmartsheetException if there is any other error during the operation */ public PagedResult listAlternateEmails(long userId, PaginationParameters pagination) throws SmartsheetException { String path = "users/" + userId + "/alternateemails"; if (pagination != null) { path += pagination.toQueryString(); } return this.listResourcesWithWrapper(path, AlternateEmail.class); } /** *

Get alternate email.

* *

It mirrors to the following Smartsheet REST API method: GET /users/{userId}/alternateemails/{alternateEmailId}

* * @param the id of the user * @param the alternate email id for the alternate email to retrieve. * @return the resource (note that if there is no such resource, this method will throw * ResourceNotFoundException rather than returning null). * @throws IllegalArgumentException if any argument is null or empty string * @throws InvalidRequestException if there is any problem with the REST API request * @throws AuthorizationException if there is any problem with the REST API authorization (access token) * @throws ResourceNotFoundException if the resource cannot be found * @throws ServiceUnavailableException if the REST API service is not available (possibly due to rate limiting) * @throws SmartsheetException if there is any other error during the operation */ public AlternateEmail getAlternateEmail(long userId, long altEmailId) throws SmartsheetException { return this.getResource("users/" + userId + "/alternateemails/" + altEmailId, AlternateEmail.class); } /** *

Add an alternate email.

* *

It mirrors to the following Smartsheet REST API method: POST /users/{userId}/alternateemails

* * @param the id of the user * @param AlternateEmail alternate email address to add. * @return the resource (note that if there is no such resource, this method will throw * ResourceNotFoundException rather than returning null). * @throws IllegalArgumentException if any argument is null or empty string * @throws InvalidRequestException if there is any problem with the REST API request * @throws AuthorizationException if there is any problem with the REST API authorization (access token) * @throws ResourceNotFoundException if the resource cannot be found * @throws ServiceUnavailableException if the REST API service is not available (possibly due to rate limiting) * @throws SmartsheetException if there is any other error during the operation */ public List addAlternateEmail(long userId, List altEmails) throws SmartsheetException { Util.throwIfNull(altEmails); if (altEmails.size() == 0) { return altEmails; } return this.postAndReceiveList("users/" + userId + "/alternateemails", altEmails, AlternateEmail.class); } /** *

Delete an alternate email.

* *

It mirrors to the following Smartsheet REST API method: DELETE /users/{userId}/alternateemails/{alternateEmailId}

* * @param the id of the user * @param the alternate email id for the alternate email to retrieve. * @return the resource (note that if there is no such resource, this method will throw * ResourceNotFoundException rather than returning null). * @throws IllegalArgumentException if any argument is null or empty string * @throws InvalidRequestException if there is any problem with the REST API request * @throws AuthorizationException if there is any problem with the REST API authorization (access token) * @throws ResourceNotFoundException if the resource cannot be found * @throws ServiceUnavailableException if the REST API service is not available (possibly due to rate limiting) * @throws SmartsheetException if there is any other error during the operation */ public void deleteAlternateEmail(long userId, long altEmailId) throws SmartsheetException { this.deleteResource("users/" + userId + "/alternateemails/" + altEmailId, AlternateEmail.class); } @Override public User updateUser(User user) throws SmartsheetException { return this.updateResource("users/" + user.getId(), User.class, user); } @Override public void deleteUser(long userId, DeleteUserParameters parameters) throws SmartsheetException { String path = "users/" + userId; if (parameters != null) { path += parameters.toQueryString(); } this.deleteResource(path, User.class); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy