4 changed files with 85 additions and 8 deletions
@ -0,0 +1,62 @@
@@ -0,0 +1,62 @@
|
||||
package org.springframework.security.taglibs; |
||||
|
||||
import org.apache.commons.logging.Log; |
||||
import org.apache.commons.logging.LogFactory; |
||||
|
||||
import javax.servlet.jsp.tagext.Tag; |
||||
|
||||
/** |
||||
* internal cconfiguration class for taglibs. |
||||
* |
||||
* Not for public use. |
||||
* |
||||
* @author Luke Taylor |
||||
*/ |
||||
public final class TagLibConfig { |
||||
static Log logger = LogFactory.getLog("spring-security-taglibs"); |
||||
|
||||
static final boolean DISABLE_UI_SECURITY; |
||||
static final String SECURED_UI_PREFIX; |
||||
static final String SECURED_UI_SUFFIX; |
||||
|
||||
static { |
||||
String db = System.getProperty("spring.security.disableUISecurity"); |
||||
String prefix = System.getProperty("spring.security.securedUIPrefix"); |
||||
String suffix = System.getProperty("spring.security.securedUISuffix"); |
||||
|
||||
SECURED_UI_PREFIX = prefix == null ? "<span class=\"securityHiddenUI\">" : prefix; |
||||
SECURED_UI_SUFFIX = suffix == null ? "</span>" : suffix; |
||||
|
||||
DISABLE_UI_SECURITY = "true".equals(db); |
||||
|
||||
if (DISABLE_UI_SECURITY) { |
||||
logger.warn("***** UI security is disabled. All unauthorized content will be displayed *****"); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Returns EVAL_BODY_INCLUDE if the authorized flag is true or UI security has been disabled. |
||||
* Otherwise returns SKIP_BODY. |
||||
* |
||||
* @param authorized whether the user is authorized to see the content or not |
||||
*/ |
||||
public static int evalOrSkip(boolean authorized) { |
||||
if (authorized || DISABLE_UI_SECURITY) { |
||||
return Tag.EVAL_BODY_INCLUDE; |
||||
} |
||||
|
||||
return Tag.SKIP_BODY; |
||||
} |
||||
|
||||
public static boolean isUiSecurityDisabled() { |
||||
return DISABLE_UI_SECURITY; |
||||
} |
||||
|
||||
public static String getSecuredUiPrefix() { |
||||
return SECURED_UI_PREFIX; |
||||
} |
||||
|
||||
public static String getSecuredUiSuffix() { |
||||
return SECURED_UI_SUFFIX; |
||||
} |
||||
} |
||||
Loading…
Reference in new issue