Releases: irods-contrib/irods-rest
4.3.0.1-RC2 with bug fix #69
Fix for bug #69 for testing
4.3.0.1-RC1
This is a provisional build of the REST API using the latest Jargon libraries that can serve as a placeholder as REST is updated to a pure swagger-based implementation.
XML support is removed, this API will be JSON only going forward.
A Docker image is available at diceunc/rest:4.3.0.1-RC1
Test Bug 64
provisional test
4.1.10.0-RC1 Release Candidate
Project: iRODS Rest API
Date: 1/25/2017
Release Version: 4.1.10-0-RC1
Git tag: 4.1.10.0-RC1
Release candidate for REST API including Ticket support
https://github.com/DICE-UNC/irods-rest
iRODS Rest API based on Jargon 4.1.10.0, certified against iRODS 3.0+ as well as iRODS Consortium 4.1.x releases up to 4.1.10, with provisional support for 4.2.x. See included docs folder for comprehensive user documentation and install instructions
See https://github.com/DICE-UNC/irods-rest/issues for support and known issues
Requirements
- Depends on Java 1.8+
- Built using Apache Maven2, see POM for dependencies
Changes
#2 CORS header support
Add support for Cross Origin Resource Sharing through customizable configuration
Add PAM support #6
Add support for PAM authentication through customizable configuration
add temp password for user #10
New /user/userName/temppassword signatures available to obtain a temporary iRODS password, including in admin mode.
use packing i/o for stream performance #14
Added optional use of packing input and output streams for upload and download. This uses a simple read-ahead and write-behind buffer approach to optimize iRODS buffer sizes. The behavior may be controlled by adjusting the configuration property for 'utilizePackingStreams' in RestConfig.
use an etc file for production deployment #30
Added a /etc/irods-ext/irods-rest-properties file that can configure settings, as per the example in the irods-rest project. This allows deployment as a pre-packaged war and configuration and settings will be controlled by these etc properties.
Note that for testing purposes, these properties are generated locally by running mvn install, and the unit tests will refer to the test-irods-rest.properties found in src/test/resources. This also eases integration with Jenkins for CI testing purposes.
add/test PAM login support #31
Added unit test for PAM auth, added a capability to override rest api configs and prepend PAM* or STANDARD* to th euser id
in basic auth to force standard iRODS auth or PAM auth behavior.
See the docs/ section for installation and configuration instructions, as well as notes on using PAM and Standard iRODS Auth.
add ticket support #9
REST API now supports the use of iRODS tickets, allowing anonymous, token based access to iRODS REST resources
Line endings in rules are stripped #54
Added tests for reported rule error (stripping line endings in rule text)
Downloaded files include parameters in name #48
Made sure file name is flattened in content disposition header per user request
Add SSL support for connection to resource server #40
Updated to jargon 4.1.10.0 with SSL support. This necessitates the addition of two new properties in the /etc/irods-ext/irods-rest-properties
# NO_NEGOTIATION, CS_NEG_REFUSE, CS_NEG_REQUIRE, CS_NEG_DONT_CARE
ssl.negotiation.policy=CS_NEG_DONT_CARE
# jargon now supports checksum calculation for streaming uploads. This does not currently verify, but does store if set to true
compute.checksum=false
So those need to be updated on your installation. The compute checksum allows a checksum to be computed on the iRODS server after a file is uploaded, the ssl negotiation policy is used to configure the underlying jargon configuration for ssl negotiation in the same manner that it is set in the irods_environment.json file for icommands.
Docker deploy #60
A currently 'experimental' Docker deploy option was added. This involves a Dockerfile added to the project, along with a 'runit.sh' as the endpoint. The Docker image is alpine:tomcat8. The image mounts the /etc/irods-ext/irods-rest.properties from the host system, as well as an optional cert directory that will cause the import of an SSL cert if you are working with self signed certs. See the Docker.md file for Docker instructions. Please give that a whirl and report results and thoughts.
Test patch for bug #52
Test for fix of bug #52
4.0.2.5-RC1
This is the Release Candidate for the iRODS REST API, version 4.0.2.5-RC1. This is based on Jargon 4.0.2.4-RELEASE, and includes support for iRODS 4.1.7 as well as backwards compatability with iRODS to version 3.3.1
Note that the deployment has changed, consult the docs folder for installation5instructions. Now the REST API may be deployed as a pre-built .war file, and requires an /etc/irods-ext/irods-rest-properties file.
This release features extended GenQuery support as well as support for iRODS Tickets.
Download link: (https://code.renci.org/gf/download/frsrelease/243/2742/irods-rest.war)
Documentation: (https://github.com/DICE-UNC/irods-rest/blob/master/docs/iRODSRESTAPIDocumentation.pdf)
README information:
Project: iRODS Rest API
Date: 11/10/2015
Release Version: 4.0.2.5-RC1
Git tag: 4.0.2.5-RC1
(https://github.com/DICE-UNC/irods-rest)
iRODS Rest API based on Jargon 4.0.2.4, certified against iRODS 3.0+ as well as iRODS Consortium 4.1.x releases up to 4.1.7. See included docs folder for comprehensive user documentation and install instructions
See https://github.com/DICE-UNC/irods-rest/issues for support and known issues
4.0.2.4-RC1
This is the Release Candidate for the iRODS REST API, version 4.0.2.4. This is based on Jargon 4.0.2.4-RC1, and includes support for iRODS 4.1.7 as well as backwards compatability with iRODS to version 3.3.1.
Note that the deployment has changed, consult the docs folder for installation instructions. Now the REST API may be deployed as a pre-built .war file, and requires an /etc/irods-ext/irods-rest-properties file. Additional support for CORS as well as PAM authentication is in this release, as well as iRODS Consortium developed GenQuery services. Many bug fixes are also included in the REST API, as well as the underlying new Jargon Release. Significant upload/download performance improvements are also incorporated!
Download link: here
Documentation: here
README information:
- Project: iRODS Rest API
- Date: 11/10/2015
- Release Version: 4.0.2.4-RC1
- Git tag: 4.0.2.4-RC1
https://github.com/DICE-UNC/irods-rest
iRODS Rest API based on Jargon 4.0.2.4, certified against iRODS 3.0+ as well as iRODS Consortium 4.1.x releases up to 4.1.7. See included docs folder for comprehensive user documentation and install instructions
See https://github.com/DICE-UNC/irods-rest/issues for support and known issues
Requirements
- Depends on Java 1.7+
- Built using Apache Maven2, see POM for dependencies
Bug Fixes
Features
#2 CORS header support
Add support for Cross Origin Resource Sharing through customizable configuration
Add PAM support #6
Add support for PAM authentication through customizable configuration
add temp password for user #10
New /user/userName/temppassword signatures available to obtain a temporary iRODS password, including in admin mode.
use packing i/o for stream performance #14
Added optional use of packing input and output streams for upload and download. This uses a simple read-ahead and write-behind buffer approach to optimize iRODS buffer sizes. The behavior may be controlled by adjusting the configuration property for 'utilizePackingStreams' in RestConfig.
use an etc file for production deployment #30
Added a /etc/irods-ext/irods-rest-properties file that can configure settings, as per the example in the irods-rest project. This allows deployment as a pre-packaged war and configuration and settings will be controlled by these etc properties.
Note that for testing purposes, these properties are generated locally by running mvn install, and the unit tests will refer to the test-irods-rest.properties found in src/test/resources. This also eases integration with Jenkins for CI testing purposes.
add/test PAM login support #31
Added unit test for PAM auth, added a capability to override rest api configs and prepend PAM* or STANDARD* to th euser id
in basic auth to force standard iRODS auth or PAM auth behavior.
See the docs/ section for installation and configuration instructions, as well as notes on using PAM and Standard iRODS Auth.
4.0.2.3-RC1
Release candidate for iRODS REST API, including integration of Jargon 4.0.2.3 RELEASE code, supporting iRODS Server 4.1.3.
- Project: iRODS Rest API
- Date: 6/29/2015
- Release Version: 4.0.2.3-RC1
- Git tag: 4.0.2.3-RC1
https://github.com/DICE-UNC/irods-rest
iRODS Rest API based on Jargon 4.0.2.3, certified against iRODS 3.0+ as well as iRODS Consortium 4.1.x releases. See included docs folder for comprehensive user documentation and install instructions
See https://github.com/DICE-UNC/irods-rest/issues for support and known issues
Requirements
- Depends on Java 1.7+
- Built using Apache Maven2, see POM for dependencies
Bug Fixes
Features
#2 CORS header support
Add support for Cross Origin Resource Sharing through customizable configuration
Add PAM support #6
Add support for PAM authentication through customizable configuration
add temp password for user #10
New /user/userName/temppassword signatures available to obtain a temporary iRODS password, including in admin mode.
use packing i/o for stream performance #14
Added optional use of packing input and output streams for upload and download. This uses a simple read-ahead and write-behind buffer approach to optimize iRODS buffer sizes. The behavior may be controlled by adjusting the configuration property for 'utilizePackingStreams' in RestConfig.
iRODS REST 4.0.2-RELEASE
An initial release of the iRODS REST API is available, using Jargon 4.0.2-RELEASE and provided certified compatability with iRODS 3X and 4X servers.
See the docs at https://github.com/DICE-UNC/irods-rest/blob/master/docs/iRODSRESTAPIDocumentation.pdf for details