forked from box/mojito
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e54ee55
commit ab5015a
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
webapp/src/main/java/com/box/l10n/mojito/security/RequestLoggingConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package com.box.l10n.mojito.security; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.web.filter.CommonsRequestLoggingFilter; | ||
|
||
@Configuration | ||
public class RequestLoggingConfig { | ||
|
||
@Value("${l10n.logging.requests.includesQueryString:false}") | ||
public boolean includesQueryString; | ||
|
||
@Value("${l10n.logging.requests.includesHeader:false}") | ||
public boolean includesHeader; | ||
|
||
@Value("${l10n.logging.requests.includesPayload:true}") | ||
public boolean includesPayload; | ||
|
||
@Value("${l10n.logging.requests.maxPayloadLength:10000}") | ||
public int maxPayloadLength; | ||
|
||
@Value("${l10n.logging.requests.maxPayloadLength:Request Data: }") | ||
public String afterMessagePrefix; | ||
|
||
@Bean | ||
@ConditionalOnProperty(value = "l10n.logging.requests.enabled", havingValue = "true") | ||
public CommonsRequestLoggingFilter logFilter() { | ||
CommonsRequestLoggingFilter filter = new CommonsRequestLoggingFilter(); | ||
filter.setIncludeQueryString(includesQueryString); | ||
filter.setIncludePayload(includesPayload); | ||
filter.setMaxPayloadLength(maxPayloadLength); | ||
filter.setIncludeHeaders(includesHeader); | ||
filter.setAfterMessagePrefix(afterMessagePrefix); | ||
return filter; | ||
} | ||
} |