-
Notifications
You must be signed in to change notification settings - Fork 42
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
add a create/update/changeId/delete posthook (#193) #242
Changes from 1 commit
6d51dfe
2f2ecb6
68cd544
d9271d4
45d8a32
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -46,9 +46,9 @@ | |||||||||||||||||||||||||
import java.lang.ProcessBuilder; | ||||||||||||||||||||||||||
import java.io.OutputStream; | ||||||||||||||||||||||||||
import java.io.IOException; | ||||||||||||||||||||||||||
import java.io.StringWriter; | ||||||||||||||||||||||||||
import java.io.PrintWriter; | ||||||||||||||||||||||||||
import java.util.Optional; | ||||||||||||||||||||||||||
import org.lsc.utils.output.LdifLayout; | ||||||||||||||||||||||||||
import org.lsc.beans.syncoptions.ISyncOptions.OutputFormat; | ||||||||||||||||||||||||||
import com.fasterxml.jackson.databind.ObjectMapper; // For encoding object to JSON | ||||||||||||||||||||||||||
import com.fasterxml.jackson.databind.ObjectWriter; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
@@ -58,62 +58,33 @@ | |||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||
public class Hooks { | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
static final Logger LOGGER = LoggerFactory.getLogger(AbstractSynchronize.class); | ||||||||||||||||||||||||||
static final Logger LOGGER = LoggerFactory.getLogger(Hooks.class); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
private static final ObjectMapper Mapper = new ObjectMapper(); | ||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||
* Method calling a postSyncHook if necessary | ||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||
* return nothing | ||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||
public final static void postSyncHook(final String hook, final String outputFormat, final LscModifications lm) { | ||||||||||||||||||||||||||
public final void postSyncHook(final Optional<String> hook, final OutputFormat outputFormat, final LscModifications lm) { | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
if( hook != null && ! hook.equals("") ) | ||||||||||||||||||||||||||
if( hook != null && hook.isPresent() ) | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
String format = ""; | ||||||||||||||||||||||||||
if( outputFormat.equals("json") ) { | ||||||||||||||||||||||||||
format = "json"; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
format = "ldif"; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
// Compute json/ldif modifications | ||||||||||||||||||||||||||
String modifications = null; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
switch (lm.getOperation()) { | ||||||||||||||||||||||||||
case CREATE_OBJECT: | ||||||||||||||||||||||||||
if( format.equals("json") ) { | ||||||||||||||||||||||||||
modifications = getJsonModifications(lm); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
else { | ||||||||||||||||||||||||||
modifications = LdifLayout.format(lm); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
callHook("create", hook, lm.getMainIdentifier(), format, modifications); | ||||||||||||||||||||||||||
callHook("create", hook.get(), lm.getMainIdentifier(), outputFormat, lm); | ||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
case UPDATE_OBJECT: | ||||||||||||||||||||||||||
if( format.equals("json") ) { | ||||||||||||||||||||||||||
modifications = getJsonModifications(lm); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
else { | ||||||||||||||||||||||||||
modifications = LdifLayout.format(lm); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
callHook("update", hook, lm.getMainIdentifier(), format, modifications); | ||||||||||||||||||||||||||
callHook("update", hook.get(), lm.getMainIdentifier(), outputFormat, lm); | ||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
case CHANGE_ID: | ||||||||||||||||||||||||||
if( format.equals("json") ) { | ||||||||||||||||||||||||||
modifications = getJsonModifications(lm); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
else { | ||||||||||||||||||||||||||
modifications = LdifLayout.format(lm); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
callHook("changeId", hook, lm.getMainIdentifier(), format, modifications); | ||||||||||||||||||||||||||
callHook("changeId", hook.get(), lm.getMainIdentifier(), outputFormat, lm); | ||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
case DELETE_OBJECT: | ||||||||||||||||||||||||||
callHook("delete", hook, lm.getMainIdentifier(), format, modifications); | ||||||||||||||||||||||||||
callHook("delete", hook.get(), lm.getMainIdentifier(), outputFormat, lm); | ||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||
|
@@ -122,18 +93,30 @@ public final static void postSyncHook(final String hook, final String outputForm | |||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||
* Method calling the hook | ||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||
* return nothing | ||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||
public final static void callHook( String operationType, | ||||||||||||||||||||||||||
String hook, | ||||||||||||||||||||||||||
String identifier, | ||||||||||||||||||||||||||
String format, | ||||||||||||||||||||||||||
String modifications) { | ||||||||||||||||||||||||||
OutputFormat outputFormat, | ||||||||||||||||||||||||||
LscModifications lm) { | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
LOGGER.info("Calling {} posthook {} with format {} for {}", | ||||||||||||||||||||||||||
operationType, | ||||||||||||||||||||||||||
hook, | ||||||||||||||||||||||||||
outputFormat.toString(), | ||||||||||||||||||||||||||
identifier); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
String modifications = null; | ||||||||||||||||||||||||||
// Compute modifications only in a create / update / changeid operation | ||||||||||||||||||||||||||
if( ! operationType.equals("delete") ) | ||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||
if( outputFormat == OutputFormat.JSON ) { | ||||||||||||||||||||||||||
modifications = getJsonModifications(lm); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
else { | ||||||||||||||||||||||||||
modifications = LdifLayout.format(lm); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
LOGGER.info("Calling {} posthook {} with format {} for {}", operationType, hook, format, identifier); | ||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||
if( modifications != null ) { | ||||||||||||||||||||||||||
Process p = new ProcessBuilder( | ||||||||||||||||||||||||||
|
@@ -158,11 +141,12 @@ public final static void callHook( String operationType, | |||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
catch(IOException e) { | ||||||||||||||||||||||||||
StringWriter sw = new StringWriter(); | ||||||||||||||||||||||||||
PrintWriter pw = new PrintWriter(sw); | ||||||||||||||||||||||||||
e.printStackTrace(pw); | ||||||||||||||||||||||||||
LOGGER.error("Error while calling {} posthook {} with format {} for {}: {}", | ||||||||||||||||||||||||||
operationType, hook, format, identifier, sw.toString()); | ||||||||||||||||||||||||||
LOGGER.error("Error while calling {} posthook {} with format {} for {}", | ||||||||||||||||||||||||||
operationType, | ||||||||||||||||||||||||||
hook, | ||||||||||||||||||||||||||
outputFormat.toString(), | ||||||||||||||||||||||||||
identifier); | ||||||||||||||||||||||||||
LOGGER.error("posthook error: ", e); | ||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
should work also |
||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
@@ -172,16 +156,14 @@ public final static void callHook( String operationType, | |||||||||||||||||||||||||
* @return modifications in a json String | ||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||
public final static String getJsonModifications(final LscModifications lm) { | ||||||||||||||||||||||||||
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter(); | ||||||||||||||||||||||||||
ObjectWriter ow = Mapper.writer().withDefaultPrettyPrinter(); | ||||||||||||||||||||||||||
String json = ""; | ||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||
json = ow.writeValueAsString(lm.getLscAttributeModifications()); | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
catch(Exception e) { | ||||||||||||||||||||||||||
StringWriter sw = new StringWriter(); | ||||||||||||||||||||||||||
PrintWriter pw = new PrintWriter(sw); | ||||||||||||||||||||||||||
e.printStackTrace(pw); | ||||||||||||||||||||||||||
LOGGER.error("Error while encoding LSC modifications to json", sw.toString()); | ||||||||||||||||||||||||||
LOGGER.error("Error while encoding LSC modifications to json"); | ||||||||||||||||||||||||||
LOGGER.error("encoding error: ", e); | ||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
return json; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -47,6 +47,7 @@ | |||||
|
||||||
import java.util.List; | ||||||
import java.util.Set; | ||||||
import java.util.Optional; | ||||||
|
||||||
import org.lsc.LscModificationType; | ||||||
import org.lsc.configuration.PolicyType; | ||||||
|
@@ -128,28 +129,28 @@ public String getCondition(LscModificationType operation) { | |||||
return DEFAULT_CONDITION; | ||||||
} | ||||||
|
||||||
public String getPostHookOutputFormat() { | ||||||
return ""; | ||||||
public OutputFormat getPostHookOutputFormat() { | ||||||
return OutputFormat.LDIF; | ||||||
} | ||||||
|
||||||
public String getCreatePostHook() { | ||||||
return ""; | ||||||
public Optional<String> getCreatePostHook() { | ||||||
return Optional.ofNullable(null); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
|
||||||
public String getDeletePostHook() { | ||||||
return ""; | ||||||
public Optional<String> getDeletePostHook() { | ||||||
return Optional.ofNullable(null); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
|
||||||
public String getUpdatePostHook() { | ||||||
return ""; | ||||||
public Optional<String> getUpdatePostHook() { | ||||||
return Optional.ofNullable(null); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
|
||||||
public String getChangeIdPostHook() { | ||||||
return ""; | ||||||
public Optional<String> getChangeIdPostHook() { | ||||||
return Optional.ofNullable(null); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
|
||||||
public String getPostHook(LscModificationType operation) { | ||||||
return ""; | ||||||
public Optional<String> getPostHook(LscModificationType operation) { | ||||||
return Optional.ofNullable(null); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
|
||||||
public String getDn() { | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,7 @@ | |
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.Set; | ||
import java.util.Optional; | ||
|
||
import org.lsc.LscModificationType; | ||
import org.lsc.configuration.DatasetType; | ||
|
@@ -197,43 +198,41 @@ public String getCondition(LscModificationType operation) { | |
return result; | ||
} | ||
|
||
public String getPostHookOutputFormat() { | ||
public OutputFormat getPostHookOutputFormat() { | ||
// default: returns LDIF format | ||
if (conf.getHooks() == null || conf.getHooks().getOutputFormat() == null) { | ||
return ""; | ||
return OutputFormat.LDIF; | ||
} | ||
switch(conf.getHooks().getOutputFormat()){ | ||
case "json": | ||
return OutputFormat.JSON; | ||
default: | ||
return OutputFormat.LDIF; | ||
} | ||
return conf.getHooks().getOutputFormat(); | ||
} | ||
|
||
public String getCreatePostHook() { | ||
if (conf.getHooks() == null || conf.getHooks().getCreatePostHook() == null) { | ||
return ""; | ||
} | ||
return conf.getHooks().getCreatePostHook(); | ||
public Optional<String> getCreatePostHook() { | ||
Optional<String> hook = Optional.ofNullable(conf.getHooks().getCreatePostHook()).filter(s -> !s.isEmpty()); | ||
return hook; | ||
} | ||
|
||
public String getDeletePostHook() { | ||
if (conf.getHooks() == null || conf.getHooks().getDeletePostHook() == null) { | ||
return ""; | ||
} | ||
return conf.getHooks().getDeletePostHook(); | ||
public Optional<String> getDeletePostHook() { | ||
Optional<String> hook = Optional.ofNullable(conf.getHooks().getDeletePostHook()).filter(s -> !s.isEmpty()); | ||
return hook; | ||
} | ||
|
||
public String getUpdatePostHook() { | ||
if (conf.getHooks() == null || conf.getHooks().getUpdatePostHook() == null) { | ||
return ""; | ||
} | ||
return conf.getHooks().getUpdatePostHook(); | ||
public Optional<String> getUpdatePostHook() { | ||
Optional<String> hook = Optional.ofNullable(conf.getHooks().getUpdatePostHook()).filter(s -> !s.isEmpty()); | ||
return hook; | ||
} | ||
|
||
public String getChangeIdPostHook() { | ||
if (conf.getHooks() == null || conf.getHooks().getChangeIdPostHook() == null) { | ||
return ""; | ||
} | ||
return conf.getHooks().getChangeIdPostHook(); | ||
public Optional<String> getChangeIdPostHook() { | ||
Optional<String> hook = Optional.ofNullable(conf.getHooks().getChangeIdPostHook()).filter(s -> !s.isEmpty()); | ||
return hook; | ||
} | ||
|
||
public String getPostHook(LscModificationType operation) { | ||
String result = ""; | ||
public Optional<String> getPostHook(LscModificationType operation) { | ||
Optional<String> result = Optional.ofNullable(null); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can simplify this method by removing the result method and returning directly into each case |
||
switch (operation) { | ||
case CREATE_OBJECT: | ||
result = this.getCreatePostHook(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks better.
The principle of an optional is to not be null, so you can remove the null check.
Also if instead of a String operationType you continue using LscModificationType, the code can be very simplified by: