Skip to content
Snippets Groups Projects
Commit 1b09c4d0 authored by Thorsten Vitt's avatar Thorsten Vitt
Browse files

Switched EPUB generation to throw exceptions (that can then be handled

by the GenericExceptionMapper)

git-svn-id: https://develop.sub.uni-goettingen.de/repos/textgrid/trunk/services/aggregator@13531 7c539038-3410-0410-b1ec-0f2a7bf1c452
parent 198990ae
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,6 @@
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import javax.xml.transform.stream.StreamSource;
......@@ -64,7 +63,9 @@ public EPUB(final ITextGridRep repository) {
@Path(value = "/{object}")
@Produces(value = "application/epub+zip")
public Response get(@PathParam("object") final URI uri,
@QueryParam("stylesheet") final URI xsluri) {
@QueryParam("stylesheet") final URI xsluri)
throws ObjectNotFoundFault, MetadataParseFault, IoFault, AuthFault,
ProtocolNotImplementedFault {
logger.fine("EPUB called for root object: " + uri);
final TGCrudService crud = repository.getCRUDService();
try {
......@@ -129,33 +130,15 @@ public InputStream getInput() throws IOException {
// return Response.ok().type("text/plain").entity("Done, see " +
// workingDir).build();
} catch (final ObjectNotFoundFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final MetadataParseFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final IoFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final AuthFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final WebApplicationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final SaxonApiException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final ProtocolNotImplementedFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return Response.noContent().build();
......
......@@ -111,29 +111,21 @@ else if (Files.getFileExtension(name).equals("opf"))
zip.closeEntry();
}
} catch (final SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
throw new WebApplicationException(e);
} catch (final URISyntaxException e) {
// TODO Auto-generated catch block
e.printStackTrace();
throw new WebApplicationException(e);
} catch (final XMLStreamException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final ProtocolNotImplementedFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final ObjectNotFoundFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final MetadataParseFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final IoFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final AuthFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
throw new WebApplicationException(e);
} catch (ObjectNotFoundFault e) {
throw new WebApplicationException(e);
} catch (MetadataParseFault e) {
throw new WebApplicationException(e);
} catch (IoFault e) {
throw new WebApplicationException(e);
} catch (ProtocolNotImplementedFault e) {
throw new WebApplicationException(e);
} catch (AuthFault e) {
throw new WebApplicationException(e);
} finally {
zip.close();
FileUtils.removeDir(workingDir);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment