...
In portal file browsers, to delete or otherwise update an entity bundle, you must first select the target entity,. From inside a project or folder, there is no quick and convenient way to delete/update multiple files and subfolders, so the aim is to provide a way to bulk select files from within the files browser then select a bulk action to perform on those selected. We introduce a new set of services to provide the mechanism for performing and tracking these jobs. We intend to interface with the already present job tracking widget, which may then be extended for other uses on the portal such as table query tracking.
...
The new classes are:
Request
Requests will have a max bulk operation limit.
Response
Web Services
Action | URI | Method | Request Body | Response Body | Authorization | |
---|---|---|---|---|---|---|
Bulk | Delete/deleteEntitiesGet | /entity/bulk/get/async/start | POST | BulkGetRequest | AsyncJobId | ACCESS_TYPE.READ on each entity in the passed entityList |
Bulk Get Results | /entity/bulk/get/async/get/{asyncToken} | GET | BulkActionEntityResult | |||
Bulk Update | /entity/bulk/update/async/start | POST | List<Entity>BulkUpdateRequest | StringAsyncJobId | ACCESSACCESS_TYPE. | DELETEUPDATE on each entity in the passed entityList |
Get Delete Update Results | /deleteEntitiesentity/bulk/update/async/get/{asyncToken} | GET | BulkEntityResponseBulkUpdateResponse | Asynchronously get the results of a deleteEntities an updateEntities request started with POST /deleteEntitiesentity/bulk/update/async/start Note: When the result is not ready yet, this method will return a status code of 202 (ACCEPTED) and the response body will be a AsynchronousJobStatus object. | ||
Bulk UpdateDelete | /entity/updateEntitiesbulk/delete/async/start | POST | List<Entity>BulkDeleteRequest | StringAsyncJobId | ACCESS ACCESS_TYPE.UPDATE DELETE on each entity in the passed entityList | |
Get Update Delete Results | /entity/bulk/updateEntitiesdelete/async/get/{asyncToken} | GET | BulkEntityResponseBulkDeleteResponse | Asynchronously get the results of an updateEntities a deleteEntities request started with POST /entity/bulk/updateEntitiesdelete/async/start Note: When the result is not ready yet, this method will return a status code of 202 (ACCEPTED) and the response body will be a AsynchronousJobStatus object. |
...
- The web services follow the pattern established by many async table functions in their http method and their URI.The name and structure of the response has had comparably less review than the response.
- It is currently under investigation whether whoever requests the move operation also requires ACCESS_TYPE.UPDATE or other on the parentId in question.
...
- Bundle to update annotations, etc
- Max bulk operation limit