This commit is contained in:
Lucio Lelii 2022-03-04 14:51:13 +01:00
parent 4b1b6471ca
commit 0fe819c2ee
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for Common Smartgears # Changelog for Common Smartgears
## [v3.3.0-SNAPSHOT] - 2022-01-19 ## [v3.1.2-SNAPSHOT] - 2022-01-19
- enabled policy check on smartgears - enabled policy check on smartgears
- container configuration for test added - container configuration for test added

View File

@ -11,7 +11,7 @@
<groupId>org.gcube.core</groupId> <groupId>org.gcube.core</groupId>
<artifactId>common-smartgears</artifactId> <artifactId>common-smartgears</artifactId>
<version>3.3.0-SNAPSHOT</version> <version>3.1.2-SNAPSHOT</version>
<name>SmartGears</name> <name>SmartGears</name>
<dependencyManagement> <dependencyManagement>

View File

@ -126,8 +126,8 @@ public class RequestValidator extends RequestHandler {
for (Policy policy: policies) { for (Policy policy: policies) {
log.debug("policy: {}", policy.getPolicyAsString() ); log.debug("policy: {}", policy.getPolicyAsString() );
if (PolicyUtils.isPolicyValidForClient(policy.getServiceAccess(), serviceIdentifier)){ if (PolicyUtils.isPolicyValidForClient(policy.getServiceAccess(), serviceIdentifier)){
log.error("rejecting call to {} : {} is not allowed to contact the service ",context.name(), caller.getClient().getId()); log.error("rejecting call to {} : {} is not allowed to contact the service ",context.name(), caller.getClient().getId());
invalid_request_error.fire("rejecting call to "+context.name()+": "+caller.getClient().getId()+" is not allowed to contact the service"); invalid_request_error.fire("rejecting call to "+context.name()+": "+caller.getClient().getId()+" is not allowed to contact the service: "+serviceIdentifier.getServiceName() );
} }
} }
}catch (Exception e) { }catch (Exception e) {