use of org.alfresco.webservice.types.Reference in project trainning by fernandotomasio.
the class ImportTurmasImplEfetivasFromTabelao method contentExistsByPath.
public boolean contentExistsByPath(String path) {
boolean result = false;
try {
AuthenticationUtils.startSession(USERNAME, PASSWORD);
RepositoryServiceSoapBindingStub repositoryService = WebServiceFactory.getRepositoryService();
Reference node = new Reference();
node.setStore(STORE);
node.setPath(encodePath(path));
Node[] nodes = null;
nodes = repositoryService.get(new Predicate(new Reference[] { node }, STORE, null));
if (nodes != null) {
return true;
}
} catch (AuthenticationFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Autenticação");
} catch (RepositoryFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.INFO, "Conteúdo não disponível");
} catch (RemoteException e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Acesso a Serviço Web");
} finally {
// End the session
AuthenticationUtils.endSession();
}
return result;
}
use of org.alfresco.webservice.types.Reference in project trainning by fernandotomasio.
the class AlfrescoContentDAO method contentExistsByPath.
// @Override
// public String addDocumentToTreinamento(DocumentDTO documento,
// String comando, String exercicio, String curso, String turma) {
// String pathTreinamentos = comando + "/" + TREINAMENTOS_SPACE;
// if (!contentExistsByPath(pathTreinamentos)) {
// FolderDTO folder = new FolderDTO();
// folder.setName(TREINAMENTOS_SPACE);
// createFolder(folder, DCTP_SPACE);
// }
//
// String pathExercicio = pathTreinamentos + "/" + exercicio;
//
// if (!contentExistsByPath(pathExercicio)) {
// FolderDTO folder = new FolderDTO();
// folder.setName(exercicio);
// createFolder(folder, pathTreinamentos);
//
// }
//
// String pathTurma = pathExercicio + "/" + curso + "-" + turma;
// if (!contentExistsByPath(pathTurma)) {
// FolderDTO folder = new FolderDTO();
// folder.setName(curso + "-" + turma);
// createFolder(folder, pathExercicio);
//
// }
//
// String uuid = createDocument(documento, pathTurma);
// return uuid;
//
// }
@Override
public boolean contentExistsByPath(String path) {
boolean result = false;
try {
AuthenticationUtils.startSession(USERNAME, PASSWORD);
RepositoryServiceSoapBindingStub repositoryService = WebServiceFactory.getRepositoryService();
Reference node = new Reference();
node.setStore(STORE);
node.setPath(encodePath(path));
Node[] nodes = null;
nodes = repositoryService.get(new Predicate(new Reference[] { node }, STORE, null));
if (nodes != null) {
return true;
}
} catch (AuthenticationFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Autenticação");
} catch (RepositoryFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.INFO, "Conteúdo não disponível");
} catch (RemoteException e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Acesso a Serviço Web");
} finally {
// End the session
AuthenticationUtils.endSession();
}
return result;
}
use of org.alfresco.webservice.types.Reference in project trainning by fernandotomasio.
the class AlfrescoContentDAO method findDocumentSWFByUUID.
@Override
public DocumentDTO findDocumentSWFByUUID(String uuid) {
DocumentDTO content = new DocumentDTO();
try {
AuthenticationUtils.startSession(USERNAME, PASSWORD);
RepositoryServiceSoapBindingStub repositoryService = WebServiceFactory.getRepositoryService();
Reference referenceSource = new Reference();
referenceSource.setStore(STORE);
referenceSource.setUuid(uuid);
Reference referenceDestination = new Reference();
referenceDestination.setStore(STORE);
referenceDestination.setUuid(ConfigHelper.getValue("repostitory.swf.folder"));
Node[] nodes = null;
nodes = repositoryService.get(new Predicate(new Reference[] { referenceSource }, STORE, null));
ContentServiceSoapBindingStub contentService = WebServiceFactory.getContentService();
Content c = contentService.transform(referenceSource, Constants.PROP_CONTENT, referenceDestination, Constants.PROP_CONTENT, new ContentFormat("application/x-shockwave-flash", "UTF-8"));
byte[] stream = ContentUtils.convertToByteArray(ContentUtils.getContentAsInputStream(c));
content.setContentStream(stream);
if (nodes != null) {
for (NamedValue namedValue : nodes[0].getProperties()) {
if (namedValue.getName().endsWith(Constants.PROP_CREATED) == true) {
// contentResult.setCreateDate(namedValue.getValue());
} else if (namedValue.getName().endsWith(Constants.PROP_NAME) == true) {
content.setName(namedValue.getValue());
} else if (namedValue.getName().endsWith(Constants.PROP_DESCRIPTION) == true) {
content.setDescription(namedValue.getValue());
} else if (namedValue.getName().endsWith(Constants.PROP_TITLE) == true) {
content.setTitle(namedValue.getValue());
}
}
} else {
return null;
}
} catch (AuthenticationFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Autenticação");
} catch (RepositoryFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.INFO, "Conteúdo não disponível");
} catch (RemoteException e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Acesso a Serviço Web");
} catch (Exception e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de abertura do arquivo");
} finally {
// End the session
AuthenticationUtils.endSession();
}
return content;
}
use of org.alfresco.webservice.types.Reference in project trainning by fernandotomasio.
the class AlfrescoContentDAO method updateDocument.
@Override
public String updateDocument(ContentDTO document) {
try {
AuthenticationUtils.startSession(USERNAME, PASSWORD);
WebServiceFactory.getRepositoryService();
Reference node = new Reference();
node.setStore(STORE);
if (document.getUid() == null || document.getUid().equals("")) {
return null;
}
node.setUuid(document.getUid());
Predicate predicate = new Predicate(new Reference[] { node }, STORE, null);
// update content
CMLUpdate update = new CMLUpdate();
NamedValue[] properties = new NamedValue[3];
properties[0] = Utils.createNamedValue(Constants.PROP_NAME, document.getName());
properties[1] = Utils.createNamedValue(Constants.PROP_TITLE, document.getTitle());
properties[2] = Utils.createNamedValue(Constants.PROP_DESCRIPTION, document.getDescription());
update.setProperty(properties);
update.setWhere(predicate);
CML cmlUpdate = new CML();
cmlUpdate.setUpdate(new CMLUpdate[] { update });
WebServiceFactory.getRepositoryService().update(cmlUpdate);
return document.getUid();
} catch (AuthenticationFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Autenticação");
} catch (RepositoryFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.INFO, "Conteúdo não disponível");
} catch (RemoteException e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Acesso a Serviço Web");
} finally {
// End the session
AuthenticationUtils.endSession();
}
return null;
}
use of org.alfresco.webservice.types.Reference in project trainning by fernandotomasio.
the class AlfrescoContentDAO method createFolderWithUUIDParent.
@Override
public String createFolderWithUUIDParent(FolderDTO folder, String uuidParent) {
try {
AuthenticationUtils.startSession(USERNAME, PASSWORD);
ParentReference parentReference = new ParentReference(STORE, uuidParent, null, Constants.ASSOC_CONTAINS, null);
parentReference.setChildName("{" + Constants.NAMESPACE_CONTENT_MODEL + "}" + folder.getName());
// Construct CML statement to create content node
// Note: Assign "1" as a local id, so we can refer to it in
// subsequent
// CML statements within the same CML block
NamedValue[] contentProps = new NamedValue[1];
contentProps[0] = Utils.createNamedValue(Constants.PROP_NAME, folder.getName());
CMLCreate create = new CMLCreate("1", parentReference, null, null, null, Constants.TYPE_FOLDER, contentProps);
// Construct CML statement to add titled aspect
NamedValue[] titledProps = new NamedValue[2];
titledProps[0] = Utils.createNamedValue(Constants.PROP_TITLE, folder.getTitle());
titledProps[1] = Utils.createNamedValue(Constants.PROP_DESCRIPTION, folder.getDescription());
CMLAddAspect addAspect = new CMLAddAspect(Constants.ASPECT_TITLED, titledProps, null, "1");
// Construct CML Block
CML cml = new CML();
cml.setCreate(new CMLCreate[] { create });
cml.setAddAspect(new CMLAddAspect[] { addAspect });
// Issue CML statement via Repository Web Service and retrieve
// result
// Note: Batching of multiple statements into a single web call
UpdateResult[] result = WebServiceFactory.getRepositoryService().update(cml);
Reference content = result[0].getDestination();
return content.getUuid();
} catch (AuthenticationFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Autenticação");
return null;
} catch (RepositoryFault e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.INFO, "Conteúdo não disponível");
return null;
} catch (RemoteException e) {
Logger.getLogger(AlfrescoContentDAO.class.getName()).log(Level.SEVERE, "Erro de Acesso a Serviço Web");
return null;
} finally {
// End the session
AuthenticationUtils.endSession();
}
}
Aggregations