/** * {@inheritDoc} * * @throws DMSException * @throws OntologyErrorException * @see org.prowim.dms.alfresco.ContentService#uploadDocument(org.prowim.datamodel.dms.Document, * String) */ @Override @Interceptors(AuthenticationInterceptor.class) public boolean uploadDocument(Document document, String userName) throws DMSException, OntologyErrorException { Validate.notNull(document); ContentServiceSoapBindingStub contentService = getContentService(); ContentFormat contentFormat = new ContentFormat(document.getContentType(), DMSConstants.ENCODING); DMSFault dmsFault; try { if (findFolderOrContent(document.getName()) == null) { Reference contentReference = this.createReference(document.getName(), organizationEntity.getUser(userName).getID()); contentService.write( contentReference, Constants.PROP_CONTENT, document.getContent(), contentFormat); makeVersionable(contentReference); return true; } else return false; } catch (ContentFault e) { String message = "Could not create content: "; LOG.error(message, e); dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } catch (RemoteException e) { String message = "Could not create connection: "; LOG.error(message, e); dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } }
/** * {@inheritDoc} * * @see * org.prowim.dms.alfresco.ContentService#updateDMSDocument(org.prowim.datamodel.dms.Document, * java.lang.String) */ @Override @Interceptors(AuthenticationInterceptor.class) public void updateDMSDocument(Document document, String uuid) throws DMSException { Validate.notNull(document); Validate.notNull(uuid); ContentFormat contentFormat = new ContentFormat(document.getContentType(), DMSConstants.ENCODING); try { DocumentIdentification documentIdentification = new DocumentIdentification(uuid, null); getContentService() .write( this.getReference( documentIdentification.getPath(), documentIdentification.getUuid(), DMSStoreRegistry.STORE_REF), Constants.PROP_CONTENT, document.getContent(), contentFormat); } catch (ContentFault e) { String message = "Could not update content: "; LOG.error(message, e); DMSFault dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } catch (RemoteException e) { String message = "Could not create connection: "; LOG.error(message, e); DMSFault dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } }
/** * {@inheritDoc} * * @see org.prowim.dms.alfresco.ContentService#updateContent(byte[], java.lang.String, * java.lang.String, java.lang.String, java.lang.String, boolean) */ @Interceptors(AuthenticationInterceptor.class) public VersionResult updateContent( byte[] content, String name, String mimeType, String frameID, String username, boolean createNewVersion) throws OntologyErrorException, DMSException { Validate.notNull(content); Validate.notNull(name); Validate.notNull(mimeType); Validate.notNull(frameID); ContentFormat contentFormat = new ContentFormat(mimeType, DMSConstants.ENCODING); try { DocumentIdentification documentIdentification = documentManagement.getDocumentIdentification(frameID); Content contentRef = getContentService() .write( this.getReference( documentIdentification.getPath(), documentIdentification.getUuid(), DMSStoreRegistry.STORE_REF), Constants.PROP_CONTENT, content, contentFormat); if (createNewVersion) { return createNewVersion(name, username, contentRef.getNode().getUuid()); } /** Set the document identification. */ documentManagement.setDocumentIdentification(contentRef.getNode().getUuid(), null, frameID); if (this.commonBean.getDirectClassOfInstance(frameID).equals(Relation.Classes.KNOWLEDGE_LINK)) documentManagement.bindDocument( contentRef.getNode().getUuid(), name, frameID, getLastVersionLabel(contentRef.getNode())); return null; } catch (ContentFault e) { String message = "Could not update content: "; LOG.error(message, e); DMSFault dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } catch (RemoteException e) { String message = "Could not create connection: "; LOG.error(message, e); DMSFault dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } }
/** * {@inheritDoc} * * @see org.prowim.dms.alfresco.ContentService#writeContent(byte[], java.lang.String, * java.lang.String, java.lang.String, java.lang.String) */ @Interceptors(AuthenticationInterceptor.class) public boolean writeContent( byte[] content, String name, String mimeType, String frameID, String username) throws OntologyErrorException, DMSException { Validate.notNull(content); Validate.notEmpty(name); Validate.notNull(mimeType); Validate.notNull(frameID); ContentServiceSoapBindingStub contentService = getContentService(); ContentFormat contentFormat = new ContentFormat(mimeType, DMSConstants.ENCODING); DMSFault dmsFault; try { if (findFolderOrContent(name) == null) { Reference contentReference = this.createReference(name, organizationEntity.getUser(username).getID()); Content contentRef = contentService.write(contentReference, Constants.PROP_CONTENT, content, contentFormat); makeVersionable(contentReference); documentManagement.setDocumentIdentification(contentRef.getNode().getUuid(), name, frameID); if (this.commonBean .getDirectClassOfInstance(frameID) .equals(Relation.Classes.KNOWLEDGE_LINK)) documentManagement.bindDocument( contentRef.getNode().getUuid(), name, frameID, getLastVersionLabel(contentRef.getNode())); return true; } else return false; } catch (ContentFault e) { String message = "Could not create content: "; LOG.error(message, e); dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } catch (RemoteException e) { String message = "Could not create connection: "; LOG.error(message, e); dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } }
/** * {@inheritDoc} * * @see org.prowim.dms.alfresco.ContentService#updateDocument(org.prowim.datamodel.dms.Document, * java.lang.String) */ @Override @Interceptors(AuthenticationInterceptor.class) public void updateDocument(Document document, String userName) throws DMSException { Validate.notNull(document); Validate.notNull(userName); ContentFormat contentFormat = new ContentFormat(document.getContentType(), DMSConstants.ENCODING); try { String uuid = findFolderOrContent(document.getName()); DocumentIdentification documentIdentification = new DocumentIdentification(uuid, null); Content contentRef = getContentService() .write( this.getReference( documentIdentification.getPath(), documentIdentification.getUuid(), DMSStoreRegistry.STORE_REF), Constants.PROP_CONTENT, document.getContent(), contentFormat); createNewVersion(document.getName(), userName, contentRef.getNode().getUuid()); } catch (ContentFault e) { String message = "Could not update content: "; LOG.error(message, e); DMSFault dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } catch (RemoteException e) { String message = "Could not create connection: "; LOG.error(message, e); DMSFault dmsFault = new DMSFault(); dmsFault.setMessage(message); throw new DMSException(message, dmsFault, e.getCause()); } catch (OntologyErrorException e) { // TODO $Author: khodaei $ Auto-generated catch block LOG.error("Your log-message: ", e); } }