diff --git a/.github/workflows/maven--package-publish.yml b/.github/workflows/maven--package-publish.yml
new file mode 100644
index 00000000..ed2ad1d8
--- /dev/null
+++ b/.github/workflows/maven--package-publish.yml
@@ -0,0 +1,31 @@
+name: Publishing to Maven Packages
+#on: [ push ] # Trigger the workflow when a push (commit) event occurs
+on:
+ release:
+ types: [ created ]
+jobs:
+ publish-maven:
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ packages: write
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up Maven Central Repository
+ uses: actions/setup-java@v3
+ with:
+ java-version: '11'
+ distribution: 'adopt'
+ server-id: ossrh
+ server-username: MAVEN_USERNAME
+ server-password: MAVEN_PASSWORD
+ gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
+ gpg-passphrase: GPG_PASSPHRASE
+ - name: Publish to Maven Central Repository
+ run: mvn --batch-mode -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} deploy
+ env:
+ MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
+ MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
+
+# run: mvn --batch-mode deploy
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 01f7715d..fd7b1417 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# CHANGELOG
+## v2.0.1
+
+### Date: 21-October-2024
+
+-Github Issues fixed
+-Issue with field ordering in SDK response
+
## v2.0.0
### Date: 27-August-2024
diff --git a/pom.xml b/pom.xml
index 8fa801f7..be4c8527 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
4.0.0
com.contentstack.sdk
java
- 2.0.0
+ 2.0.1
jar
contentstack-java
Java SDK for Contentstack Content Delivery API
@@ -17,7 +17,7 @@
1.8
UTF-8
2.22.0
- 2.2.1
+ 3.3.1
3.4.1
3.0.0
3.1.8
@@ -183,6 +183,12 @@
${json-simple-version}
compile
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ 2.15.2
+
diff --git a/src/main/java/com/contentstack/sdk/CSHttpConnection.java b/src/main/java/com/contentstack/sdk/CSHttpConnection.java
index 9eda41c0..4a7c1b23 100644
--- a/src/main/java/com/contentstack/sdk/CSHttpConnection.java
+++ b/src/main/java/com/contentstack/sdk/CSHttpConnection.java
@@ -2,15 +2,18 @@
import okhttp3.Request;
import okhttp3.ResponseBody;
+
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
+
import retrofit2.Call;
import retrofit2.Response;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
+import java.net.SocketTimeoutException;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Iterator;
@@ -19,6 +22,10 @@
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.IntStream;
+import com.fasterxml.jackson.databind.ObjectMapper; // Jackson for JSON parsing
+import com.fasterxml.jackson.databind.json.JsonMapper;
+import com.fasterxml.jackson.databind.node.ObjectNode;
+import com.fasterxml.jackson.databind.type.MapType;
import static com.contentstack.sdk.Constants.*;
@@ -185,6 +192,14 @@ public void send() {
}
}
+ private JSONObject createOrderedJSONObject(Map map) {
+ JSONObject json = new JSONObject();
+ for (Map.Entry entry : map.entrySet()) {
+ json.put(entry.getKey(), entry.getValue());
+ }
+ return json;
+ }
+
private void getService(String requestUrl) throws IOException {
this.headers.put(X_USER_AGENT_KEY, "contentstack-delivery-java/" + SDK_VERSION);
@@ -202,22 +217,41 @@ private void getService(String requestUrl) throws IOException {
requestUrl = request.url().toString();
}
- Response response = this.service.getRequest(requestUrl, this.headers).execute();
- if (response.isSuccessful()) {
- assert response.body() != null;
- if (request != null) {
- response = pluginResponseImp(request, response);
- }
- responseJSON = new JSONObject(response.body().string());
- if (this.config.livePreviewEntry != null && !this.config.livePreviewEntry.isEmpty()) {
- handleJSONArray();
+ try {
+ Response response = this.service.getRequest(requestUrl, this.headers).execute();
+ if (response.isSuccessful()) {
+ assert response.body() != null;
+ if (request != null) {
+ response = pluginResponseImp(request, response);
+ }
+ try {
+ // Use Jackson to parse the JSON while preserving order
+ ObjectMapper mapper = JsonMapper.builder().build();
+ MapType type = mapper.getTypeFactory().constructMapType(LinkedHashMap.class, String.class,
+ Object.class);
+ Map responseMap = mapper.readValue(response.body().string(), type);
+
+ // Use the custom method to create an ordered JSONObject
+ responseJSON = createOrderedJSONObject(responseMap);
+ if (this.config.livePreviewEntry != null && !this.config.livePreviewEntry.isEmpty()) {
+ handleJSONArray();
+ }
+ connectionRequest.onRequestFinished(CSHttpConnection.this);
+ } catch (JSONException e) {
+ // Handle non-JSON response
+ setError("Invalid JSON response");
+ }
+ } else {
+ assert response.errorBody() != null;
+ setError(response.errorBody().string());
}
- connectionRequest.onRequestFinished(CSHttpConnection.this);
- } else {
- assert response.errorBody() != null;
- setError(response.errorBody().string());
+ } catch (SocketTimeoutException e) {
+ // Handle timeout
+ setError("Request timed out: " + e.getMessage());
+ } catch (IOException e) {
+ // Handle other IO exceptions
+ setError("IO error occurred: " + e.getMessage());
}
-
}
private Request pluginRequestImp(String requestUrl) {
@@ -261,7 +295,13 @@ void handleJSONObject(JSONArray arrayEntry, JSONObject jsonObj, int idx) {
}
void setError(String errResp) {
- responseJSON = new JSONObject(errResp); // Parse error string to JSONObject
+ try {
+ responseJSON = new JSONObject(errResp);
+ } catch (JSONException e) {
+ // If errResp is not valid JSON, create a new JSONObject with the error message
+ responseJSON = new JSONObject();
+ responseJSON.put(ERROR_MESSAGE, errResp);
+ }
responseJSON.put(ERROR_MESSAGE, responseJSON.optString(ERROR_MESSAGE));
responseJSON.put(ERROR_CODE, responseJSON.optString(ERROR_CODE));
responseJSON.put(ERRORS, responseJSON.optString(ERRORS));
diff --git a/src/main/overview.html b/src/main/overview.html
index 81ed5a6e..8abe8a00 100644
--- a/src/main/overview.html
+++ b/src/main/overview.html
@@ -20,7 +20,7 @@ Java SDK for Contentstack
resources to get started with our Java SDK.
Prerequisite
You will need JDK installed on your machine. You can install it from here.
+ href="https://www.oracle.com/technetwork/java/javase/downloads/jdk9-downloads-3848520.html">here.
Setup and Installation
To use the Contentstack Java SDK to your existing project, perform the steps given below:
Group id: com.contentstack.sdk