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

Clean user text for logging #141

Merged
merged 2 commits into from
Dec 19, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import jakarta.mail.MessagingException;
import jakarta.mail.Multipart;
import jakarta.mail.Part;
import org.apache.commons.lang3.StringUtils;

/**
* @author Russ Poetker ([email protected])
Expand All @@ -32,7 +31,7 @@ private MailUtil() {}

static String getHtmlText(Part part) throws MessagingException, IOException {
if (part.isMimeType("text/html")) {
return cleanseContent(part.getContent().toString());
return part.getContent().toString();
}

if (part.isMimeType("multipart/alternative")) {
Expand All @@ -41,7 +40,7 @@ static String getHtmlText(Part part) throws MessagingException, IOException {
for (int i = 0; i < count; i++) {
Part bodyPart = multipart.getBodyPart(i);
if (bodyPart.isMimeType("text/html")) {
return cleanseContent(bodyPart.getContent().toString());
return bodyPart.getContent().toString();
} else if (bodyPart.isMimeType("multipart/*")) {
return getHtmlText(bodyPart);
}
Expand All @@ -53,15 +52,11 @@ static String getHtmlText(Part part) throws MessagingException, IOException {
Part bodyPart = multipart.getBodyPart(i);
String content = getHtmlText(bodyPart);
if (Objects.nonNull(content)) {
return cleanseContent(content);
return content;
}
}
}

return null;
}

private static String cleanseContent(String content) {
return StringUtils.normalizeSpace(content);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,21 @@ public NihmsReceiveMailService(PassClient passClient,

public void handleReceivedMail(MimeMessage receivedMessage) {
try {
LOG.warn("Email received: " + receivedMessage.getSubject());
LOG.warn("Email received: {}", receivedMessage.getSubject());
if (isEmailNotNihms(receivedMessage)) {
return;
}
LOG.warn("Email is from Nihms");
String content = getHtmlText(receivedMessage);
LOG.warn("Nihms Email content: {}", content);
if (Objects.isNull(content)) {
LOG.error("No HTML content found in nihms email: " + receivedMessage.getSubject());
LOG.error("No HTML content found in nihms email: {}", receivedMessage.getSubject());
return;
}
String loggingContent = content.replaceAll("[\n\r]", " ");
LOG.warn("Nihms Email content: {}", loggingContent);
Elements messageElements = getMessageElements(content);
if (messageElements.isEmpty()) {
LOG.error("No messages found in nihms email: {}", content);
LOG.error("No messages found in nihms email: {}", loggingContent);
return;
}
processMessages(messageElements);
Expand Down
Loading