Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TIS-277 Log listener #95

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions riskified-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.riskified</groupId>
<artifactId>riskified-sdk</artifactId>
<version>v1.3.16</version>
<version>v1.3.18</version>
<name>Riskified SDK</name>
<description>Riskified rest api SDK for java</description>
<url>https://www.riskified.com</url>
Expand Down Expand Up @@ -102,7 +102,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.6</version>
<version>4.5.13</version>
</dependency>

<dependency>
Expand Down
3 changes: 2 additions & 1 deletion riskified-sdk/src/main/java/com/riskified/Environment.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
public enum Environment {
DEBUG,
SANDBOX,
PRODUCTION
PRODUCTION,
CHINA_PRODUCTION
}
16 changes: 13 additions & 3 deletions riskified-sdk/src/main/java/com/riskified/RiskifiedClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.Properties;
import java.util.*;


/**
Expand All @@ -60,6 +60,7 @@ public class RiskifiedClient {
private String proxyUsername;
private String proxyPassword;
private HttpClientContext context;
private List<RiskifiedLogListener> logListeners = new ArrayList<RiskifiedLogListener>();

/**
* Riskified API client
Expand Down Expand Up @@ -100,6 +101,8 @@ public RiskifiedClient() throws RiskifiedError {
environment = Environment.PRODUCTION;
} else if (environmentType.equals("SANDBOX")) {
environment = Environment.SANDBOX;
} else if (environmentType.equals("CHINA_PRODUCTION")) {
environment = Environment.CHINA_PRODUCTION;
}

init(shopUrl, authKey, Utils.getBaseUrlFromEnvironment(environment), Utils.getBaseUrlSyncAnalyzeFromEnvironment(environment), Utils.getDecoBaseFromEnvironment(environment), Utils.getAccountBaseFromEnvironment(environment), Utils.getScreenBaseFromEnvironment(environment),validation);
Expand Down Expand Up @@ -941,7 +944,6 @@ private Response postOrder(Object data, String url) throws IOException {
response = executeClient(client, request);
String postBody = EntityUtils.toString(response.getEntity());
int status = response.getStatusLine().getStatusCode();

Response responseObject = getResponseObject(postBody);
switch (status) {
case 200:
Expand Down Expand Up @@ -971,17 +973,25 @@ private CheckoutResponse getCheckoutResponseObject(String postBody) throws IOExc
res.setOrder(res.getCheckout());
return res;
}

public void addListener(RiskifiedLogListener riskifiedListener) {
logListeners.add(riskifiedListener);
}

private void addDataToRequest(Object data, HttpPost postRequest) throws IllegalStateException, UnsupportedEncodingException {
String jsonData = JSONFormater.toJson(data);
for (RiskifiedLogListener riskifiedLogListener : logListeners)
riskifiedLogListener.getRequestLogs(jsonData);
byte[] body = jsonData.getBytes("UTF-8");
String hmac = sha256Handler.createSHA256(body);
postRequest.setHeader("X-RISKIFIED-HMAC-SHA256", hmac);

ByteArrayEntity input;
input = new ByteArrayEntity(body, ContentType.APPLICATION_JSON);
postRequest.setEntity(input);
}




private HttpPost createPostRequest(String url) {
HttpPost postRequest = new HttpPost(url);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.riskified;

public interface RiskifiedLogListener {

public void getRequestLogs(String jsonLogs);

}
10 changes: 10 additions & 0 deletions riskified-sdk/src/main/java/com/riskified/RiskifiedLogger.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.riskified;

public class RiskifiedLogger implements RiskifiedLogListener {

public void getRequestLogs(String jsonLog) {
System.out.println(" Riskified's request payload = " + jsonLog);
}

}

22 changes: 16 additions & 6 deletions riskified-sdk/src/main/java/com/riskified/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,35 @@ public class Utils {
public static final String ACCOUNT_SANDBOX_ENVIRONMENT = "https://api-sandbox.riskified.com";
public static final String ACCOUNT_PRODUCTION_ENVIRONMENT = "https://api.riskified.com";
public static final String SCREEN_SANDBOX_ENVIRONMENT = "https://screen-sandbox.riskified.com";
public static final String CHINA_ACCOUNT_PRODUCTION_ENVIRONMENT = "https://apicdn.riskified.com";

/*
* Riskified offers suite of services as well as different env, the getUrlString is used to fetch the appropriate service url & env
* For example, We added a new production env called China_Production only for ATO product, therefore we added a new parameter to incorporate it into getUrlString method
* while maintaining backward compatibility with Riskified Client
*
*/
public static String getBaseUrlFromEnvironment(Environment environmentType) {
return getUrlString(environmentType, SANDBOX_ENVIRONMENT, PRODUCTION_ENVIRONMENT);
return getUrlString(environmentType, SANDBOX_ENVIRONMENT, PRODUCTION_ENVIRONMENT, PRODUCTION_ENVIRONMENT);
}

public static String getBaseUrlSyncAnalyzeFromEnvironment(Environment environmentType) {
return getUrlString(environmentType, SANDBOX_ENVIRONMENT, PRODUCTION_SYNC_ANALYZE_ENVIRONMENT);
return getUrlString(environmentType, SANDBOX_ENVIRONMENT, PRODUCTION_SYNC_ANALYZE_ENVIRONMENT,PRODUCTION_SYNC_ANALYZE_ENVIRONMENT);
}

public static String getDecoBaseFromEnvironment(Environment environmentType) {
return getUrlString(environmentType, DECO_SANDBOX_ENVIRONMENT, DECO_PRODUCTION_ENVIRONMENT);
return getUrlString(environmentType, DECO_SANDBOX_ENVIRONMENT, DECO_PRODUCTION_ENVIRONMENT,DECO_PRODUCTION_ENVIRONMENT);
}

public static String getAccountBaseFromEnvironment(Environment environmentType) {
return getUrlString(environmentType, ACCOUNT_SANDBOX_ENVIRONMENT, ACCOUNT_PRODUCTION_ENVIRONMENT);
return getUrlString(environmentType, ACCOUNT_SANDBOX_ENVIRONMENT, ACCOUNT_PRODUCTION_ENVIRONMENT,CHINA_ACCOUNT_PRODUCTION_ENVIRONMENT);
}

public static String getScreenBaseFromEnvironment(Environment environmentType) {
return getUrlString(environmentType, SCREEN_SANDBOX_ENVIRONMENT, PRODUCTION_ENVIRONMENT);
return getUrlString(environmentType, SCREEN_SANDBOX_ENVIRONMENT, PRODUCTION_ENVIRONMENT,PRODUCTION_ENVIRONMENT);
}

private static String getUrlString(Environment environmentType, String sandboxEnvironment, String productionEnvironment) {
private static String getUrlString(Environment environmentType, String sandboxEnvironment, String productionEnvironment, String chinaEnvironment) {
String url = null;
if (environmentType != null) {
switch (environmentType) {
Expand All @@ -45,6 +52,9 @@ private static String getUrlString(Environment environmentType, String sandboxEn
case PRODUCTION:
url = productionEnvironment;
break;
case CHINA_PRODUCTION:
url = chinaEnvironment;
break;
}
}
return url;
Expand Down