Class DocumentService
The Bean holds an instance of an EntityPersistenceManager for the persistence unit 'org.imixs.workflow.jpa' to manage the Document entity bean class. The Document entity bean is used to store the attributes of a ItemCollection into the connected database.
The save() method persists any instance of an ItemCollection. If a ItemCollection is saved the first time the DocumentService generates the attribute $uniqueid which will be included in the ItemCollection returned by this method. If a ItemCollection was saved before the method updates the corresponding Document Object.
The load() and find() methods are used to read ItemCollections from the database. The remove() method deletes a saved ItemCollection from the database.
All methods expect and return Instances of the object org.imixs.workflow.ItemCollection which is no entity EJB. So these objects are not managed by any instance of an EntityPersistenceManager.
A collection of ItemCollections can be read using the find() method using EQL syntax.
Additional to the basic functionality to save and load instances of the object org.imixs.workflow.ItemCollection the method also manages the read- and writeAccess for each instance of an ItemCollection. Therefore the save() method scans an ItemCollection for the attributes '$ReadAccess' and '$WriteAccess'. The DocumentService verifies in each call of the save() load(), remove() and find() methods if the current callerPrincipal is granted to the affected entities. If an ItemCollection was saved with read- or writeAccess the access to an Instance of a saved ItemCollection will be protected for a callerPrincipal with missing read- or writeAccess.
- Version:
- 1.0
- Author:
- rsoika
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
static final String
static final String
static final String
static final String
protected jakarta.enterprise.event.Event<DocumentEvent>
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
static final String
protected jakarta.enterprise.event.Event<UserGroupEvent>
static final String
static final String
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addDocumentToIndex
(ItemCollection document) This method adds a single document into the to the Lucene index.void
void
This method creates a backup of the result set form a Lucene search query.int
Returns the total hits for a given search query.int
Returns the total hits for a given search query.int
countPages
(String searchTerm, int pageSize) Returns the total pages for a given search term and a given page size.The method returns a list of ItemCollections from the search-index.The method returns a sorted list of ItemCollections from the search-index.findDocumentsByRef
(String uniqueIdRef, int pageSize, int pageIndex) The method returns a collection of ItemCollections referred by a $uniqueid.The method returns a sorted list of Document Stubs from the search-index.Returns a comma separated list of additional Access-Roles defined for this servicegetDocumentsByQuery
(String query) Returns all documents of by JPQL statementgetDocumentsByQuery
(String query, int maxResult) Returns all documents of by JPQL statement.getDocumentsByQuery
(String query, int firstResult, int maxResult) Returns all documents of by JPQL statement.getDocumentsByType
(String type) Returns an unordered list of all documents of a specific type.This method returns a list of user names, roles and application groups the user belongs to.boolean
isAuthor
(ItemCollection itemcol) Verifies if the caller has write access to the current ItemCollectionboolean
isEmptyList
(List<String> aList) This method returns true if the given list is empty or contains only null or '' values.boolean
isUserContained
(List<String> nameList) This method returns true, if at least one element of the current UserNameList is contained in a given name list.boolean
isUserInRole
(String rolename) Test if the caller has a given security role.boolean
isValidUIDPattern
(String uid) This method returns true if the given id is a valid UUID or SnapshotID (UUI + timestampThis method loads an ItemCollection from the Database.void
remove
(ItemCollection document) This method removes an ItemCollection from the database.void
removeDocumentFromIndex
(String uniqueID) This method adds a new eventLog for a document to be deleted from the index.void
This method restores a backup from the file system and imports the Documents into the database.save
(ItemCollection document) This Method saves an ItemCollection into the database.saveByNewTransaction
(ItemCollection itemcol) This method saves a workitem in a new transaction.void
setAccessRoles
(String accessRoles) void
setDisableOptimisticLocking
(Boolean disableOptimisticLocking) returns the disable optimistic locking status
-
Field Details
-
ACCESSLEVEL_NOACCESS
- See Also:
-
ACCESSLEVEL_READERACCESS
- See Also:
-
ACCESSLEVEL_AUTHORACCESS
- See Also:
-
ACCESSLEVEL_EDITORACCESS
- See Also:
-
ACCESSLEVEL_MANAGERACCESS
- See Also:
-
EVENTLOG_TOPIC_INDEX_ADD
- See Also:
-
EVENTLOG_TOPIC_INDEX_REMOVE
- See Also:
-
READACCESS
- See Also:
-
WRITEACCESS
- See Also:
-
ISAUTHOR
- See Also:
-
NOINDEX
- See Also:
-
IMMUTABLE
- See Also:
-
VERSION
- See Also:
-
USER_GROUP_LIST
- See Also:
-
OPERATION_NOTALLOWED
- See Also:
-
INVALID_PARAMETER
- See Also:
-
INVALID_UNIQUEID
- See Also:
-
documentEvents
-
userGroupEvents
-
-
Constructor Details
-
DocumentService
public DocumentService()
-
-
Method Details
-
getAccessRoles
Returns a comma separated list of additional Access-Roles defined for this service- Returns:
-
setAccessRoles
-
setDisableOptimisticLocking
returns the disable optimistic locking status -
getDisableOptimisticLocking
-
getUserNameList
This method returns a list of user names, roles and application groups the user belongs to.A client can extend the list of user groups associated with a userId by reacting on the CDI event 'UserGrouptEvent'.
- Returns:
- See Also:
-
isUserContained
This method returns true, if at least one element of the current UserNameList is contained in a given name list. The comparison is case sensitive!- Parameters:
nameList
-- Returns:
-
isUserInRole
Test if the caller has a given security role.- Parameters:
rolename
-- Returns:
- true if user is in role
-
save
This Method saves an ItemCollection into the database. If the ItemCollection is saved the first time the method generates a uniqueID ('$uniqueid') which can be used to identify the ItemCollection by its ID. If the ItemCollection was saved before, the method updates the existing ItemCollection stored in the database.The Method returns an updated instance of the ItemCollection containing the attributes $modified, $created, and $uniqueId
The method throws an AccessDeniedException if the CallerPrincipal is not allowed to save or update the ItemCollection in the database. The CallerPrincipial should have at least the access Role org.imixs.ACCESSLEVEL.AUTHORACCESS
The method adds/updates the document into the lucene index.
The method returns a itemCollection without the $VersionNumber from the persisted entity. (see issue #226)
issue #230: The document will be marked as 'saved' so that the methods load() and getDocumentsByQuery() can evaluate this flag. Depending on the state, the methods can decide the correct behavior. In general we detach a document in the load() and getDocumentsByQuery() method. This is for performance reasons and the fact, that a ItemCollection can hold byte arrays which will be copied by reference. In cases where these methods are called after a document was saved (document is now managed), in one single transaction, the detach call will discard the changes made by the save() method. For that reason we flag the entity and evaluate this flag in the load method evaluates the save status.
- Parameters:
ItemCollection
- to be saved- Returns:
- updated ItemCollection
- Throws:
AccessDeniedException
-
addDocumentToIndex
This method adds a single document into the to the Lucene index. Before the document is added to the index, a new eventLog is created. The document will be indexed after the method flushEventLog is called. This method is called by the LuceneSearchService finder methods.The method supports committed read. This means that a running transaction will not read an uncommitted document from the Lucene index.
- Parameters:
documentContext
-
-
removeDocumentFromIndex
This method adds a new eventLog for a document to be deleted from the index. The document will be removed from the index after the method fluschEventLog is called. This method is called by the LuceneSearchService finder method only.- Parameters:
uniqueID
- of the workitem to be removed- Throws:
PluginException
-
saveByNewTransaction
This method saves a workitem in a new transaction. The method can be used by plugins to isolate a save request from the current transaction context. To call this method a EJB session context is necessary:workitem= sessionContext.getBusinessObject(EntityService.class) .saveByNewTransaction(workitem);
- Parameters:
itemcol
-- Returns:
- Throws:
AccessDeniedException
-
load
This method loads an ItemCollection from the Database. The method expects a valid $uniqueID to identify the Document entity saved before into the database. The method returns null if no Document with the corresponding ID exists.The method checks if the CallerPrincipal has read access to Document stored in the database. If not, the method returns null.
Note: The method dose not throw an AccessDeniedException if the user is not allowed to read the entity to prevent a aggressor with informations about the existence of that specific Document.
The CallerPrincipial need to have at least the access level org.imixs.ACCESSLEVEL.READACCESS
issue #230 In case a document is not flagged (not saved during same transaction), we detach the loaded entity. In case a document is flagged (saved during save transaction) we may not detach it, but make a deepCopy (clone) of the document instance. This will avoid the effect, that data written to a document get lost in a long running transaction with save and load calls.
- Parameters:
id
- - the $uniqueid of the ItemCollection to be loaded- Returns:
- ItemCollection object or null if the Document dose not exist or the CallerPrincipal hat insufficient read access.
-
remove
This method removes an ItemCollection from the database. If the CallerPrincipal is not allowed to access the ItemColleciton the method throws an AccessDeniedException.The CallerPrincipial should have at least the access Role org.imixs.ACCESSLEVEL.AUTHORACCESS
Also the method removes the document form the lucene index.
- Parameters:
ItemCollection
- to be removed- Throws:
AccessDeniedException
-
count
Returns the total hits for a given search query. The provided search term will be extended with a users roles to test the read access level of each workitem matching the search term. The usernames and user roles will be search lowercase!- Parameters:
sSearchTerm
-- Returns:
- total hits of search result
- Throws:
QueryException
- in case the searchterm is not understandable.- See Also:
-
search(String, int, int, Sort, Operator)
-
count
Returns the total hits for a given search query. The provided search term will be extended with a users roles to test the read access level of each workitem matching the search term. The usernames and user roles will be search lowercase! The optional param 'maxResult' can be set to overwrite the DEFAULT_MAX_SEARCH_RESULT.- Parameters:
sSearchTerm
-maxResult
- - max search resultdefaultOperator
- - optional to change the default search operator- Returns:
- total hits of search result
- Throws:
QueryException
- in case the searchterm is not understandable.- See Also:
-
search(String, int, int, Sort, Operator)
-
countPages
Returns the total pages for a given search term and a given page size.- Parameters:
searchTerm
-pageSize
-- Returns:
- total pages of search result
- Throws:
QueryException
- in case the searchterm is not understandable.- See Also:
-
find
public List<ItemCollection> find(String searchTerm, int pageSize, int pageIndex) throws QueryException The method returns a list of ItemCollections from the search-index. The method expects an valid Lucene search term.The method returns only ItemCollections which are readable by the CallerPrincipal. With the pageSize and pageNumber it is possible to paginate.
The Transactiontype REQUIRES_NEW ensure that during the processing lifecycle an external service call did not overwrite the current document jpa object (see Issue #634)
- Parameters:
searchTerm
- - Lucene search termpageSize
- - total docs per pagepageIndex
- - number of page to start (default = 0)- Returns:
- list of ItemCollection elements
- Throws:
QueryException
- See Also:
-
find
public List<ItemCollection> find(String searchTerm, int pageSize, int pageIndex, String sortBy, boolean sortReverse) throws QueryException The method returns a sorted list of ItemCollections from the search-index. The result list can be sorted by a sortField and a sort direction.The method expects an valid Lucene search term. The method returns only ItemCollections which are readable by the CallerPrincipal. With the pageSize and pageNumber it is possible to paginate.
The Transactiontype REQUIRES_NEW ensure that during the processing lifecycle an external service call did not overwrite the current document jpa object (see Issue #634)
- Parameters:
searchTerm
- - Lucene search termpageSize
- - total docs per pagepageIndex
- - number of page to start (default = 0)sortBy
- -optional field to sort the resultsortReverse
- - optional sort direction- Returns:
- list of ItemCollection elements
- Throws:
QueryException
- See Also:
-
findStubs
public List<ItemCollection> findStubs(String searchTerm, int pageSize, int pageIndex, String sortBy, boolean sortReverse) throws QueryException The method returns a sorted list of Document Stubs from the search-index. A document stub contains only the items stored in the search index. These items can be defined by the propertylucence.indexFieldListStore
. See the LuceneUpdateService for details.The result list can be sorted by a sortField and a sort direction.
The method expects an valid Lucene search term. The method returns only ItemCollections which are readable by the CallerPrincipal. With the pageSize and pageNumber it is possible to paginate.
- Parameters:
searchTerm
- - Lucene search termpageSize
- - total docs per pagepageIndex
- - number of page to start (default = 0)sortBy
- -optional field to sort the resultsortReverse
- - optional sort direction- Returns:
- list of ItemCollection elements
- Throws:
QueryException
- See Also:
-
findDocumentsByRef
The method returns a collection of ItemCollections referred by a $uniqueid.The method returns only ItemCollections which are readable by the CallerPrincipal. With the pageSize and pageNumber it is possible to paginate.
The Transactiontype REQUIRES_NEW ensure that during the processing lifecycle an external service call did not overwrite the current document jpa object (see Issue #634)
- Parameters:
uniqueIdRef
- - $uniqueId to be referred by the collected documentspageSize
- - total docs per pagepageIndex
- - number of page to start (default = 0)- Returns:
- resultset
-
getDocumentsByType
Returns an unordered list of all documents of a specific type. The method throws an InvalidAccessException in case no type attribute is defined.The Transactiontype REQUIRES_NEW ensure that during the processing lifecycle an external service call did not overwrite the current document jpa object (see Issue #634)
- Parameters:
type
-- Returns:
- Throws:
InvalidAccessException
-
getDocumentsByQuery
Returns all documents of by JPQL statementThe Transactiontype REQUIRES_NEW ensure that during the processing lifecycle an external service call did not overwrite the current document jpa object (see Issue #634)
- Parameters:
query
- - JPQL statement- Returns:
-
getDocumentsByQuery
Returns all documents of by JPQL statement.The Transactiontype REQUIRES_NEW ensure that during the processing lifecycle an external service call did not overwrite the current document jpa object (see Issue #634)
- Parameters:
query
- - JPQL statementmaxResult
- - maximum result set- Returns:
-
getDocumentsByQuery
Returns all documents of by JPQL statement.The Transactiontype REQUIRES_NEW ensure that during the processing lifecycle an external service call did not overwrite the current document jpa object (see Issue #634)
- Parameters:
query
- - JPQL statementfirstResult
- - first resultmaxResult
- - maximum result set- Returns:
- - result set
-
backup
public void backup(String query, String filePath, boolean snapshots) throws IOException, QueryException This method creates a backup of the result set form a Lucene search query. The document list will be stored into the file system. The method stores the Map from the ItemCollection to be independent from version upgrades. To manage large dataSets the method reads the documents in smaller blocksThe optional parameter 'snapshots' can be set to 'true' to indicate that only the referred snapshot workitem should be stored. The snapshot is referred by the item $snapshotId.
- Parameters:
query
- - a Lucene search statementfilePath
- - the target file path in the server local file systemsnapshots
- - optional - if true, than only snapshots will be backuped. Default = false- Throws:
IOException
QueryException
-
backup
- Throws:
IOException
QueryException
-
restore
This method restores a backup from the file system and imports the Documents into the database.- Parameters:
filepath
-- Throws:
IOException
-
isAuthor
Verifies if the caller has write access to the current ItemCollection- Returns:
-
isEmptyList
This method returns true if the given list is empty or contains only null or '' values.- Parameters:
aList
-- Returns:
-
isValidUIDPattern
This method returns true if the given id is a valid UUID or SnapshotID (UUI + timestampWe also need to support the old uid formats
4832b09a1a-20c38abd-1519421083952
- Parameters:
uid
-- Returns:
-