Coverage Report - org.kuali.rice.kns.lookup.HtmlData
 
Classes in this File Line Coverage Branch Coverage Complexity
HtmlData
0%
0/68
0%
0/20
1.477
HtmlData$AnchorHtmlData
0%
0/24
0%
0/4
1.477
HtmlData$InputHtmlData
0%
0/28
0%
0/8
1.477
HtmlData$MultipleAnchorHtmlData
0%
0/10
0%
0/4
1.477
 
 1  
 /*
 2  
  * Copyright 2007-2008 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kns.lookup;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.sql.Date;
 20  
 import java.util.HashMap;
 21  
 import java.util.Iterator;
 22  
 import java.util.List;
 23  
 import java.util.Map;
 24  
 
 25  
 import org.apache.commons.lang.StringUtils;
 26  
 import org.kuali.rice.kns.authorization.BusinessObjectRestrictions;
 27  
 import org.kuali.rice.kns.authorization.FieldRestriction;
 28  
 import org.kuali.rice.kns.bo.BusinessObject;
 29  
 import org.kuali.rice.kns.service.BusinessObjectAuthorizationService;
 30  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 31  
 import org.kuali.rice.kns.util.KNSConstants;
 32  
 import org.kuali.rice.kns.util.ObjectUtils;
 33  
 import org.kuali.rice.kns.web.format.DateFormatter;
 34  
 
 35  
 /**
 36  
  * This class holds details of html data for an action url.
 37  
  * 
 38  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 39  
  * 
 40  
  */
 41  0
 public abstract class HtmlData implements Serializable {
 42  
 
 43  0
         protected static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(HtmlData.class);
 44  
 
 45  0
         public static final String ANCHOR_HTML_DATA_TYPE = AnchorHtmlData.class.getName();
 46  0
         public static final String INPUT_HTML_DATA_TYPE = InputHtmlData.class.getName();
 47  
         
 48  0
         protected String name = "";
 49  0
         protected String title = "";
 50  0
         protected String methodToCall = "";
 51  0
         protected String displayText = "";
 52  0
         protected String prependDisplayText = "";
 53  0
         protected String appendDisplayText = "";
 54  
         protected List<HtmlData> childUrlDataList;
 55  
         protected String maxLength;
 56  
         
 57  
         /**
 58  
          * 
 59  
          * This method constructs the complete html tag based on the class attribute
 60  
          * values.
 61  
          * 
 62  
          * @return
 63  
          */
 64  
         public abstract String constructCompleteHtmlTag();
 65  
 
 66  
         /**
 67  
          * @return the appendDisplayText
 68  
          */
 69  
         public String getAppendDisplayText() {
 70  0
                 return this.appendDisplayText;
 71  
         }
 72  
 
 73  
         /**
 74  
          * @param appendDisplayText the appendDisplayText to set
 75  
          */
 76  
         public void setAppendDisplayText(String appendDisplayText) {
 77  0
                 this.appendDisplayText = appendDisplayText;
 78  0
         }
 79  
 
 80  
         /**
 81  
          * @return the childUrlDataList
 82  
          */
 83  
         public List<HtmlData> getChildUrlDataList() {
 84  0
                 return this.childUrlDataList;
 85  
         }
 86  
 
 87  
         /**
 88  
          * @param childUrlDataList the childUrlDataList to set
 89  
          */
 90  
         public void setChildUrlDataList(List<HtmlData> childUrlDataList) {
 91  0
                 this.childUrlDataList = childUrlDataList;
 92  0
         }
 93  
 
 94  
         /**
 95  
          * @return the prependDisplayText
 96  
          */
 97  
         public String getPrependDisplayText() {
 98  0
                 return this.prependDisplayText;
 99  
         }
 100  
 
 101  
         /**
 102  
          * @param prependDisplayText the prependDisplayText to set
 103  
          */
 104  
         public void setPrependDisplayText(String prependDisplayText) {
 105  0
                 this.prependDisplayText = prependDisplayText;
 106  0
         }
 107  
 
 108  
         /**
 109  
          * @return the title
 110  
          */
 111  
         public String getTitle() {
 112  0
                 return this.title;
 113  
         }
 114  
 
 115  
         /**
 116  
          * @param title the title to set
 117  
          */
 118  
         public void setTitle(String title) {
 119  0
                 this.title = title;
 120  0
         }
 121  
 
 122  
         /**
 123  
          * @return the name
 124  
          */
 125  
         public String getName() {
 126  0
                 return this.name;
 127  
         }
 128  
 
 129  
         /**
 130  
          * @param name the name to set
 131  
          */
 132  
         public void setName(String name) {
 133  0
                 this.name = name;
 134  0
         }
 135  
 
 136  
         /**
 137  
          * @return the displayText
 138  
          */
 139  
         public String getDisplayText() {
 140  0
                 return this.displayText;
 141  
         }
 142  
 
 143  
         /**
 144  
          * @param displayText the displayText to set
 145  
          */
 146  
         public void setDisplayText(String displayText) {
 147  0
                 this.displayText = displayText;
 148  0
         }
 149  
 
 150  
         /**
 151  
          * @return the methodToCall
 152  
          */
 153  
         public String getMethodToCall() {
 154  0
                 return this.methodToCall;
 155  
         }
 156  
 
 157  
         /**
 158  
          * @param methodToCall the methodToCall to set
 159  
          */
 160  
         public void setMethodToCall(String methodToCall) {
 161  0
                 this.methodToCall = methodToCall;
 162  0
         }
 163  
 
 164  
         public String getTitle(String prependText, Class bo, List keys) {
 165  0
                 return KNSConstants.EMPTY_STRING;
 166  
         }
 167  
 
 168  
         /**
 169  
          * KFSMI-658 This method gets the title text for a link/control
 170  
          * 
 171  
          * @param prependText
 172  
          * @param bo
 173  
          * @param fieldConversions
 174  
          * @param returnKeys
 175  
          * @return title text
 176  
          */
 177  
         public static String getTitleText(String prependText, BusinessObject bo, List keys, BusinessObjectRestrictions businessObjectRestrictions) {
 178  0
                 if (bo == null)
 179  0
                         return KNSConstants.EMPTY_STRING;
 180  
 
 181  0
                 Map<String, String> keyValueMap = new HashMap<String, String>();
 182  0
                 Iterator keysIt = keys.iterator();
 183  0
                 while (keysIt.hasNext()) {
 184  0
                         String fieldNm = (String) keysIt.next();
 185  0
                         Object fieldVal = ObjectUtils.getPropertyValue(bo, fieldNm);
 186  
                         
 187  0
                         FieldRestriction fieldRestriction = null;
 188  0
                         if (businessObjectRestrictions != null) {
 189  0
                                 fieldRestriction = businessObjectRestrictions.getFieldRestriction(fieldNm);
 190  
                         }
 191  0
                         if (fieldRestriction != null && (fieldRestriction.isMasked() || fieldRestriction.isPartiallyMasked())) {
 192  0
                                 fieldVal = fieldRestriction.getMaskFormatter().maskValue(fieldVal);
 193  0
                         } else if (fieldVal == null) {
 194  0
                                 fieldVal = KNSConstants.EMPTY_STRING;
 195  0
                         } else if (fieldVal instanceof Date) {
 196  
                                 // need to format date in url
 197  0
                                 DateFormatter dateFormatter = new DateFormatter();
 198  0
                                 fieldVal = dateFormatter.format(fieldVal);
 199  
                         }
 200  0
                         keyValueMap.put(fieldNm, fieldVal.toString());
 201  0
                 }
 202  0
                 return getTitleText(prependText, bo.getClass(), keyValueMap);
 203  
         }
 204  
         
 205  
         private static BusinessObjectAuthorizationService businessObjectAuthorizationService;
 206  
         private static BusinessObjectAuthorizationService getBusinessObjectAuthorizationService() {
 207  0
                 if (businessObjectAuthorizationService == null) {
 208  0
                         businessObjectAuthorizationService = KNSServiceLocator.getBusinessObjectAuthorizationService();
 209  
                 }
 210  0
                 return businessObjectAuthorizationService;
 211  
         }
 212  
 
 213  
         public static String getTitleText(String prependText, Class element, Map<String, String> keyValueMap) {
 214  0
                 Class elementClass = element;
 215  0
                 StringBuffer titleText = new StringBuffer(prependText);
 216  0
                 for (String key : keyValueMap.keySet()) {
 217  0
                         String fieldVal = keyValueMap.get(key).toString();
 218  
                         
 219  0
                         titleText.append(KNSServiceLocator.getDataDictionaryService()
 220  
                                         .getAttributeLabel(element, key)
 221  
                                         + "=" + fieldVal.toString() + " ");
 222  0
                 }
 223  0
                 return titleText.toString();
 224  
         }
 225  
 
 226  
         /**
 227  
          * 
 228  
          * This class is an extension of HtmlData. It represents an anchor tag.
 229  
          * 
 230  
          * @author Kuali Rice Team (rice.collab@kuali.org)
 231  
          * 
 232  
          */
 233  
         public static class AnchorHtmlData extends HtmlData {
 234  
                 public static final String TARGET_BLANK = "_blank";
 235  0
                 protected String href = "";
 236  0
                 protected String target = "";
 237  
 
 238  
                 /**
 239  
                  * Needed by inquiry framework
 240  
                  */
 241  0
                 public AnchorHtmlData() {
 242  0
                 }
 243  
 
 244  0
                 public AnchorHtmlData(String href, String title) {
 245  0
                         this.href = href;
 246  0
                         this.title = title;
 247  0
                 }
 248  
 
 249  
                 public AnchorHtmlData(String href, String methodToCall,
 250  0
                                 String displayText) {
 251  0
                         this.href = href;
 252  0
                         this.methodToCall = methodToCall;
 253  0
                         this.displayText = displayText;
 254  0
                 }
 255  
 
 256  
                 /**
 257  
                  * @param href the href to set
 258  
                  */
 259  
                 public void setHref(String href) {
 260  0
                         this.href = href;
 261  0
                 }
 262  
 
 263  
                 /**
 264  
                  * 
 265  
                  * This method generates anchor tag.
 266  
                  * 
 267  
                  * @see org.kuali.rice.kns.lookup.HtmlData#constructCompleteHtmlTag()
 268  
                  */
 269  
                 public String constructCompleteHtmlTag() {
 270  
                         String completeHtmlTag;
 271  0
                         if (StringUtils.isEmpty(getHref()))
 272  0
                                 completeHtmlTag = getDisplayText();
 273  
                         else
 274  0
                                 completeHtmlTag = getPrependDisplayText()
 275  
                                                 + "<a title=\""
 276  
                                                 + title
 277  
                                                 + "\""
 278  
                                                 + " href=\""
 279  
                                                 + getHref()
 280  
                                                 + "\""
 281  
                                                 + (StringUtils.isEmpty(getTarget()) ? "" : " target=\""
 282  
                                                                 + getTarget() + "\" ") + ">" + getDisplayText()
 283  
                                                 + "</a>" + getAppendDisplayText();
 284  0
                         return completeHtmlTag;
 285  
                 }
 286  
 
 287  
                 /**
 288  
                  * @return the target
 289  
                  */
 290  
                 public String getTarget() {
 291  0
                         return this.target;
 292  
                 }
 293  
 
 294  
                 /**
 295  
                  * @param target
 296  
                  *            the target to set
 297  
                  */
 298  
                 public void setTarget(String target) {
 299  0
                         this.target = target;
 300  0
                 }
 301  
 
 302  
                 /**
 303  
                  * @return the href
 304  
                  */
 305  
                 public String getHref() {
 306  0
                         return this.href;
 307  
                 }
 308  
 
 309  
                 /**
 310  
                  * @return the methodToCall
 311  
                  */
 312  
                 public String getMethodToCall() {
 313  0
                         return this.methodToCall;
 314  
                 }
 315  
 
 316  
         }
 317  
 
 318  
         /**
 319  
          * 
 320  
          * This class is an extension of HtmlData. It represents an input tag.
 321  
          * 
 322  
          * @author Kuali Rice Team (rice.collab@kuali.org)
 323  
          * 
 324  
          */
 325  
         public static class InputHtmlData extends HtmlData {
 326  
                 public static final String CHECKBOX_INPUT_TYPE = "checkbox";
 327  
                 public static final String CHECKBOX_CHECKED_VALUE = "checked";
 328  
 
 329  0
                 protected String inputType = "";
 330  0
                 protected String src = "";
 331  0
                 protected String styleClass = "";
 332  0
                 protected String border = "0";
 333  0
                 protected String checked = "";
 334  0
                 protected String value = "";
 335  
 
 336  0
                 public InputHtmlData(String name, String inputType) {
 337  0
                         this.name = name;
 338  0
                         this.inputType = inputType;
 339  0
                 }
 340  
 
 341  0
                 public InputHtmlData(String name, String inputType, String src) {
 342  0
                         this.name = name;
 343  0
                         this.inputType = inputType;
 344  0
                         this.src = src;
 345  0
                 }
 346  
 
 347  
                 /***********************************************************************
 348  
                  * 
 349  
                  * This method contructs an input tag.
 350  
                  * 
 351  
                  * @see org.kuali.rice.kns.lookup.HtmlData#constructCompleteHtmlTag()
 352  
                  */
 353  
                 public String constructCompleteHtmlTag() {
 354  0
                         return getPrependDisplayText()
 355  
                                         + "<input title=\""
 356  
                                         + title
 357  
                                         + "\""
 358  
                                         + " name=\""
 359  
                                         + getName()
 360  
                                         + "\""
 361  
                                         + (StringUtils.isEmpty(src) ? ""
 362  
                                                         : " src=\"" + src + "\" ")
 363  
                                         + " type=\""
 364  
                                         + getInputType()
 365  
                                         + "\""
 366  
                                         + (StringUtils.isEmpty(value) ? ""
 367  
                                                         : " value=\"" + value + "\" ")
 368  
                                         + (StringUtils.isEmpty(checked) ? ""
 369  
                                                         : " checked=\"" + checked + "\" ")
 370  
                                         + (StringUtils.isEmpty(getStyleClass()) ? ""
 371  
                                                         : " styleClass=\"" + getStyleClass() + "\" ")
 372  
                                         + " border=\"" + getBorder() + "\"" + " value=\""
 373  
                                         + getDisplayText() + "\"" + "/>" + getAppendDisplayText();
 374  
                 }
 375  
 
 376  
                 /**
 377  
                  * @return the inputType
 378  
                  */
 379  
                 public String getInputType() {
 380  0
                         return this.inputType;
 381  
                 }
 382  
 
 383  
                 /**
 384  
                  * @return the src
 385  
                  */
 386  
                 public String getSrc() {
 387  0
                         return this.src;
 388  
                 }
 389  
 
 390  
                 /**
 391  
                  * @return the border
 392  
                  */
 393  
                 public String getBorder() {
 394  0
                         return this.border;
 395  
                 }
 396  
 
 397  
                 /**
 398  
                  * @param border
 399  
                  *            the border to set
 400  
                  */
 401  
                 public void setBorder(String border) {
 402  0
                         this.border = border;
 403  0
                 }
 404  
 
 405  
                 /**
 406  
                  * @return the styleClass
 407  
                  */
 408  
                 public String getStyleClass() {
 409  0
                         return this.styleClass;
 410  
                 }
 411  
 
 412  
                 /**
 413  
                  * @param styleClass
 414  
                  *            the styleClass to set
 415  
                  */
 416  
                 public void setStyleClass(String styleClass) {
 417  0
                         this.styleClass = styleClass;
 418  0
                 }
 419  
 
 420  
                 /**
 421  
                  * @param checked the checked to set
 422  
                  */
 423  
                 public void setChecked(String checked) {
 424  0
                         this.checked = checked;
 425  0
                 }
 426  
 
 427  
                 /**
 428  
                  * @param value the value to set
 429  
                  */
 430  
                 public void setValue(String value) {
 431  0
                         this.value = value;
 432  0
                 }
 433  
 
 434  
         }
 435  
 
 436  0
         public static class MultipleAnchorHtmlData extends AnchorHtmlData {
 437  
                 protected List<AnchorHtmlData> anchorHtmlData;
 438  
                 protected static final String ANCHORS_SEPARATOR = ", ";
 439  
                 
 440  
                 /**
 441  
                  * Needed by inquiry framework
 442  
                  */
 443  0
                 public MultipleAnchorHtmlData(List<AnchorHtmlData> anchorHtmlData) {
 444  0
                         this.anchorHtmlData = anchorHtmlData;
 445  0
                 }
 446  
                 
 447  
                 /**
 448  
                  * 
 449  
                  * This method generates anchor tag.
 450  
                  * 
 451  
                  * @see org.kuali.rice.kns.lookup.HtmlData#constructCompleteHtmlTag()
 452  
                  */
 453  
                 public String constructCompleteHtmlTag() {
 454  0
                         StringBuffer completeHtmlTag = new StringBuffer();
 455  0
                         for(AnchorHtmlData anchor: anchorHtmlData){
 456  0
                                 completeHtmlTag.append(anchor.constructCompleteHtmlTag()+",");
 457  
                         }
 458  0
                 if(completeHtmlTag.toString().endsWith(ANCHORS_SEPARATOR))
 459  0
                         completeHtmlTag.delete(completeHtmlTag.length()-ANCHORS_SEPARATOR.length(), completeHtmlTag.length());
 460  0
                         return completeHtmlTag.toString();
 461  
                 }
 462  
 
 463  
                 /**
 464  
                  * @return the anchorHtmlData
 465  
                  */
 466  
                 public List<AnchorHtmlData> getAnchorHtmlData() {
 467  0
                         return this.anchorHtmlData;
 468  
                 }
 469  
 
 470  
         }
 471  
 
 472  
         /**
 473  
          * @return the maxLength
 474  
          */
 475  
         public int getMaxLength() {
 476  
                 try{
 477  0
                         return Integer.parseInt(this.maxLength);
 478  0
                 } catch(Exception ex){
 479  0
                         return -1;
 480  
                 }
 481  
         }
 482  
 
 483  
         /**
 484  
          * @param maxLength the maxLength to set
 485  
          */
 486  
         public void setMaxLength(String maxLength) {
 487  0
                 this.maxLength = maxLength;
 488  0
         }
 489  
 
 490  
 }