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

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

There is a newer version: 3.2.1
Show newest version
/*
 * Copyright (C) 2023 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.
 */

package com.smartsheet.api.internal;

import com.smartsheet.api.AuthorizationException;
import com.smartsheet.api.InvalidRequestException;
import com.smartsheet.api.ResourceNotFoundException;
import com.smartsheet.api.ServiceUnavailableException;
import com.smartsheet.api.ShareResources;
import com.smartsheet.api.SightResources;
import com.smartsheet.api.SmartsheetException;
import com.smartsheet.api.internal.util.QueryUtil;
import com.smartsheet.api.internal.util.Util;
import com.smartsheet.api.models.ContainerDestination;
import com.smartsheet.api.models.PagedResult;
import com.smartsheet.api.models.PaginationParameters;
import com.smartsheet.api.models.Sight;
import com.smartsheet.api.models.SightPublish;
import com.smartsheet.api.models.enums.SightInclusion;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;

public class SightResourcesImpl extends AbstractResources implements SightResources {

    private ShareResources shares;

    private static final String SIGHTS = "sights";

    /**
     * Constructor.
     * 

* Exceptions: - IllegalArgumentException : if any argument is null * * @param smartsheet the smartsheet */ public SightResourcesImpl(SmartsheetImpl smartsheet) { super(smartsheet); this.shares = new ShareResourcesImpl(smartsheet, SIGHTS); } /** * Gets the list of all Sights where the User has access. *

* It mirrors to the following Smartsheet REST API method: GET /sights * * @return IndexResult object containing an array of Sight objects limited to the following attributes: * id, name, accessLevel, permalink, createdAt, modifiedAt. * @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 listSights(PaginationParameters paging, Date modifiedSince) throws SmartsheetException { String path = SIGHTS; Map parameters = new HashMap<>(); if (paging != null) { parameters = paging.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, Sight.class); } /** * Get a specified Sight. *

* It mirrors to the following Smartsheet REST API method: GET /sights/{sightId} * * @param sightId the id of the Sight * @return the Sight resource. * @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 Sight getSight(long sightId) throws SmartsheetException { return this.getSight(sightId, null, null); } /** * Get a specified Sight. *

* It mirrors to the following Smartsheet REST API method: GET /sights/{sightId} * * @param sightId the id of the Sight * @param level compatibility level * @return the Sight resource. * @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 Sight getSight(long sightId, Integer level) throws SmartsheetException { return this.getSight(sightId, null, level); } /** * Get a specified Sight. *

* It mirrors to the following Smartsheet REST API method: GET /sights/{sightId} * * @param sightId the id of the Sight * @param level compatibility level * @param includes optional parameters to include * @return the Sight resource. * @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 Sight getSight(long sightId, EnumSet includes, Integer level) throws SmartsheetException { String path = SIGHTS + "/" + sightId; Map parameters = new HashMap<>(); parameters.put("level", level); parameters.put("include", QueryUtil.generateCommaSeparatedList(includes)); path += QueryUtil.generateUrl(null, parameters); return this.getResource(path, Sight.class); } /** * Update a specified Sight. *

* It mirrors to the following Smartsheet REST API method: PUT /sights/{sightId} * * @param sight - the Sight to update * @return the updated Sight resource. * @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 Sight updateSight(Sight sight) throws SmartsheetException { Util.throwIfNull(sight); return this.updateResource(SIGHTS + "/" + sight.getId(), Sight.class, sight); } /** * Delete a specified Sight. *

* It mirrors to the following Smartsheet REST API method: DELETE /sights/{sightId} * * @param sightId the id of the Sight * * @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 deleteSight(long sightId) throws SmartsheetException { this.deleteResource(SIGHTS + "/" + sightId, Sight.class); } /** * Creates s copy of the specified Sight. *

* It mirrors to the following Smartsheet REST API method: POST /sights/{sightId}/copy * * @param sightId the id of the Sight * @param destination the destination to copy to * @return the newly created Sight resource. * @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 Sight copySight(long sightId, ContainerDestination destination) throws SmartsheetException { return this.createResource(SIGHTS + "/" + sightId + "/copy", Sight.class, destination); } /** * Creates s copy of the specified Sight. *

* It mirrors to the following Smartsheet REST API method: POST /sights/{sightId}/move * * @param sightId the id of the Sight * @param destination the destination to copy to * @return the newly created Sight resource. * @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 Sight moveSight(long sightId, ContainerDestination destination) throws SmartsheetException { return this.createResource(SIGHTS + "/" + sightId + "/move", Sight.class, destination); } /** * Get the publish status of a Sight. *

* It mirrors to the following Smartsheet REST API method: POST /sights/{sightId}/publish * * @param sightId the id of the Sight * @return the Sight's publish status. * @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 SightPublish getPublishStatus(long sightId) throws SmartsheetException { return this.getResource(SIGHTS + "/" + sightId + "/publish", SightPublish.class); } /** * Sets the publish status of a Sight and returns the new status, including the URLs of any enabled publishing. *

* It mirrors to the following Smartsheet REST API method: POST /sights/{sightId}/publish * * @param sightId the id of the Sight * @param sightPublish the SightPublish object containing publish status * @return the Sight's publish status. * @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 SightPublish setPublishStatus(long sightId, SightPublish sightPublish) throws SmartsheetException { Util.throwIfNull(sightPublish); return this.updateResource(SIGHTS + "/" + sightId + "/publish", SightPublish.class, sightPublish); } /** * Return the ShareResources object that provides access to share resources associated with * Sight resources. * * @return the associated share resources */ public ShareResources shareResources() { return this.shares; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy