Foren

Document Library API recommended usage ?

thumbnail
Arthur Grohe, geändert vor 11 Jahren.

Document Library API recommended usage ?

Junior Member Beiträge: 49 Beitrittsdatum: 05.11.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Document Library API recommended usage ?

Liferay Legend Beiträge: 1519 Beitrittsdatum: 07.08.06 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: Document Library API recommended usage ?

New Member Beiträge: 7 Beitrittsdatum: 27.12.12 Neueste Beiträge
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, geändert vor 8 Jahren.

RE: Document Library API recommended usage ?

Junior Member Beiträge: 92 Beitrittsdatum: 29.07.14 Neueste Beiträge
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.