Skip to content

Commit b246341

Browse files
authored
Silently ignore content on APIs that don't require it (#639)
Signed-off-by: Daniel Widdis <[email protected]>
1 parent 28cf793 commit b246341

11 files changed

+26
-100
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
1616
### Features
1717
### Enhancements
1818
### Bug Fixes
19+
### Bug Fixes
20+
- Silently ignore content on APIs that don't require it ([#639](https://github.com/opensearch-project/flow-framework/pull/639))
21+
1922
### Infrastructure
2023
### Documentation
2124
### Maintenance

src/main/java/org/opensearch/flowframework/rest/RestDeleteWorkflowAction.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ protected BaseRestHandler.RestChannelConsumer prepareRequest(RestRequest request
6969
RestStatus.FORBIDDEN
7070
);
7171
}
72-
// Validate content
73-
if (request.hasContent()) {
74-
// BaseRestHandler will give appropriate error message
75-
return channel -> channel.sendResponse(null);
76-
}
72+
73+
// Always consume content to silently ignore it
74+
// https://github.com/opensearch-project/flow-framework/issues/578
75+
request.content();
76+
7777
// Validate params
7878
if (workflowId == null) {
7979
throw new FlowFrameworkException("workflow_id cannot be null", RestStatus.BAD_REQUEST);

src/main/java/org/opensearch/flowframework/rest/RestDeprovisionWorkflowAction.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,11 @@ protected BaseRestHandler.RestChannelConsumer prepareRequest(RestRequest request
6464
RestStatus.FORBIDDEN
6565
);
6666
}
67-
// Validate content
68-
if (request.hasContent()) {
69-
throw new FlowFrameworkException("deprovision request should have no payload", RestStatus.BAD_REQUEST);
70-
}
67+
68+
// Always consume content to silently ignore it
69+
// https://github.com/opensearch-project/flow-framework/issues/578
70+
request.content();
71+
7172
// Validate params
7273
if (workflowId == null) {
7374
throw new FlowFrameworkException("workflow_id cannot be null", RestStatus.BAD_REQUEST);

src/main/java/org/opensearch/flowframework/rest/RestGetWorkflowAction.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ protected BaseRestHandler.RestChannelConsumer prepareRequest(RestRequest request
6969
RestStatus.FORBIDDEN
7070
);
7171
}
72-
// Validate content
73-
if (request.hasContent()) {
74-
// BaseRestHandler will give appropriate error message
75-
return channel -> channel.sendResponse(null);
76-
}
72+
73+
// Always consume content to silently ignore it
74+
// https://github.com/opensearch-project/flow-framework/issues/578
75+
request.content();
76+
7777
// Validate params
7878
if (workflowId == null) {
7979
throw new FlowFrameworkException("workflow_id cannot be null", RestStatus.BAD_REQUEST);

src/main/java/org/opensearch/flowframework/rest/RestGetWorkflowStateAction.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,10 @@ protected BaseRestHandler.RestChannelConsumer prepareRequest(RestRequest request
6666
);
6767
}
6868

69-
// Validate content
70-
if (request.hasContent()) {
71-
// BaseRestHandler will give appropriate error message
72-
return channel -> channel.sendResponse(null);
73-
}
69+
// Always consume content to silently ignore it
70+
// https://github.com/opensearch-project/flow-framework/issues/578
71+
request.content();
72+
7473
// Validate params
7574
if (workflowId == null) {
7675
throw new FlowFrameworkException("workflow_id cannot be null", RestStatus.BAD_REQUEST);

src/main/java/org/opensearch/flowframework/rest/RestGetWorkflowStepAction.java

+4
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ protected RestChannelConsumer prepareRequest(RestRequest request, NodeClient cli
7171
);
7272
}
7373

74+
// Always consume content to silently ignore it
75+
// https://github.com/opensearch-project/flow-framework/issues/578
76+
request.content();
77+
7478
Map<String, String> params = request.hasParam(WORKFLOW_STEP)
7579
? Map.of(WORKFLOW_STEP, request.param(WORKFLOW_STEP))
7680
: Collections.emptyMap();

