Interface IFileManager

  • All Known Implementing Classes:
    FileManager

    @StableMinor(version="14.0",
                 sinceVersion="4.0")
    public interface IFileManager
    Manages file information.

    File validations may be configured defining property bags. The properties are applied to service instances. The properties are:

    PropertyDescription
    lumis.portal.file.validation.heightDefine the maximum height limit for the file in pixels. This validation will be applied just over files that have this information with metadata.
    lumis.portal.file.validation.widthDefine the maximum width limit for the file in pixels. This validation will be applied just over files that have this information with metadata.
    lumis.portal.file.validation.sizeDefine the maximum size limit for the file in bytes. This validation will be applied over all files that the File Manager tries to persist.
    lumis.portal.file.validation.classNameDefine a list of custom class validators that will be used by the File Manager when his will try to persist each file. More information check IFileValidator.
    Since:
    4.0.0
    Version:
    $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
    • Method Detail

      • get

        FileConfig get​(SessionConfig sessionConfig,
                       String fileId,
                       ITransaction transaction)
                throws PortalException
        Returns the FileConfig for a file with the given fileId.
        Parameters:
        sessionConfig - identifier for the session.
        fileId - the id of the file.
        transaction - the transaction for persistence access.
        Returns:
        the FileConfig for the file, or null if it is not found.
        Throws:
        PortalException
      • getFilesConfig

        FilesConfig getFilesConfig​(SessionConfig sessionConfig,
                                   String filesId,
                                   ITransaction transaction)
                            throws PortalException
        Returns the FilesConfig for a files with the given filesId.
        Parameters:
        sessionConfig - identifier for the session.
        filesId - the id of the files.
        transaction - the transaction for persistence access.
        Returns:
        the FilesConfig for the files, or null if it is not found.
        Throws:
        PortalException
      • getFileConfigsByFilesId

        Collection<FileConfig> getFileConfigsByFilesId​(SessionConfig sessionConfig,
                                                       String filesId,
                                                       ITransaction transaction)
                                                throws PortalException
        Returns a collection of FileConfig of file entries belonging to the files with the given id.
        Parameters:
        sessionConfig - identifier for the session.
        filesId - id of the files entry.
        transaction - the transaction for persistence access.
        Returns:
        the collection contaning the FileConfig instances, or an empty collection if none is found.
        Throws:
        PortalException
      • getPortalFile

        IFile getPortalFile​(SessionConfig sessionConfig,
                            FileConfig fileConfig,
                            ITransaction transaction)
                     throws PortalException
        Returns the File object for accessing the corresponding file in the portal filesystem.
        Parameters:
        sessionConfig - identifier for the session.
        fileConfig - the fileConfig of the asked file.
        transaction - the transaction for persistence access.
        Returns:
        the File object for accessing the corresponding file in the portal filesystem.
        Throws:
        PortalException
      • add

        FileConfig add​(SessionConfig sessionConfig,
                       String name,
                       File file,
                       String contentType,
                       String serviceInstanceId,
                       ITransaction transaction)
                throws PortalException
        Persists a file.
        Parameters:
        sessionConfig - The session information.
        name - The name of the file.
        file - The file to be added.
        contentType - The contentType of the file.
        serviceInstanceId - The ID of the service instance used to add this file.
        transaction - The transaction used for the persistence
        Returns:
        an instance of FileConfig holding the information of the file.
        Throws:
        PortalException - If any error occurs
        FileUploadDeniedException - if the file was not added because it did not comply with portal file upload restrictions configuration.
        Since:
        6.0.0
      • add

        FileConfig add​(SessionConfig sessionConfig,
                       String fileId,
                       String fileRelativePath,
                       String name,
                       File file,
                       String contentType,
                       String serviceInstanceId,
                       ITransaction transaction)
                throws PortalException
        Persists a file.
        Parameters:
        sessionConfig - The session information.
        fileId - Identifier of the file
        fileRelativePath - path of the file starting at the files directory
        name - The name of the file.
        file - The file to be added.
        contentType - The contentType of the file.
        serviceInstanceId - The ID of the service instance used to add this file.
        transaction - The transaction used for the persistence
        Returns:
        an instance of FileConfig holding the information of the file.
        Throws:
        PortalException - If any error occurs
        FileUploadDeniedException - if the file was not added because it did not comply with portal file upload restrictions configuration.
        Since:
        8.0.0
      • add

        FileConfig add​(SessionConfig sessionConfig,
                       String fileId,
                       String fileRelativePath,
                       String name,
                       File file,
                       String serviceInstanceId,
                       ITransaction transaction)
                throws PortalException
        Persists a file. Calculates the file's content type automatically.
        Parameters:
        sessionConfig - The session information.
        fileId - Identifier of the file
        fileRelativePath - path of the file starting at the files directory
        name - The name of the file.
        file - The file to be added.
        serviceInstanceId - The ID of the service instance used to add this file.
        transaction - The transaction used for the persistence
        Returns:
        an instance of FileConfig holding the information of the file.
        Throws:
        PortalException - If any error occurs
        FileUploadDeniedException - if the file was not added because it did not comply with portal file upload restrictions configuration.
        Since:
        8.2.0
      • removeStoredFile

        void removeStoredFile​(SessionConfig sessionConfig,
                              String fileId,
                              ITransaction transaction)
                       throws PortalException
        Removes the specified file. The file entry from database is removed and the corresponding file in the filesystem is deleted.
        Parameters:
        sessionConfig - identifier for the session.
        fileId - the file id.
        transaction - the transaction for persistence access.
        Throws:
        PortalException
      • removeStoredFiles

        void removeStoredFiles​(SessionConfig sessionConfig,
                               String filesId,
                               ITransaction transaction)
                        throws PortalException
        Removes the files associated with the filesId given.
        Parameters:
        sessionConfig - identifier for the session.
        filesId - the filesId.
        transaction - the transaction for persistence access.
        Throws:
        PortalException
      • changeFilename

        void changeFilename​(SessionConfig sessionConfig,
                            String fileId,
                            String newFilename,
                            ITransaction transaction)
                     throws PortalException
        Changes the filename of a file.
        Parameters:
        sessionConfig - identifier for the session.
        fileId - the file id.
        newFilename - the new filename for the file.
        transaction - the transaction for persistence access.
        Throws:
        PortalException
      • publicServiceInstanceFiles

        void publicServiceInstanceFiles​(SessionConfig sessionConfig,
                                        String serviceInstanceId,
                                        boolean filesArePublic,
                                        ITransaction transaction)
                                 throws PortalException
        Creates or deletes the public copy of the files of a service instance.
        Parameters:
        sessionConfig - the user session information.
        serviceInstanceId - the service instance id.
        filesArePublic - if true the files are copied to the public area, if false the files are deleted from the public area.
        transaction - the transaction for persistence access.
        Throws:
        PortalException
      • getMimeType

        FileMimeTypeConfig getMimeType​(SessionConfig sessionConfig,
                                       String fileMimeType,
                                       ITransaction transaction)
                                throws PortalException
        Returns a mime type information.
        Parameters:
        sessionConfig - the user session information.
        fileMimeType - the mime type.
        transaction - the transaction for persistence access.
        Returns:
        the mime type information.
        Throws:
        PortalException
        Since:
        4.0.8
      • getNumberOfServiceInstanceFiles

        int getNumberOfServiceInstanceFiles​(SessionConfig sessionConfig,
                                            String serviceInstanceId,
                                            ITransaction transaction)
                                     throws PortalException
        Returns the number of files for a service instance.
        Parameters:
        sessionConfig - the user session information.
        serviceInstanceId - the service instance identifier.
        transaction - the transaction for persistence access.
        Returns:
        the number of files for the specified service instance.
        Throws:
        PortalException
        Since:
        4.2.0
      • setFileContentLocaleId

        void setFileContentLocaleId​(String fileId,
                                    String contentLocaleId)
                             throws PortalException
        Sets the given content locale identifier in the file with the given identifier. If no file config is found with the given file identifier, nothing will be performed.
        Parameters:
        fileId - the file identifier.
        contentLocaleId - the content locale identifier.
        Throws:
        PortalException
        Since:
        10.1.0