Fórum

Document Library API recommended usage ?

thumbnail
Arthur Grohe, modificado 11 Anos atrás.

Document Library API recommended usage ?

Junior Member Postagens: 49 Data de Entrada: 05/11/12 Postagens Recentes
Hi guys,

I have some questions about the DL Api:

What is the best practice to...
+ Add/Delete Folders
+ Add/Delete FileEntries
+ Set Permissions to FileEntries


What I found is this:
DLFolderLocalServiceUtil.addFolder(
long userId, long groupId, long repositoryId, boolean mountPoint, long parentFolderId, 
String name, String description, ServiceContext serviceContext) 


+ How do I get the repositoryId and what is a repository in liferay?
+ What does mountPoint do?

..and that:
DLFileEntryLocalServiceUtil.addFileEntry(
long userId, long groupId, long repositoryId, long folderId, String sourceFileName, 
String mimeType, String title, String description, String changeLog, long fileEntryTypeId, 
Map<string,fields> fieldsMap, File file, InputStream is, long size, ServiceContext serviceContext) </string,fields>


+ What should I put in "changeLog"?
+ What is a FileEntryTypeId?
+ What are the fieldsMap?

further question:
+ What parameters are optional / can be set to null?
thumbnail
Mika Koivisto, modificado 11 Anos atrás.

RE: Document Library API recommended usage ?

Liferay Legend Postagens: 1519 Data de Entrada: 07/08/06 Postagens Recentes
First of all starting from Liferay 6.1 use DLAppServiceUtil or DLAppLocalServiceUtil instead of DLFileEntry or DLFolder services as those are internal implementation for LiferayRepository. The repositoryId is the scopeGroupId for LiferayRepository and some other value for a mounted repository.
Chandra Rastogi, modificado 11 Anos atrás.

RE: Document Library API recommended usage ?

New Member Postagens: 7 Data de Entrada: 27/12/12 Postagens Recentes
Hello Mika..
How will i get "changeLog",and "bytes" to use this method.
DLAppLocalServiceUtil.addFileEntry(userId, repositoryId, folderId, sourceFileName, mimeType, title, description, changeLog, bytes, serviceContext)

I am trying to upload file from browser to liferay server in dl. i created one folder in dl and get repositoryId and folderId. if there is any another method to upload file, please tell me or resolve my problem regarding this method's parameters.

Thanks
Chandra bhanu
thumbnail
Enrique Valdes Lacasa, modificado 8 Anos atrás.

RE: Document Library API recommended usage ?

Junior Member Postagens: 92 Data de Entrada: 29/07/14 Postagens Recentes
First, I added the changeLog value as a String. Since I wasn't sure of what to add, I just use "changeLog" as the value, and that's it.

On the other hand, the bytes parameter is the file converted into an array of bytes. To do this, you simply need to do the following, being file your instance of File:
Path path = Paths.get(file.getAbsolutePath());
byte[] data = Files.readAllBytes(path);

Using the following imports:
import java.nio.file.Paths;
import java.nio.file.Files;

The nio packages are available in Java 7 and they offer a good way to avoid having to add and use external libraries to convert a file into an array of bytes.