src/test/java/org/opensearch/flowframework/rest/RestDeleteWorkflowActionTests.java

-15
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
package org.opensearch.flowframework.rest;
1010

1111
import org.opensearch.client.node.NodeClient;
12-
import org.opensearch.core.common.bytes.BytesArray;
1312
import org.opensearch.core.rest.RestStatus;
14-
import org.opensearch.core.xcontent.MediaTypeRegistry;
1513
import org.opensearch.flowframework.common.FlowFrameworkSettings;
1614
import org.opensearch.rest.RestHandler;
1715
import org.opensearch.rest.RestRequest;
@@ -55,19 +53,6 @@ public void testRestDeleteWorkflowActionRoutes() {
5553
assertEquals(this.getPath, routes.get(0).getPath());
5654
}
5755

58-
public void testInvalidRequestWithContent() {
59-
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.DELETE)
60-
.withPath(this.getPath)
61-
.withContent(new BytesArray("request body"), MediaTypeRegistry.JSON)
62-
.build();
63-
64-
FakeRestChannel channel = new FakeRestChannel(request, false, 1);
65-
IllegalArgumentException ex = expectThrows(IllegalArgumentException.class, () -> {
66-
restDeleteWorkflowAction.handleRequest(request, channel, nodeClient);
67-
});
68-
assertEquals("request [DELETE /_plugins/_flow_framework/workflow/{workflow_id}] does not support having a body", ex.getMessage());
69-
}
70-
7156
public void testNullWorkflowId() throws Exception {
7257

7358
// Request with no params

src/test/java/org/opensearch/flowframework/rest/RestDeprovisionWorkflowActionTests.java

-18
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
package org.opensearch.flowframework.rest;
1010

1111
import org.opensearch.client.node.NodeClient;
12-
import org.opensearch.core.common.bytes.BytesArray;
1312
import org.opensearch.core.rest.RestStatus;
14-
import org.opensearch.core.xcontent.MediaTypeRegistry;
1513
import org.opensearch.flowframework.common.FlowFrameworkSettings;
1614
import org.opensearch.rest.RestHandler.Route;
1715
import org.opensearch.rest.RestRequest;
@@ -71,22 +69,6 @@ public void testNullWorkflowId() throws Exception {
7169
assertTrue(channel.capturedResponse().content().utf8ToString().contains("workflow_id cannot be null"));
7270
}
7371

74-
public void testInvalidRequestWithContent() {
75-
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.POST)
76-
.withPath(this.deprovisionWorkflowPath)
77-
.withContent(new BytesArray("request body"), MediaTypeRegistry.JSON)
78-
.build();
79-
80-
FakeRestChannel channel = new FakeRestChannel(request, false, 1);
81-
IllegalArgumentException ex = expectThrows(IllegalArgumentException.class, () -> {
82-
deprovisionWorkflowRestAction.handleRequest(request, channel, nodeClient);
83-
});
84-
assertEquals(
85-
"request [POST /_plugins/_flow_framework/workflow/{workflow_id}/_deprovision] does not support having a body",
86-
ex.getMessage()
87-
);
88-
}
89-
9072
public void testFeatureFlagNotEnabled() throws Exception {
9173
when(flowFrameworkFeatureEnabledSetting.isFlowFrameworkEnabled()).thenReturn(false);
9274
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.POST)

src/test/java/org/opensearch/flowframework/rest/RestGetWorkflowActionTests.java

-15
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
package org.opensearch.flowframework.rest;
1010

1111
import org.opensearch.client.node.NodeClient;
12-
import org.opensearch.core.common.bytes.BytesArray;
1312
import org.opensearch.core.rest.RestStatus;
14-
import org.opensearch.core.xcontent.MediaTypeRegistry;
1513
import org.opensearch.flowframework.common.FlowFrameworkSettings;
1614
import org.opensearch.rest.RestHandler;
1715
import org.opensearch.rest.RestRequest;
@@ -55,19 +53,6 @@ public void testRestGetWorkflowActionRoutes() {
5553
assertEquals(this.getPath, routes.get(0).getPath());
5654
}
5755

