|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kuali.rice.kns.util.WebUtils
public class WebUtils
General helper methods for handling requests.
Field Summary | |
---|---|
static String |
FILE_UPLOAD_LIMIT_EXCEEDED_EXCEPTION_ALREADY_THROWN
A request attribute name that indicates that a FileUploadLimitExceededException has already been thrown for the
request. |
static String |
KEY_KUALI_FORM_IN_SESSION
|
Constructor Summary | |
---|---|
WebUtils()
|
Method Summary | |
---|---|
static String |
buildMapParameterString(Map<String,String> map)
Builds a string from the given map by joining each entry with a comma and each key/value pair with a colon |
static boolean |
canAddNoteAttachment(Document document)
|
static boolean |
canDeleteNoteAttachment(Document document,
String attachmentTypeCode,
String authorUniversalIdentifier)
|
static boolean |
canFullyUnmaskField(String businessObjectClassName,
String fieldName,
KualiForm form)
|
static boolean |
canPartiallyUnmaskField(String businessObjectClassName,
String fieldName,
KualiForm form)
|
static boolean |
canViewNoteAttachment(Document document,
String attachmentTypeCode)
|
static boolean |
containsSensitiveDataPatternMatch(String fieldValue)
|
static Map<String,Boolean> |
convertSetToBoolenMap(Set<String> setToConvert)
Converts a set to a map by creating a new map entry for each set entry where the map key is the set entry value and the map value is the boolean true |
static boolean |
endsWithCoordinates(String parameter)
|
static String |
filterHtmlAndReplaceRiceMarkup(String inputString)
Excapes out HTML to prevent XSS attacks, and replaces the following strings to allow for a limited set of HTML tags [X] and [/X], where X represents any 1 or 2 letter string may be used to specify the equivalent tag in HTML (i.e. |
static String |
generateTabKey(String tabTitle)
Generates a String from the title that can be used as a Map key. |
static String |
getButtonImageUrl(String imageName)
Determines and returns the URL for question button images; looks first for a property "application.custom.image.url", and if that is missing, uses the image url returned by getDefaultButtonImageUrl() |
static String |
getDefaultButtonImageUrl(String imageName)
Generates a default button image URL, in the form of: ${kr.externalizable.images.url}buttonsmall_${imageName}.gif |
static String |
getFullyMaskedValue(String className,
String fieldName,
Object formObject,
String propertyName)
|
static int |
getIndexOfCoordinateExtension(String parameter)
|
static ConfigurationService |
getKualiConfigurationService()
|
static org.apache.struts.action.ActionForm |
getKualiForm(javax.servlet.http.HttpServletRequest request)
|
static org.apache.struts.action.ActionForm |
getKualiForm(javax.servlet.jsp.PageContext pageContext)
|
static Map<String,String> |
getMapFromParameterString(String parameterString)
Parses the given string into a Map by splitting on the comma to get the map entries and within each entry splitting by colon to get the key/value pairs |
static long |
getMaxUploadSize(org.apache.struts.action.ActionForm form)
|
static void |
getMultipartParameters(javax.servlet.http.HttpServletRequest request,
org.apache.struts.action.ActionServletWrapper servletWrapper,
org.apache.struts.action.ActionForm form,
org.apache.struts.action.ActionMapping mapping)
|
static Map<String,String> |
getParametersFromRequest(List<String> parameterNames,
Class<? extends BusinessObject> parentObjectClass,
Map<String,String> requestParameters)
Retrieves parameter values from the request that match the requested names. |
static String |
getPartiallyMaskedValue(String className,
String fieldName,
Object formObject,
String propertyName)
|
static String |
getTabState(KualiForm form,
String tabKey)
JSTL function to return the tab state of the tab from the form. |
static UserSession |
getUserSessionFromRequest(javax.servlet.http.HttpServletRequest request)
gets the UserSession object from the HttpServletRequest object's associated session. |
static void |
incrementTabIndex(KualiForm form,
String tabKey)
|
static boolean |
isDocumentSession(Document document,
PojoFormBase docForm)
|
static boolean |
isFormSessionDocument(PojoFormBase form)
|
static boolean |
isHiddenKimObjectType(String type,
String configParameter)
|
static boolean |
isInquiryHiddenField(String className,
String fieldName,
Object formObject,
String propertyName)
|
static boolean |
isProductionEnvironment()
|
static boolean |
isPropertyEditable(Set<String> editableProperties,
String propertyName)
|
static void |
logRequestContents(org.apache.log4j.Logger logger,
org.apache.log4j.Level level,
javax.servlet.http.HttpServletRequest request)
Iterates through and logs (at the given level) all attributes and parameters of the given request onto the given Logger |
static String |
parseMethodToCall(org.apache.struts.action.ActionForm form,
javax.servlet.http.HttpServletRequest request)
Checks for methodToCall parameter, and picks off the value using set dot notation. |
static void |
registerEditableProperty(PojoFormBase form,
String editablePropertyName)
|
static void |
reuseErrorMapFromPreviousRequest(KualiDocumentFormBase kualiDocumentFormBase)
|
static void |
saveMimeInputStreamAsFile(javax.servlet.http.HttpServletResponse response,
String contentType,
InputStream inStream,
String fileName,
int fileSize)
A file that is not of type text/plain or text/html can be output through the response using this method. |
static void |
saveMimeOutputStreamAsFile(javax.servlet.http.HttpServletResponse response,
String contentType,
ByteArrayOutputStream byteArrayOutputStream,
String fileName)
A file that is not of type text/plain or text/html can be output through the response using this method. |
static Map<String,String> |
translateRequestParameterMap(Map<String,String[]> requestParameters)
Translates the given Map of String keys and String array values to a Map of String key and values. |
static String |
translateToMapSafeKey(String key)
Translates characters in the given string like brackets that will cause problems with binding to characters that do not affect the binding |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String FILE_UPLOAD_LIMIT_EXCEEDED_EXCEPTION_ALREADY_THROWN
FileUploadLimitExceededException
has already been thrown for the
request.
public static String KEY_KUALI_FORM_IN_SESSION
Constructor Detail |
---|
public WebUtils()
Method Detail |
---|
public static String parseMethodToCall(org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request)
request
-
public static final UserSession getUserSessionFromRequest(javax.servlet.http.HttpServletRequest request)
In some cases (different threads) the UserSession cannot be retrieved from GlobalVariables but can still be accessed via the session object
public static void logRequestContents(org.apache.log4j.Logger logger, org.apache.log4j.Level level, javax.servlet.http.HttpServletRequest request)
request
- logger
- public static void saveMimeOutputStreamAsFile(javax.servlet.http.HttpServletResponse response, String contentType, ByteArrayOutputStream byteArrayOutputStream, String fileName) throws IOException
response
- contentType
- outStream
- fileName
-
IOException
public static void saveMimeInputStreamAsFile(javax.servlet.http.HttpServletResponse response, String contentType, InputStream inStream, String fileName, int fileSize) throws IOException
response
- contentType
- outStream
- fileName
-
IOException
public static String getTabState(KualiForm form, String tabKey)
form
- tabKey
-
public static void incrementTabIndex(KualiForm form, String tabKey)
public static String generateTabKey(String tabTitle)
tabTitle
-
public static void getMultipartParameters(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionServletWrapper servletWrapper, org.apache.struts.action.ActionForm form, org.apache.struts.action.ActionMapping mapping)
public static long getMaxUploadSize(org.apache.struts.action.ActionForm form)
public static void registerEditableProperty(PojoFormBase form, String editablePropertyName)
public static boolean isDocumentSession(Document document, PojoFormBase docForm)
public static boolean isFormSessionDocument(PojoFormBase form)
public static org.apache.struts.action.ActionForm getKualiForm(javax.servlet.jsp.PageContext pageContext)
public static org.apache.struts.action.ActionForm getKualiForm(javax.servlet.http.HttpServletRequest request)
public static boolean isPropertyEditable(Set<String> editableProperties, String propertyName)
public static boolean endsWithCoordinates(String parameter)
public static int getIndexOfCoordinateExtension(String parameter)
public static boolean isInquiryHiddenField(String className, String fieldName, Object formObject, String propertyName)
public static boolean isHiddenKimObjectType(String type, String configParameter)
public static String getFullyMaskedValue(String className, String fieldName, Object formObject, String propertyName)
public static String getPartiallyMaskedValue(String className, String fieldName, Object formObject, String propertyName)
public static boolean canFullyUnmaskField(String businessObjectClassName, String fieldName, KualiForm form)
public static boolean canPartiallyUnmaskField(String businessObjectClassName, String fieldName, KualiForm form)
public static boolean canAddNoteAttachment(Document document)
public static boolean canViewNoteAttachment(Document document, String attachmentTypeCode)
public static boolean canDeleteNoteAttachment(Document document, String attachmentTypeCode, String authorUniversalIdentifier)
public static void reuseErrorMapFromPreviousRequest(KualiDocumentFormBase kualiDocumentFormBase)
public static String filterHtmlAndReplaceRiceMarkup(String inputString)
inputString
-
public static boolean containsSensitiveDataPatternMatch(String fieldValue)
public static String getButtonImageUrl(String imageName)
imageName
- the name of the image to find a button for
public static String getDefaultButtonImageUrl(String imageName)
imageName
- the image name to generate a default button name for
public static boolean isProductionEnvironment()
public static ConfigurationService getKualiConfigurationService()
public static Map<String,String> translateRequestParameterMap(Map<String,String[]> requestParameters)
requestParameters
- - Map of request parameters to translate
public static Map<String,String> getParametersFromRequest(List<String> parameterNames, Class<? extends BusinessObject> parentObjectClass, Map<String,String> requestParameters)
parameterNames
- - names of the parameters whose values should be retrieved
from the requestparentObjectClass
- - object class that contains the parameter names as properties
and should be consulted for security checksrequestParameters
- - all request parameters to pull from
public static String translateToMapSafeKey(String key)
key
- - string to translate
public static String buildMapParameterString(Map<String,String> map)
map
- - map instance to build string for
public static Map<String,String> getMapFromParameterString(String parameterString)
parameterString
- - string to parse into map
public static Map<String,Boolean> convertSetToBoolenMap(Set<String> setToConvert)
setToConvert
- - set instance to convert
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |