UploadedFile file = input.get();
Attachment attach = new ProtoBuilder(baseDir, file).build();
UUID uuid = attach.getUuid();
InputStream in = file.openStream();
AttachmentIO.write(baseDir, uuid, in);
return pages.addPagesTo(attach);
} catch (UploadRequestException e) {