58-
public void testInvalidRequestWithContent() {
59-
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.GET)
60-
.withPath(this.getPath)
61-
.withContent(new BytesArray("request body"), MediaTypeRegistry.JSON)
62-
.build();
63-
64-
FakeRestChannel channel = new FakeRestChannel(request, false, 1);
65-
IllegalArgumentException ex = expectThrows(IllegalArgumentException.class, () -> {
66-
restGetWorkflowAction.handleRequest(request, channel, nodeClient);
67-
});
68-
assertEquals("request [GET /_plugins/_flow_framework/workflow/{workflow_id}] does not support having a body", ex.getMessage());
69-
}
70-
7156
public void testNullWorkflowId() throws Exception {
7257

7358
// Request with no params

src/test/java/org/opensearch/flowframework/rest/RestGetWorkflowStateActionTests.java

-18
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
package org.opensearch.flowframework.rest;
1010

1111
import org.opensearch.client.node.NodeClient;
12-
import org.opensearch.core.common.bytes.BytesArray;
1312
import org.opensearch.core.rest.RestStatus;
14-
import org.opensearch.core.xcontent.MediaTypeRegistry;
1513
import org.opensearch.flowframework.common.FlowFrameworkSettings;
1614
import org.opensearch.rest.RestHandler;
1715
import org.opensearch.rest.RestRequest;
@@ -75,22 +73,6 @@ public void testNullWorkflowId() throws Exception {
7573
assertTrue(channel.capturedResponse().content().utf8ToString().contains("workflow_id cannot be null"));
7674
}
7775

78-
public void testInvalidRequestWithContent() {
79-
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.GET)
80-
.withPath(this.getPath)
81-
.withContent(new BytesArray("request body"), MediaTypeRegistry.JSON)
82-
.build();
83-
84-
FakeRestChannel channel = new FakeRestChannel(request, false, 1);
85-
IllegalArgumentException ex = expectThrows(IllegalArgumentException.class, () -> {
86-
restGetWorkflowStateAction.handleRequest(request, channel, nodeClient);
87-
});
88-
assertEquals(
89-
"request [GET /_plugins/_flow_framework/workflow/{workflow_id}/_status] does not support having a body",
90-
ex.getMessage()
91-
);
92-
}
93-
9476
public void testFeatureFlagNotEnabled() throws Exception {
9577
when(flowFrameworkFeatureEnabledSetting.isFlowFrameworkEnabled()).thenReturn(false);
9678
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.GET)

src/test/java/org/opensearch/flowframework/rest/RestGetWorkflowStepActionTests.java

-15
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
import org.opensearch.client.Client;
1212
import org.opensearch.client.node.NodeClient;
1313
import org.opensearch.core.action.ActionListener;
14-
import org.opensearch.core.common.bytes.BytesArray;
1514
import org.opensearch.core.rest.RestStatus;
16-
import org.opensearch.core.xcontent.MediaTypeRegistry;
1715
import org.opensearch.flowframework.common.FlowFrameworkSettings;
1816
import org.opensearch.flowframework.exception.FlowFrameworkException;
1917
import org.opensearch.flowframework.indices.FlowFrameworkIndicesHandler;
@@ -85,19 +83,6 @@ public void testRestGetWorkflowStepActionRoutes() {
8583
assertEquals(this.getPath, routes.get(0).getPath());
8684
}
8785

88-
public void testInvalidRequestWithContent() {
89-
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.GET)
90-
.withPath(this.getPath)
91-
.withContent(new BytesArray("request body"), MediaTypeRegistry.JSON)
92-
.build();
93-
94-
FakeRestChannel channel = new FakeRestChannel(request, false, 1);
95-
IllegalArgumentException ex = expectThrows(IllegalArgumentException.class, () -> {
96-
restGetWorkflowStepAction.handleRequest(request, channel, nodeClient);
97-
});
98-
assertEquals("request [GET /_plugins/_flow_framework/workflow/_steps] does not support having a body", ex.getMessage());
99-
}
100-
10186
public void testWorkflowSteps() throws Exception {
10287
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.GET)
10388
.withPath(this.getPath + "?workflow_step=create_connector")

0 commit comments

Comments
 (0)