Class ParaClient
java.lang.Object
com.erudika.para.client.ParaClient
- All Implemented Interfaces:
Closeable
,AutoCloseable
The Java REST client for communicating with a Para API server.
- Author:
- Alex Bogdanovski [[email protected]]
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addAppSetting
(String key, Object value) Adds or overwrites an app-specific setting.addValidationConstraint
(String type, String field, com.erudika.para.core.validation.Constraint c) Add a new constraint for a given field.approximately
(long delta) Returns the number of minutes, hours, months elapsed for a time delta (milliseconds).Returns the map containing app-specific settings.appSettings
(String key) Returns the value of a specific app setting (property).void
close()
Closes the underlying Jersey client and releases resources.countChildren
(com.erudika.para.core.ParaObject obj, String type2) Count the total number of child objects for this object.countLinks
(com.erudika.para.core.ParaObject obj, String type2) Count the total number of links between this object and another type of object.<P extends com.erudika.para.core.ParaObject>
Pcreate
(P obj) Persists an object to the data store.<P extends com.erudika.para.core.ParaObject>
List<P> Saves multiple objects to the data store.<P extends com.erudika.para.core.ParaObject>
voiddelete
(P obj) Deletes an object permanently.void
Deletes multiple objects.void
deleteChildren
(com.erudika.para.core.ParaObject obj, String type2) Deletes all child objects permanently.<P extends com.erudika.para.core.ParaObject>
PSimple id search.<P extends com.erudika.para.core.ParaObject>
List<P> Simple multi id search.<P extends com.erudika.para.core.ParaObject>
List<P> findChildren
(com.erudika.para.core.ParaObject obj, String type2, String query, com.erudika.para.core.utils.Pager... pager) Search through all child objects.<P extends com.erudika.para.core.ParaObject>
List<P> findLinkedObjects
(com.erudika.para.core.ParaObject obj, String type2, String field, String query, com.erudika.para.core.utils.Pager... pager) Searches through all linked objects in many-to-many relationships.<P extends com.erudika.para.core.ParaObject>
List<P> findNearby
(String type, String query, int radius, double lat, double lng, com.erudika.para.core.utils.Pager... pager) Search forAddress
objects in a radius of X km from a given point.<P extends com.erudika.para.core.ParaObject>
List<P> findNestedQuery
(String type, String field, String query, com.erudika.para.core.utils.Pager... pager) Searches within a nested field.<P extends com.erudika.para.core.ParaObject>
List<P> findPrefix
(String type, String field, String prefix, com.erudika.para.core.utils.Pager... pager) Searches for objects that have a property which value starts with a given prefix.<P extends com.erudika.para.core.ParaObject>
List<P> Simple query string search.<P extends com.erudika.para.core.ParaObject>
List<P> findSimilar
(String type, String filterKey, String[] fields, String liketext, com.erudika.para.core.utils.Pager... pager) Searches for objects that have similar property values to a given text.<P extends com.erudika.para.core.ParaObject>
List<P> findTagged
(String type, String[] tags, com.erudika.para.core.utils.Pager... pager) Searches for objects tagged with one or more tags.<P extends com.erudika.para.core.ParaObject>
List<P> Searches forTag
objects.<P extends com.erudika.para.core.ParaObject>
List<P> findTermInList
(String type, String field, List<String> terms, com.erudika.para.core.utils.Pager... pager) Searches for objects having a property value that is in list of possible values.<P extends com.erudika.para.core.ParaObject>
List<P> findTerms
(String type, Map<String, ?> terms, boolean matchAll, com.erudika.para.core.utils.Pager... pager) Searches for objects that have properties matching some given values.<P extends com.erudika.para.core.ParaObject>
List<P> findWildcard
(String type, String field, String wildcard, com.erudika.para.core.utils.Pager... pager) Searches for objects that have a property with a value matching a wildcard query.formatDate
(String format, Locale loc) Formats a date in a specific format.Returns the JWT access token if any.Returns the API request path.com.erudika.para.core.App
getApp()
Returns theApp
for the current access key (appid).<P extends com.erudika.para.core.ParaObject>
List<P> getChildren
(com.erudika.para.core.ParaObject obj, String type2, com.erudika.para.core.utils.Pager... pager) Returns all child objects linked to this object.<P extends com.erudika.para.core.ParaObject>
List<P> getChildren
(com.erudika.para.core.ParaObject obj, String type2, String field, String term, com.erudika.para.core.utils.Pager... pager) Returns all child objects linked to this object.int
Returns the batch chunk size.Counts indexed objects.Counts indexed objects matching a set of terms/values.Returns the endpoint URL.<P extends com.erudika.para.core.ParaObject>
List<P> Converts a list of Maps to a List of ParaObjects, at a given path within the JSON tree structure.<P extends com.erudika.para.core.ParaObject>
List<P> getItemsFromList
(List<?> result) Deserializes ParaObjects from a JSON array (the "items:[]" field in search results).<P extends com.erudika.para.core.ParaObject>
List<P> getLinkedObjects
(com.erudika.para.core.ParaObject obj, String type2, com.erudika.para.core.utils.Pager... pager) Returns all objects linked to the given one.Returns the Para server version.long
Returns the current timestamp.grantResourcePermission
(String subjectid, String resourcePath, EnumSet<com.erudika.para.core.App.AllowedMethods> permission) Grants a permission to a subject that allows them to call the specified HTTP methods on a given resource.grantResourcePermission
(String subjectid, String resourcePath, EnumSet<com.erudika.para.core.App.AllowedMethods> permission, boolean allowGuestAccess) Grants a permission to a subject that allows them to call the specified HTTP methods on a given resource.<T> T
invokeDelete
(String resourcePath, jakarta.ws.rs.core.MultivaluedMap<String, String> params, Class<?> returnType) Invoke a DELETE request to the Para API.<T> T
invokeGet
(String resourcePath, jakarta.ws.rs.core.MultivaluedMap<String, String> params, Class<?> returnType) Invoke a GET request to the Para API.<T> T
invokePatch
(String resourcePath, Object entity, Class<?> returnType) Invoke a PATCH request to the Para API.<T> T
invokePost
(String resourcePath, Object entity, Class<?> returnType) Invoke a POST request to the Para API.<T> T
Invoke a PUT request to the Para API.boolean
isAllowedTo
(String subjectid, String resourcePath, String httpMethod) Checks if a subject is allowed to call method X on resource Y.boolean
isLinked
(com.erudika.para.core.ParaObject obj, com.erudika.para.core.ParaObject toObj) Checks if a given object is linked to this one.boolean
Checks if this object is linked to another.Links an object to this one in a many-to-many relationship.<P extends com.erudika.para.core.ParaObject>
List<P> Returns a list all objects found for the given type.markdownToHtml
(String markdownString) Converts Markdown to HTML.<P extends com.erudika.para.core.ParaObject>
Pme()
Returns aUser
or anApp
that is currently authenticated.<P extends com.erudika.para.core.ParaObject>
PVerifies a given JWT and returns the authenticated subject.newId()
Generates a new unique id.newKeys()
Generates a new set of access/secret keys.Converts spaces to dashes.pagerToParams
(com.erudika.para.core.utils.Pager... pager) Converts aPager
object to query parameters.<P extends com.erudika.para.core.ParaObject>
PRetrieves an object from the data store.<P extends com.erudika.para.core.ParaObject>
PRetrieves an object from the data store.<P extends com.erudika.para.core.ParaObject>
List<P> Retrieves multiple objects from the data store.<T extends com.erudika.para.core.ParaObject>
voidreadEverything
(Function<com.erudika.para.core.utils.Pager, List<T>> paginatingFunc) Paginates through all objects and executes the provided function on the results.<T extends com.erudika.para.core.ParaObject>
voidreadEverything
(Function<com.erudika.para.core.utils.Pager, List<T>> paginatingFunc, int pageSize) Paginates through all objects and executes the provided function on the results.Rebuilds the entire search index.rebuildIndex
(String destinationIndex) Rebuilds the entire search index.void
removeAppSetting
(String key) Removes an app-specific setting.removeValidationConstraint
(String type, String field, String constraintName) Removes a validation constraint for a given field.Returns the permissions for all subjects and resources for current app.resourcePermissions
(String subjectid) Returns only the permissions for a given subject (user) of the current app.revokeAllResourcePermissions
(String subjectid) Revokes all permission for a subject.boolean
Revokes all user tokens for a given user id.revokeResourcePermission
(String subjectid, String resourcePath) Revokes a permission for a subject, meaning they no longer will be able to access the given resource.void
setAccessToken
(String token) Sets the JWT access token.void
setApiPath
(String path) Sets the API request path.void
setAppSettings
(Map<?, ?> settings) Overwrites all app-specific settings.void
setChunkSize
(int chunkSize) Sets the chunk size for batch CRUD operations.void
setEndpoint
(String endpoint) Sets the host URL of the Para server.com.erudika.para.core.User
Takes an identity provider access token and fetches the user data from that provider.com.erudika.para.core.User
Takes an identity provider access token and fetches the user data from that provider.void
signOut()
Clears the JWT access token but token is not revoked.stripAndTrim
(String str) Strips all symbols, punctuation, whitespace and control chars from a string.void
throwExceptionOnHTTPError
(boolean enabled) Enable/disable exception throwing in ParaClient.types()
Returns all registered types for this App.Returns the number of objects for each existing type in this App.void
Unlinks an object from this one.void
unlinkAll
(com.erudika.para.core.ParaObject obj) Unlinks all objects that are linked to this one.<P extends com.erudika.para.core.ParaObject>
Pupdate
(P obj) Updates an object permanently.<P extends com.erudika.para.core.ParaObject>
List<P> Updates multiple objects.<T extends com.erudika.para.core.ParaObject>
voidupdateAllPartially
(BiFunction<List<Map<String, Object>>, com.erudika.para.core.utils.Pager, List<T>> paginatingFunc) Performs a partial batch update on all objects of given type.<T extends com.erudika.para.core.ParaObject>
voidupdateAllPartially
(BiFunction<List<Map<String, Object>>, com.erudika.para.core.utils.Pager, List<T>> paginatingFunc, int pageSize, int updateBatchSize) Performs a partial batch update on all objects of given type.Returns the validation constraints map.validationConstraints
(String type) Returns the validation constraints map.boolean
Downvote an object and register the vote in DB.boolean
voteDown
(com.erudika.para.core.ParaObject obj, String voterid, Integer expiresAfter, Integer lockedAfter) Downvote an object and register the vote in DB.boolean
Upvote an object and register the vote in DB.boolean
voteUp
(com.erudika.para.core.ParaObject obj, String voterid, Integer expiresAfter, Integer lockedAfter) Upvote an object and register the vote in DB.
-
Constructor Details
-
ParaClient
-
-
Method Details
-
setEndpoint
Sets the host URL of the Para server.- Parameters:
endpoint
- the Para server location
-
close
public void close()Closes the underlying Jersey client and releases resources.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-
getApp
public com.erudika.para.core.App getApp()Returns theApp
for the current access key (appid).- Returns:
- the App object
-
getEndpoint
-
setApiPath
-
getApiPath
Returns the API request path.- Returns:
- the request path without parameters
-
getAccessToken
Returns the JWT access token if any.- Returns:
- the JWT access token, or null if not signed in
-
getServerVersion
Returns the Para server version.- Returns:
- the version of Para server
-
setAccessToken
Sets the JWT access token.- Parameters:
token
- a valid token
-
setChunkSize
public void setChunkSize(int chunkSize) Sets the chunk size for batch CRUD operations. If chunkSize is greater than zero, any requests made to createAll(), readAll(), updateAll() and deleteAll() will be partitioned into chunks equal to this size. The chunked requests made to Para Server will be executed synchronously, and the results of all chunk operations are aggregated into a single response.- Parameters:
chunkSize
- the number of objects per chunk
-
getChunkSize
public int getChunkSize()Returns the batch chunk size.- Returns:
- the chunk size used for batch CRUD operations
-
throwExceptionOnHTTPError
public void throwExceptionOnHTTPError(boolean enabled) Enable/disable exception throwing in ParaClient.- Parameters:
enabled
- if true, the client will throw an exception when an error response is received. If false, the error is only logged. Default is false.
-
invokeGet
public <T> T invokeGet(String resourcePath, jakarta.ws.rs.core.MultivaluedMap<String, String> params, Class<?> returnType) Invoke a GET request to the Para API.- Type Parameters:
T
- return type- Parameters:
resourcePath
- the subpath after '/v1/', should not start with '/'params
- query parametersreturnType
- the type of object to return- Returns:
- a POJO
-
invokePost
Invoke a POST request to the Para API.- Type Parameters:
T
- return type- Parameters:
resourcePath
- the subpath after '/v1/', should not start with '/'entity
- request bodyreturnType
- the type of object to return- Returns:
- a POJO
-
invokePut
Invoke a PUT request to the Para API.- Type Parameters:
T
- return type- Parameters:
resourcePath
- the subpath after '/v1/', should not start with '/'entity
- request bodyreturnType
- the type of object to return- Returns:
- a POJO
-
invokePatch
Invoke a PATCH request to the Para API.- Type Parameters:
T
- return type- Parameters:
resourcePath
- the subpath after '/v1/', should not start with '/'entity
- request bodyreturnType
- the type of object to return- Returns:
- a POJO
-
invokeDelete
public <T> T invokeDelete(String resourcePath, jakarta.ws.rs.core.MultivaluedMap<String, String> params, Class<?> returnType) Invoke a DELETE request to the Para API.- Type Parameters:
T
- return type- Parameters:
resourcePath
- the subpath after '/v1/', should not start with '/'params
- query parametersreturnType
- the type of object to return- Returns:
- a POJO
-
pagerToParams
-
getItemsFromList
-
getItems
public <P extends com.erudika.para.core.ParaObject> List<P> getItems(String at, Map<String, Object> result, com.erudika.para.core.utils.Pager... pager) Converts a list of Maps to a List of ParaObjects, at a given path within the JSON tree structure.- Type Parameters:
P
- type- Parameters:
at
- the path (field) where the array of objects is locatedresult
- the response body for an API requestpager
- aPager
object- Returns:
- a list of ParaObjects
-
create
public <P extends com.erudika.para.core.ParaObject> P create(P obj) Persists an object to the data store. If the object's type and id are given, then the request will be aPUT
request and any existing object will be overwritten.- Type Parameters:
P
- the type of object- Parameters:
obj
- the domain object- Returns:
- the same object with assigned id or null if not created.
-
read
-
read
Retrieves an object from the data store.- Type Parameters:
P
- the type of object- Parameters:
id
- the id of the object- Returns:
- the retrieved object or null if not found
-
update
public <P extends com.erudika.para.core.ParaObject> P update(P obj) Updates an object permanently. Supports partial updates.- Type Parameters:
P
- the type of object- Parameters:
obj
- the object to update- Returns:
- the updated object
-
delete
public <P extends com.erudika.para.core.ParaObject> void delete(P obj) Deletes an object permanently.- Type Parameters:
P
- the type of object- Parameters:
obj
- the object
-
createAll
-
readAll
-
updateAll
-
deleteAll
-
list
public <P extends com.erudika.para.core.ParaObject> List<P> list(String type, com.erudika.para.core.utils.Pager... pager) Returns a list all objects found for the given type. The result is paginated so only one page of items is returned, at a time.- Type Parameters:
P
- the type of object- Parameters:
type
- the type of objects to search forpager
- aPager
- Returns:
- a list of objects
-
findById
Simple id search.- Type Parameters:
P
- type of the object- Parameters:
id
- the id- Returns:
- the object if found or null
-
findByIds
-
findNearby
public <P extends com.erudika.para.core.ParaObject> List<P> findNearby(String type, String query, int radius, double lat, double lng, com.erudika.para.core.utils.Pager... pager) Search forAddress
objects in a radius of X km from a given point.- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
query
- the query stringradius
- the radius of the search circlelat
- latitudelng
- longitudepager
- aPager
- Returns:
- a list of objects found
-
findPrefix
public <P extends com.erudika.para.core.ParaObject> List<P> findPrefix(String type, String field, String prefix, com.erudika.para.core.utils.Pager... pager) Searches for objects that have a property which value starts with a given prefix.- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
field
- the property name of an objectprefix
- the prefixpager
- aPager
- Returns:
- a list of objects found
-
findQuery
public <P extends com.erudika.para.core.ParaObject> List<P> findQuery(String type, String query, com.erudika.para.core.utils.Pager... pager) Simple query string search. This is the basic search method.- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
query
- the query stringpager
- aPager
- Returns:
- a list of objects found
-
findNestedQuery
public <P extends com.erudika.para.core.ParaObject> List<P> findNestedQuery(String type, String field, String query, com.erudika.para.core.utils.Pager... pager) Searches within a nested field. The objects of the given type must contain a nested field "nstd".- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
field
- the name of the field to target (within a nested field "nstd")query
- the query stringpager
- aPager
- Returns:
- a list of objects found
-
findSimilar
public <P extends com.erudika.para.core.ParaObject> List<P> findSimilar(String type, String filterKey, String[] fields, String liketext, com.erudika.para.core.utils.Pager... pager) Searches for objects that have similar property values to a given text. A "find like this" query.- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
filterKey
- exclude an object with this key from the results (optional)fields
- a list of property namesliketext
- text to compare topager
- aPager
- Returns:
- a list of objects found
-
findTagged
public <P extends com.erudika.para.core.ParaObject> List<P> findTagged(String type, String[] tags, com.erudika.para.core.utils.Pager... pager) Searches for objects tagged with one or more tags.- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
tags
- the list of tagspager
- aPager
- Returns:
- a list of objects found
-
findTags
public <P extends com.erudika.para.core.ParaObject> List<P> findTags(String keyword, com.erudika.para.core.utils.Pager... pager) Searches forTag
objects. This method might be deprecated in the future.- Type Parameters:
P
- type of the object- Parameters:
keyword
- the tag keyword to search forpager
- aPager
- Returns:
- a list of objects found
-
findTermInList
public <P extends com.erudika.para.core.ParaObject> List<P> findTermInList(String type, String field, List<String> terms, com.erudika.para.core.utils.Pager... pager) Searches for objects having a property value that is in list of possible values.- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
field
- the property name of an objectterms
- a list of terms (property values)pager
- aPager
- Returns:
- a list of objects found
-
findTerms
public <P extends com.erudika.para.core.ParaObject> List<P> findTerms(String type, Map<String, ?> terms, boolean matchAll, com.erudika.para.core.utils.Pager... pager) Searches for objects that have properties matching some given values. A terms query.- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
terms
- a map of fields (property names) to terms (property values)matchAll
- match all terms. If true - AND search, if false - OR searchpager
- aPager
- Returns:
- a list of objects found
-
findWildcard
public <P extends com.erudika.para.core.ParaObject> List<P> findWildcard(String type, String field, String wildcard, com.erudika.para.core.utils.Pager... pager) Searches for objects that have a property with a value matching a wildcard query.- Type Parameters:
P
- type of the object- Parameters:
type
- the type of object to search for. SeeParaObject.getType()
field
- the property name of an objectwildcard
- wildcard query string. For example "cat*".pager
- aPager
- Returns:
- a list of objects found
-
getCount
-
getCount
-
countLinks
-
getLinkedObjects
public <P extends com.erudika.para.core.ParaObject> List<P> getLinkedObjects(com.erudika.para.core.ParaObject obj, String type2, com.erudika.para.core.utils.Pager... pager) Returns all objects linked to the given one. Only applicable to many-to-many relationships.- Type Parameters:
P
- type of linked objects- Parameters:
obj
- the object to execute this method ontype2
- type of linked objects to search forpager
- aPager
- Returns:
- a list of linked objects
-
findLinkedObjects
public <P extends com.erudika.para.core.ParaObject> List<P> findLinkedObjects(com.erudika.para.core.ParaObject obj, String type2, String field, String query, com.erudika.para.core.utils.Pager... pager) Searches through all linked objects in many-to-many relationships.- Type Parameters:
P
- type of linked objects- Parameters:
obj
- the object to execute this method ontype2
- type of linked objects to search forfield
- the name of the field to target (within a nested field "nstd")query
- a query stringpager
- aPager
- Returns:
- a list of linked objects matching the search query
-
isLinked
-
isLinked
public boolean isLinked(com.erudika.para.core.ParaObject obj, com.erudika.para.core.ParaObject toObj) Checks if a given object is linked to this one.- Parameters:
obj
- the object to execute this method ontoObj
- the other object- Returns:
- true if linked
-
link
Links an object to this one in a many-to-many relationship. Only a link is created. Objects are left untouched. The type of the second object is automatically determined on read.- Parameters:
obj
- the object to execute this method onid2
- link to the object with this id- Returns:
- the id of the
Linker
object that is created
-
unlink
-
unlinkAll
public void unlinkAll(com.erudika.para.core.ParaObject obj) Unlinks all objects that are linked to this one.- Parameters:
obj
- the object to execute this method on OnlyLinker
objects are deleted.ParaObject
s are left untouched.
-
countChildren
-
getChildren
public <P extends com.erudika.para.core.ParaObject> List<P> getChildren(com.erudika.para.core.ParaObject obj, String type2, com.erudika.para.core.utils.Pager... pager) Returns all child objects linked to this object.- Type Parameters:
P
- the type of children- Parameters:
obj
- the object to execute this method ontype2
- the type of children to look forpager
- aPager
- Returns:
- a list of
ParaObject
in a one-to-many relationship with this object
-
getChildren
public <P extends com.erudika.para.core.ParaObject> List<P> getChildren(com.erudika.para.core.ParaObject obj, String type2, String field, String term, com.erudika.para.core.utils.Pager... pager) Returns all child objects linked to this object.- Type Parameters:
P
- the type of children- Parameters:
obj
- the object to execute this method ontype2
- the type of children to look forfield
- the field name to use as filterterm
- the field value to use as filterpager
- aPager
- Returns:
- a list of
ParaObject
in a one-to-many relationship with this object
-
findChildren
public <P extends com.erudika.para.core.ParaObject> List<P> findChildren(com.erudika.para.core.ParaObject obj, String type2, String query, com.erudika.para.core.utils.Pager... pager) Search through all child objects. Only searches child objects directly connected to this parent via theparentid
field.- Type Parameters:
P
- the type of children- Parameters:
obj
- the object to execute this method ontype2
- the type of children to look forquery
- a query stringpager
- aPager
- Returns:
- a list of
ParaObject
in a one-to-many relationship with this object
-
deleteChildren
Deletes all child objects permanently.- Parameters:
obj
- the object to execute this method ontype2
- the children's type.
-
newId
-
getTimestamp
public long getTimestamp()Returns the current timestamp.- Returns:
- a long number
-
formatDate
-
noSpaces
-
stripAndTrim
-
markdownToHtml
-
approximately
Returns the number of minutes, hours, months elapsed for a time delta (milliseconds).- Parameters:
delta
- the time delta between two events, in milliseconds- Returns:
- a string like "5m", "1h"
-
newKeys
-
types
-
typesCount
-
me
public <P extends com.erudika.para.core.ParaObject> P me()Returns aUser
or anApp
that is currently authenticated.- Type Parameters:
P
- an App or User- Returns:
- a
User
or anApp
-
me
Verifies a given JWT and returns the authenticated subject. This request will not remember the JWT in memory.- Type Parameters:
P
- an App or User- Parameters:
accessToken
- a valid JWT access token- Returns:
- a
User
or anApp
-
voteUp
Upvote an object and register the vote in DB.- Parameters:
obj
- the object to receive +1 votesvoterid
- the userid of the voter- Returns:
- true if vote was successful
-
voteUp
public boolean voteUp(com.erudika.para.core.ParaObject obj, String voterid, Integer expiresAfter, Integer lockedAfter) Upvote an object and register the vote in DB.- Parameters:
obj
- the object to receive +1 votesvoterid
- the userid of the voterexpiresAfter
- expires after secondslockedAfter
- locked after seconds- Returns:
- true if vote was successful
-
voteDown
Downvote an object and register the vote in DB.- Parameters:
obj
- the object to receive -1 votesvoterid
- the userid of the voter- Returns:
- true if vote was successful
-
voteDown
public boolean voteDown(com.erudika.para.core.ParaObject obj, String voterid, Integer expiresAfter, Integer lockedAfter) Downvote an object and register the vote in DB.- Parameters:
obj
- the object to receive -1 votesvoterid
- the userid of the voterexpiresAfter
- expires after secondslockedAfter
- locked after seconds- Returns:
- true if vote was successful
-
rebuildIndex
-
rebuildIndex
-
validationConstraints
-
validationConstraints
-
addValidationConstraint
public Map<String,Map<String, addValidationConstraintMap<String, Map<String, ?>>>> (String type, String field, com.erudika.para.core.validation.Constraint c) Add a new constraint for a given field.- Parameters:
type
- a typefield
- a field namec
- the constraint- Returns:
- a map containing all validation constraints for this type.
-
removeValidationConstraint
public Map<String,Map<String, removeValidationConstraintMap<String, Map<String, ?>>>> (String type, String field, String constraintName) Removes a validation constraint for a given field.- Parameters:
type
- a typefield
- a field nameconstraintName
- the name of the constraint to remove- Returns:
- a map containing all validation constraints for this type.
-
resourcePermissions
-
resourcePermissions
-
grantResourcePermission
public Map<String,Map<String, grantResourcePermissionList<String>>> (String subjectid, String resourcePath, EnumSet<com.erudika.para.core.App.AllowedMethods> permission) Grants a permission to a subject that allows them to call the specified HTTP methods on a given resource.- Parameters:
subjectid
- subject id (user id)resourcePath
- resource path or object typepermission
- a set of HTTP methods- Returns:
- a map of the permissions for this subject id
-
grantResourcePermission
public Map<String,Map<String, grantResourcePermissionList<String>>> (String subjectid, String resourcePath, EnumSet<com.erudika.para.core.App.AllowedMethods> permission, boolean allowGuestAccess) Grants a permission to a subject that allows them to call the specified HTTP methods on a given resource.- Parameters:
subjectid
- subject id (user id)resourcePath
- resource path or object typepermission
- a set of HTTP methodsallowGuestAccess
- if true - all unauthenticated requests will go through, 'false' by default.- Returns:
- a map of the permissions for this subject id
-
revokeResourcePermission
public Map<String,Map<String, revokeResourcePermissionList<String>>> (String subjectid, String resourcePath) Revokes a permission for a subject, meaning they no longer will be able to access the given resource.- Parameters:
subjectid
- subject id (user id)resourcePath
- resource path or object type- Returns:
- a map of the permissions for this subject id
-
revokeAllResourcePermissions
-
isAllowedTo
-
appSettings
-
appSettings
-
addAppSetting
-
setAppSettings
Overwrites all app-specific settings.- Parameters:
settings
- a key-value map of properties
-
removeAppSetting
-
signIn
public com.erudika.para.core.User signIn(String provider, String providerToken, boolean rememberJWT) Takes an identity provider access token and fetches the user data from that provider. A newUser
object is created if that user doesn't exist. Access tokens are returned upon successful authentication using one of the SDKs from Facebook, Google, Twitter, etc. Note: Twitter uses OAuth 1 and gives you a token and a token secret. You must concatenate them like this:{oauth_token}:{oauth_token_secret}
and use that as the provider access token.- Parameters:
provider
- identity provider, e.g. 'facebook', 'google'...providerToken
- access token from a provider like Facebook, Google, TwitterrememberJWT
- it true the access token returned by Para will be stored locally and available throughgetAccessToken()
- Returns:
- a
User
object or null if something failed. The JWT is available on the returned User object viaUser.getPassword()
.
-
signIn
Takes an identity provider access token and fetches the user data from that provider.- Parameters:
provider
- identity provider, e.g. 'facebook', 'google'...providerToken
- access token from a provider like Facebook, Google, Twitter- Returns:
- a
User
object or null if something failed - See Also:
-
signOut
public void signOut()Clears the JWT access token but token is not revoked. Tokens can be revoked globally per user withrevokeAllTokens()
. -
revokeAllTokens
public boolean revokeAllTokens()Revokes all user tokens for a given user id. This would be equivalent to "logout everywhere". Note: Generating a new API secret on the server will also invalidate all client tokens. Requires a valid existing token.- Returns:
- true if successful
-
readEverything
public <T extends com.erudika.para.core.ParaObject> void readEverything(Function<com.erudika.para.core.utils.Pager, List<T>> paginatingFunc) Paginates through all objects and executes the provided function on the results.- Type Parameters:
T
- type of object- Parameters:
paginatingFunc
- paginating function
-
readEverything
public <T extends com.erudika.para.core.ParaObject> void readEverything(Function<com.erudika.para.core.utils.Pager, List<T>> paginatingFunc, int pageSize) Paginates through all objects and executes the provided function on the results.- Type Parameters:
T
- type of object- Parameters:
paginatingFunc
- paginating functionpageSize
- page size for pager (pager.limit)
-
updateAllPartially
public <T extends com.erudika.para.core.ParaObject> void updateAllPartially(BiFunction<List<Map<String, Object>>, com.erudika.para.core.utils.Pager, List<T>> paginatingFunc) Performs a partial batch update on all objects of given type. This method encapsulates the specific logic for performing the batch update safely because updating while searching for objects can lead to bugs due to the fact that _docid values change on each update call.- Type Parameters:
T
- type of object- Parameters:
paginatingFunc
- paginating function
-
updateAllPartially
public <T extends com.erudika.para.core.ParaObject> void updateAllPartially(BiFunction<List<Map<String, Object>>, com.erudika.para.core.utils.Pager, List<T>> paginatingFunc, int pageSize, int updateBatchSize) Performs a partial batch update on all objects of given type. This method encapsulates the specific logic for performing the batch update safely because updating while searching for objects can lead to bugs due to the fact that _docid values change on each update call.- Type Parameters:
T
- type of object- Parameters:
paginatingFunc
- paginating function which returns a list of objectpageSize
- page size for pager (pager.limit)updateBatchSize
- batch size for updating objects
-