LinkShareRestService.java
/*
* Copyright (C) 2003-2009 eXo Platform SAS.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see<http://www.gnu.org/licenses/>.
*/
package org.exoplatform.social.service.rest;
import javax.ws.rs.Consumes;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.UriInfo;
import org.exoplatform.services.rest.resource.ResourceContainer;
/**
* Gets information from a provided link.
*
* @anchor LinkShareRestService
*/
@Path("social/linkshare")
public class LinkShareRestService implements ResourceContainer {
/**
* constructor
*/
public LinkShareRestService() {
}
/**
* Gets the content of the link by the parameter passed to request.
*
* @param uriInfo The request URI information.
* @param format The format of the returned result, for example, JSON or XML.
* @param linkShareRequest The parameter passed to request.
*
* @anchor LinkShareRestService.getLink
*
* @return The response contains a returned result.
*
* @throws Exception
*
* @LevelAPI Platform
*/
@POST
@Path("show.{format}")
@Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
public Response getLink(@Context UriInfo uriInfo,
@PathParam("format") String format,
LinkShareRequest linkShareRequest) throws Exception {
MediaType mediaType = Util.getMediaType(format);
if (linkShareRequest == null || !linkShareRequest.verify()) {
throw new WebApplicationException(Response.Status.BAD_REQUEST);
}
LinkShare linkShare = null;
linkShare = getLinkShare(linkShareRequest.getLink(), linkShareRequest.getLang());
return Util.getResponse(linkShare, uriInfo, mediaType, Response.Status.OK);
}
private LinkShare getLinkShare(String link, String lang) throws Exception {
if (link == null || link.length() == 0) {
throw new WebApplicationException(Response.Status.BAD_REQUEST);
}
LinkShare ls;
try {
if (lang != null) {
ls = LinkShare.getInstance(link, lang);
} else {
ls = LinkShare.getInstance(link);
}
} catch(Exception ex) {
throw new WebApplicationException(ex, Response.Status.INTERNAL_SERVER_ERROR);
}
return ls;
}
}