Coverage Report - org.kuali.rice.kew.docsearch.service.impl.DocumentSearchServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentSearchServiceImpl
0%
0/369
0%
0/344
6.676
 
 1  
 /*
 2  
  * Copyright 2006-2011 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  
 
 17  
 package org.kuali.rice.kew.docsearch.service.impl;
 18  
 
 19  
 import org.apache.commons.collections.CollectionUtils;
 20  
 import org.apache.commons.lang.StringUtils;
 21  
 import org.kuali.rice.core.api.config.property.ConfigContext;
 22  
 import org.kuali.rice.core.api.config.property.ConfigurationService;
 23  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 24  
 import org.kuali.rice.core.framework.persistence.jdbc.sql.SqlBuilder;
 25  
 import org.kuali.rice.core.framework.persistence.platform.DatabasePlatform;
 26  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 27  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 28  
 import org.kuali.rice.core.util.ConcreteKeyValue;
 29  
 import org.kuali.rice.core.util.KeyValue;
 30  
 import org.kuali.rice.core.util.RiceConstants;
 31  
 import org.kuali.rice.kew.docsearch.DocSearchCriteriaDTO;
 32  
 import org.kuali.rice.kew.docsearch.DocSearchDTO;
 33  
 import org.kuali.rice.kew.docsearch.DocSearchUtils;
 34  
 import org.kuali.rice.kew.docsearch.DocumentSearchGenerator;
 35  
 import org.kuali.rice.kew.docsearch.DocumentSearchResultComponents;
 36  
 import org.kuali.rice.kew.docsearch.DocumentSearchResultProcessor;
 37  
 import org.kuali.rice.kew.docsearch.SavedSearchResult;
 38  
 import org.kuali.rice.kew.docsearch.SearchAttributeCriteriaComponent;
 39  
 import org.kuali.rice.kew.docsearch.StandardDocumentSearchGenerator;
 40  
 import org.kuali.rice.kew.docsearch.StandardDocumentSearchResultProcessor;
 41  
 import org.kuali.rice.kew.docsearch.dao.DocumentSearchDAO;
 42  
 import org.kuali.rice.kew.docsearch.service.DocumentSearchService;
 43  
 import org.kuali.rice.kew.doctype.bo.DocumentType;
 44  
 import org.kuali.rice.kew.engine.node.RouteNode;
 45  
 import org.kuali.rice.kew.exception.WorkflowServiceError;
 46  
 import org.kuali.rice.kew.exception.WorkflowServiceErrorException;
 47  
 import org.kuali.rice.kew.exception.WorkflowServiceErrorImpl;
 48  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 49  
 import org.kuali.rice.kew.useroptions.UserOptions;
 50  
 import org.kuali.rice.kew.useroptions.UserOptionsService;
 51  
 import org.kuali.rice.kew.util.KEWConstants;
 52  
 import org.kuali.rice.kew.util.Utilities;
 53  
 import org.kuali.rice.kim.bo.Group;
 54  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 55  
 import org.kuali.rice.kns.service.DataDictionaryService;
 56  
 import org.kuali.rice.kns.service.DictionaryValidationService;
 57  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 58  
 import org.kuali.rice.kns.service.KNSServiceLocatorWeb;
 59  
 import org.kuali.rice.kns.util.GlobalVariables;
 60  
 
 61  
 import java.text.MessageFormat;
 62  
 import java.util.ArrayList;
 63  
 import java.util.Arrays;
 64  
 import java.util.Collection;
 65  
 import java.util.Collections;
 66  
 import java.util.List;
 67  
 
 68  
 
 69  0
 public class DocumentSearchServiceImpl implements DocumentSearchService {
 70  
 
 71  0
         private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(DocumentSearchServiceImpl.class);
 72  
 
 73  
         private static final int MAX_SEARCH_ITEMS = 5;
 74  
         private static final String LAST_SEARCH_ORDER_OPTION = "DocSearch.LastSearch.Order";
 75  
         private static final String NAMED_SEARCH_ORDER_BASE = "DocSearch.NamedSearch.";
 76  
         private static final String LAST_SEARCH_BASE_NAME = "DocSearch.LastSearch.Holding";
 77  
         private static final String DOC_SEARCH_CRITERIA_DTO_CLASS = "org.kuali.rice.kew.docsearch.DocSearchCriteriaDTO";
 78  
 
 79  
         private static DictionaryValidationService dictionaryValidationService;
 80  
         private static DataDictionaryService dataDictionaryService;
 81  
         private static ConfigurationService kualiConfigurationService;
 82  
 
 83  
         private DocumentSearchDAO docSearchDao;
 84  
         private UserOptionsService userOptionsService;
 85  
 
 86  0
         private SqlBuilder sqlBuilder = null;
 87  
 
 88  
         public void setDocumentSearchDAO(DocumentSearchDAO docSearchDao) {
 89  0
                 this.docSearchDao = docSearchDao;
 90  0
         }
 91  
 
 92  
         public void setUserOptionsService(UserOptionsService userOptionsService) {
 93  0
                 this.userOptionsService = userOptionsService;
 94  0
         }
 95  
 
 96  
         public void clearNamedSearches(String principalId) {
 97  0
                 String[] clearListNames = { NAMED_SEARCH_ORDER_BASE + "%", LAST_SEARCH_BASE_NAME + "%", LAST_SEARCH_ORDER_OPTION + "%" };
 98  0
         for (String clearListName : clearListNames)
 99  
         {
 100  0
             List<UserOptions> records = userOptionsService.findByUserQualified(principalId, clearListName);
 101  0
             for (UserOptions userOptions : records) {
 102  0
                 userOptionsService.deleteUserOptions((UserOptions) userOptions);
 103  
             }
 104  
         }
 105  0
         }
 106  
 
 107  
         public SavedSearchResult getSavedSearchResults(String principalId, String savedSearchName) {
 108  0
                 UserOptions savedSearch = userOptionsService.findByOptionId(savedSearchName, principalId);
 109  0
                 if (savedSearch == null || savedSearch.getOptionId() == null) {
 110  0
                         return null;
 111  
                 }
 112  0
                 DocSearchCriteriaDTO criteria = getCriteriaFromSavedSearch(savedSearch);
 113  0
                 return new SavedSearchResult(criteria, getList(principalId, criteria));
 114  
         }
 115  
 
 116  
     public DocumentSearchResultComponents getList(String principalId, DocSearchCriteriaDTO criteria) {
 117  0
         return getList(principalId, criteria, false);
 118  
     }
 119  
 
 120  
     public DocumentSearchResultComponents getListRestrictedByCriteria(String principalId, DocSearchCriteriaDTO criteria) {
 121  0
         return getList(principalId, criteria, true);
 122  
     }
 123  
 
 124  
         private DocumentSearchResultComponents getList(String principalId, DocSearchCriteriaDTO criteria, boolean useCriteriaRestrictions) {
 125  0
                 DocumentSearchGenerator docSearchGenerator = null;
 126  0
                 DocumentSearchResultProcessor docSearchResultProcessor = null;
 127  
 
 128  0
                 DocumentType documentType = KEWServiceLocator.getDocumentTypeService().findByName(criteria.getDocTypeFullName());
 129  0
                 if (documentType != null ) {
 130  0
                 docSearchGenerator = documentType.getDocumentSearchGenerator();
 131  0
                 docSearchResultProcessor = documentType.getDocumentSearchResultProcessor();
 132  
                 } else {
 133  0
                         docSearchGenerator = getStandardDocumentSearchGenerator();
 134  0
                 docSearchResultProcessor = getStandardDocumentSearchResultProcessor();
 135  
                 }
 136  0
                 docSearchGenerator.setSearchingUser(principalId);
 137  0
                 performPreSearchConditions(docSearchGenerator,principalId,criteria);
 138  0
         validateDocumentSearchCriteria(docSearchGenerator,criteria);
 139  0
         DocumentSearchResultComponents searchResult = null;
 140  
         try {
 141  0
             List<DocSearchDTO> docListResults = null;
 142  0
             if (useCriteriaRestrictions) {
 143  0
                 docListResults = docSearchDao.getListBoundedByCritera(docSearchGenerator,criteria, principalId);
 144  
             } else {
 145  0
                 docListResults = docSearchDao.getList(docSearchGenerator,criteria, principalId);
 146  
             }
 147  0
             if (docSearchResultProcessor.isProcessFinalResults()) {
 148  0
                 searchResult = docSearchResultProcessor.processIntoFinalResults(docListResults, criteria, principalId);
 149  
             } else {
 150  0
                 searchResult = new StandardDocumentSearchResultProcessor().processIntoFinalResults(docListResults, criteria, principalId);
 151  
             }
 152  
 
 153  0
         } catch (Exception e) {
 154  0
                         String errorMsg = "Error received trying to execute search: " + e.getLocalizedMessage();
 155  0
             throw new WorkflowServiceErrorException(errorMsg, e, new WorkflowServiceErrorImpl(errorMsg,"docsearch.DocumentSearchService.generalError",errorMsg));
 156  0
                 }
 157  0
                 if (!useCriteriaRestrictions || !criteria.isSaveSearchForUser()) {
 158  
             try {
 159  0
                 saveSearch(principalId, criteria);
 160  0
             } catch (RuntimeException e) {
 161  0
                     LOG.warn("Unable to save search due to RuntimeException with message: " + e.getMessage());
 162  0
                     LOG.warn("RuntimeException will be ignored and may cause transaction problems");
 163  
                 // swallerin it, cuz we look to be read only
 164  0
                     }
 165  
             }
 166  0
         return searchResult;
 167  
         }
 168  
 
 169  
     public DocumentSearchGenerator getStandardDocumentSearchGenerator() {
 170  0
         String searchGeneratorClass = ConfigContext.getCurrentContextConfig().getProperty(KEWConstants.STANDARD_DOC_SEARCH_GENERATOR_CLASS_CONFIG_PARM);
 171  0
         if (searchGeneratorClass == null){
 172  0
             return new StandardDocumentSearchGenerator();
 173  
         }
 174  0
             return (DocumentSearchGenerator)GlobalResourceLoader.getObject(new ObjectDefinition(searchGeneratorClass));
 175  
     }
 176  
 
 177  
     public DocumentSearchResultProcessor getStandardDocumentSearchResultProcessor() {
 178  0
         String searchGeneratorClass = ConfigContext.getCurrentContextConfig().getProperty(KEWConstants.STANDARD_DOC_SEARCH_RESULT_PROCESSOR_CLASS_CONFIG_PARM);
 179  0
         if (searchGeneratorClass == null){
 180  0
             return new StandardDocumentSearchResultProcessor();
 181  
         }
 182  0
             return (DocumentSearchResultProcessor)GlobalResourceLoader.getObject(new ObjectDefinition(searchGeneratorClass));
 183  
     }
 184  
 
 185  
     public void performPreSearchConditions(DocumentSearchGenerator docSearchGenerator,String principalId,DocSearchCriteriaDTO criteria) {
 186  0
         List<WorkflowServiceError> errors = docSearchGenerator.performPreSearchConditions(principalId,criteria);
 187  0
         if (!errors.isEmpty()) {
 188  0
             throw new WorkflowServiceErrorException("Document Search Precondition Errors", errors);
 189  
         }
 190  0
     }
 191  
 
 192  
     public void validateDocumentSearchCriteria(DocumentSearchGenerator docSearchGenerator,DocSearchCriteriaDTO criteria) {
 193  0
         List<WorkflowServiceError> errors = this.validateWorkflowDocumentSearchCriteria(criteria);
 194  0
         errors.addAll(docSearchGenerator.validateSearchableAttributes(criteria));
 195  0
         if (!errors.isEmpty() || !GlobalVariables.getMessageMap().hasNoErrors()) {
 196  0
             throw new WorkflowServiceErrorException("Document Search Validation Errors", errors);
 197  
         }
 198  0
     }
 199  
 
 200  
     protected List<WorkflowServiceError> validateWorkflowDocumentSearchCriteria(DocSearchCriteriaDTO criteria) {
 201  0
         List<WorkflowServiceError> errors = new ArrayList<WorkflowServiceError>();
 202  
 
 203  
         // trim the network ids.  Validation isn't really necessary, because if not found, no results will
 204  
         // be returned.
 205  0
         if (!StringUtils.isEmpty(criteria.getApprover())) {
 206  0
             criteria.setApprover(criteria.getApprover().trim());
 207  
         }
 208  0
         if (!StringUtils.isEmpty(criteria.getViewer())) {
 209  0
             criteria.setViewer(criteria.getViewer().trim());
 210  
         }
 211  0
         if (!StringUtils.isEmpty(criteria.getInitiator())) {
 212  0
             criteria.setInitiator(criteria.getInitiator().trim());
 213  
         }
 214  
 
 215  0
         if (! validateWorkgroup(criteria.getWorkgroupViewerId(), criteria.getWorkgroupViewerName())) {
 216  0
             errors.add(new WorkflowServiceErrorImpl("Workgroup Viewer Name is not a workgroup", "docsearch.DocumentSearchService.workgroup.viewer"));
 217  
         } else {
 218  0
             if (!org.apache.commons.lang.StringUtils.isEmpty(criteria.getWorkgroupViewerName())){
 219  0
                 criteria.setWorkgroupViewerName(criteria.getWorkgroupViewerName().trim());
 220  
             }
 221  
         }
 222  
 
 223  0
         if (!validateNumber(criteria.getDocVersion())) {
 224  0
             errors.add(new WorkflowServiceErrorImpl("Non-numeric document version", "docsearch.DocumentSearchService.docVersion"));
 225  
         } else {
 226  0
             if (criteria.getDocVersion() != null && !"".equals(criteria.getDocVersion().trim())) {
 227  0
                 criteria.setDocVersion(criteria.getDocVersion().trim());
 228  
             }
 229  
         }
 230  0
         if (!validateNumber(criteria.getRouteHeaderId())) {
 231  0
             errors.add(new WorkflowServiceErrorImpl("Non-numeric document id", "docsearch.DocumentSearchService.routeHeaderId"));
 232  
         } else {
 233  0
             if (criteria.getRouteHeaderId() != null && !"".equals(criteria.getRouteHeaderId().trim())) {
 234  0
                 criteria.setRouteHeaderId(criteria.getRouteHeaderId().trim());
 235  
             }
 236  
         }
 237  
 
 238  
         // validate any dates
 239  0
         boolean compareDatePairs = true;
 240  0
         if (!validateDate("fromDateCreated", criteria.getFromDateCreated(), "fromDateCreated")) {
 241  0
             compareDatePairs = false;
 242  
         } else {
 243  0
             if (criteria.getFromDateCreated() != null && !"".equals(criteria.getFromDateCreated().trim())) {
 244  0
                 criteria.setFromDateCreated(criteria.getFromDateCreated().trim());
 245  
             } else {
 246  0
                 compareDatePairs = false;
 247  
             }
 248  
         }
 249  0
         if (!validateDate("toDateCreated", criteria.getToDateCreated(), "toDateCreated")) {
 250  0
             compareDatePairs = false;
 251  
         } else {
 252  0
             if (criteria.getToDateCreated() != null && !"".equals(criteria.getToDateCreated().trim())) {
 253  0
                 criteria.setToDateCreated(criteria.getToDateCreated().trim());
 254  
             } else {
 255  0
                 compareDatePairs = false;
 256  
             }
 257  
         }
 258  0
         if (compareDatePairs) {
 259  0
             if (!checkDateRanges(criteria.getFromDateCreated(), criteria.getToDateCreated())) {
 260  0
                     String[] messageArgs = getDataDictionaryService().getAttributeValidatingErrorMessageParameters(
 261  
                                     DOC_SEARCH_CRITERIA_DTO_CLASS, "fromDateCreated");
 262  0
                     errors.add(new WorkflowServiceErrorImpl(MessageFormat.format(getKualiConfigurationService().getPropertyString(
 263  
                                                     getDataDictionaryService().getAttributeValidatingErrorMessageKey(DOC_SEARCH_CRITERIA_DTO_CLASS, "fromDateCreated") +
 264  
                                                                     ".range"), messageArgs[0]), "docsearch.DocumentSearchService.dateCreatedRange"));
 265  
             }
 266  
         }
 267  0
         compareDatePairs = true;
 268  0
         if (!validateDate("fromDateApproved", criteria.getFromDateApproved(), "fromDateApproved")) {
 269  0
             compareDatePairs = false;
 270  
         } else {
 271  0
             if (criteria.getFromDateApproved() != null && !"".equals(criteria.getFromDateApproved().trim())) {
 272  0
                 criteria.setFromDateApproved(criteria.getFromDateApproved().trim());
 273  
             } else {
 274  0
                 compareDatePairs = false;
 275  
             }
 276  
         }
 277  0
         if (!validateDate("toDateApproved", criteria.getToDateApproved(), "toDateApproved")) {
 278  0
             compareDatePairs = false;
 279  
         } else {
 280  0
             if (criteria.getToDateApproved() != null && !"".equals(criteria.getToDateApproved().trim())) {
 281  0
                 criteria.setToDateApproved(criteria.getToDateApproved().trim());
 282  
             } else {
 283  0
                 compareDatePairs = false;
 284  
             }
 285  
         }
 286  0
         if (compareDatePairs) {
 287  0
             if (!checkDateRanges(criteria.getFromDateApproved(), criteria.getToDateApproved())) {
 288  0
                     String[] messageArgs = getDataDictionaryService().getAttributeValidatingErrorMessageParameters(
 289  
                                     DOC_SEARCH_CRITERIA_DTO_CLASS, "fromDateApproved");
 290  0
                     errors.add(new WorkflowServiceErrorImpl(MessageFormat.format(getKualiConfigurationService().getPropertyString(
 291  
                                                     getDataDictionaryService().getAttributeValidatingErrorMessageKey(DOC_SEARCH_CRITERIA_DTO_CLASS, "fromDateApproved") +
 292  
                                                                     ".range"), messageArgs[0]), "docsearch.DocumentSearchService.dateApprovedRange"));
 293  
             }
 294  
         }
 295  0
         compareDatePairs = true;
 296  0
         if (!validateDate("fromDateFinalized", criteria.getFromDateFinalized(), "fromDateFinalized")) {
 297  0
             compareDatePairs = false;
 298  
         } else {
 299  0
             if (criteria.getFromDateFinalized() != null && !"".equals(criteria.getFromDateFinalized().trim())) {
 300  0
                 criteria.setFromDateFinalized(criteria.getFromDateFinalized().trim());
 301  
             } else {
 302  0
                 compareDatePairs = false;
 303  
             }
 304  
         }
 305  0
         if (!validateDate("toDateFinalized", criteria.getToDateFinalized(), "toDateFinalized")) {
 306  0
             compareDatePairs = false;
 307  
         } else {
 308  0
             if (criteria.getToDateFinalized() != null && !"".equals(criteria.getToDateFinalized().trim())) {
 309  0
                 criteria.setToDateFinalized(criteria.getToDateFinalized().trim());
 310  
             } else {
 311  0
                 compareDatePairs = false;
 312  
             }
 313  
         }
 314  0
         if (compareDatePairs) {
 315  0
             if (!checkDateRanges(criteria.getFromDateFinalized(), criteria.getToDateFinalized())) {
 316  0
                     String[] messageArgs = getDataDictionaryService().getAttributeValidatingErrorMessageParameters(
 317  
                                     DOC_SEARCH_CRITERIA_DTO_CLASS, "fromDateFinalized");
 318  0
                     errors.add(new WorkflowServiceErrorImpl(MessageFormat.format(getKualiConfigurationService().getPropertyString(
 319  
                                                     getDataDictionaryService().getAttributeValidatingErrorMessageKey(DOC_SEARCH_CRITERIA_DTO_CLASS, "fromDateFinalized") +
 320  
                                                                     ".range"), messageArgs[0]), "docsearch.DocumentSearchService.dateFinalizedRange"));
 321  
             }
 322  
         }
 323  0
         compareDatePairs = true;
 324  0
         if (!validateDate("fromDateLastModified", criteria.getFromDateLastModified(), "fromDateLastModified")) {
 325  0
             compareDatePairs = false;
 326  
         } else {
 327  0
             if (criteria.getFromDateLastModified() != null && !"".equals(criteria.getFromDateLastModified().trim())) {
 328  0
                 criteria.setFromDateLastModified(criteria.getFromDateLastModified().trim());
 329  
             } else {
 330  0
                 compareDatePairs = false;
 331  
             }
 332  
         }
 333  0
         if (!validateDate("toDateLastModified", criteria.getToDateLastModified(), "toDateLastModified")) {
 334  0
             compareDatePairs = false;
 335  
         } else {
 336  0
             if (criteria.getToDateLastModified() != null && !"".equals(criteria.getToDateLastModified().trim())) {
 337  0
                 criteria.setToDateLastModified(criteria.getToDateLastModified().trim());
 338  
             } else {
 339  0
                 compareDatePairs = false;
 340  
             }
 341  
         }
 342  0
         if (compareDatePairs) {
 343  0
             if (!checkDateRanges(criteria.getFromDateLastModified(), criteria.getToDateLastModified())) {
 344  0
                     String[] messageArgs = getDataDictionaryService().getAttributeValidatingErrorMessageParameters(
 345  
                                     DOC_SEARCH_CRITERIA_DTO_CLASS, "fromDateLastModified");
 346  0
                     errors.add(new WorkflowServiceErrorImpl(MessageFormat.format(getKualiConfigurationService().getPropertyString(
 347  
                                                     getDataDictionaryService().getAttributeValidatingErrorMessageKey(DOC_SEARCH_CRITERIA_DTO_CLASS, "fromDateLastModified") +
 348  
                                                                     ".range"), messageArgs[0]), "docsearch.DocumentSearchService.dateLastModifiedRange"));
 349  
             }
 350  
         }
 351  0
         return errors;
 352  
     }
 353  
 
 354  
     private boolean validateNetworkId(List<String> networkIds){
 355  0
             for(String networkId: networkIds){
 356  0
                     if(!this.validateNetworkId(networkId)){
 357  0
                             return false;
 358  
                     }
 359  
             }
 360  0
             return true;
 361  
     }
 362  
         private boolean validateNetworkId(String networkId) {
 363  0
                 if ((networkId == null) || networkId.trim().equals("")) {
 364  0
                         return true;
 365  
                 }
 366  
                 try {
 367  0
                         return KIMServiceLocator.getIdentityManagementService().getPrincipalByPrincipalName(networkId.trim()) != null;
 368  0
                 } catch (Exception ex) {
 369  0
                         LOG.debug(ex, ex);
 370  0
                         return false;
 371  
                 }
 372  
         }
 373  
 
 374  
         private boolean validatePersonByPrincipalName(String principalName){
 375  0
         return true;
 376  
                 /*if(StringUtils.isBlank(principalName)) {
 377  
                         return true;
 378  
                 }
 379  
                 Person person = KIMServiceLocator.getPersonService().getPersonByPrincipalName(principalName);
 380  
                 return person != null;*/
 381  
         }
 382  
 
 383  
         private boolean validateDate(String dateFieldName, String dateFieldValue, String dateFieldErrorKey) {
 384  
                 // Validates the date format via the dictionary validation service. If validation fails, the validation service adds an error to the message map.
 385  0
                 int oldErrorCount = GlobalVariables.getMessageMap().getErrorCount();
 386  0
                 getDictionaryValidationService().validateAttributeFormat(DOC_SEARCH_CRITERIA_DTO_CLASS, dateFieldName, dateFieldValue,
 387  
                                 KEWConstants.SearchableAttributeConstants.DATA_TYPE_DATE, dateFieldErrorKey);
 388  0
                 return (GlobalVariables.getMessageMap().getErrorCount() <= oldErrorCount);
 389  
                 //return Utilities.validateDate(date, true);
 390  
         }
 391  
 
 392  
         private boolean checkDateRanges(String fromDate, String toDate) {
 393  0
                 return Utilities.checkDateRanges(fromDate, toDate);
 394  
         }
 395  
 
 396  
         private boolean validateNumber(List<String> integers) {
 397  0
                 for(String integer: integers){
 398  0
                     if(!this.validateNumber(integer)){
 399  0
                             return false;
 400  
                     }
 401  
             }
 402  0
             return true;
 403  
         }
 404  
 
 405  
         private boolean validateNumber(String integer) {
 406  0
                 if ((integer == null) || integer.trim().equals("")) {
 407  0
                         return true;
 408  
                 }
 409  0
                 return SqlBuilder.isValidNumber(integer);
 410  
 
 411  
         }
 412  
 
 413  
     private boolean validateWorkgroup(String id, String workgroupName) {
 414  0
         if (org.apache.commons.lang.StringUtils.isEmpty(workgroupName)) {
 415  0
             return true;
 416  
         }
 417  0
         Group group = KIMServiceLocator.getIdentityManagementService().getGroup(id);
 418  0
         return group != null;
 419  
     }
 420  
 
 421  
         public List<KeyValue> getNamedSearches(String principalId) {
 422  0
                 List<UserOptions> namedSearches = userOptionsService.findByUserQualified(principalId, NAMED_SEARCH_ORDER_BASE + "%");
 423  0
                 List<KeyValue> sortedNamedSearches = new ArrayList<KeyValue>(0);
 424  0
                 if (namedSearches != null && namedSearches.size() > 0) {
 425  0
                         Collections.sort(namedSearches);
 426  0
                         for (UserOptions namedSearch : namedSearches) {
 427  0
                                 KeyValue keyValue = new ConcreteKeyValue(namedSearch.getOptionId(), namedSearch.getOptionId().substring(NAMED_SEARCH_ORDER_BASE.length(), namedSearch.getOptionId().length()));
 428  0
                                 sortedNamedSearches.add(keyValue);
 429  0
                         }
 430  
                 }
 431  0
                 return sortedNamedSearches;
 432  
         }
 433  
 
 434  
         public List<KeyValue> getMostRecentSearches(String principalId) {
 435  0
                 UserOptions order = userOptionsService.findByOptionId(LAST_SEARCH_ORDER_OPTION, principalId);
 436  0
                 List<KeyValue> sortedMostRecentSearches = new ArrayList<KeyValue>();
 437  0
                 if (order != null && order.getOptionVal() != null && !"".equals(order.getOptionVal())) {
 438  0
                         List<UserOptions> mostRecentSearches = userOptionsService.findByUserQualified(principalId, LAST_SEARCH_BASE_NAME + "%");
 439  0
                         String[] ordered = order.getOptionVal().split(",");
 440  0
             for (String anOrdered : ordered)
 441  
             {
 442  0
                 UserOptions matchingOption = null;
 443  0
                 for (UserOptions option : mostRecentSearches)
 444  
                 {
 445  0
                     if (anOrdered.equals(option.getOptionId()))
 446  
                     {
 447  0
                         matchingOption = option;
 448  0
                         break;
 449  
                     }
 450  
                 }
 451  0
                 if (matchingOption != null)
 452  
                 {
 453  0
                         sortedMostRecentSearches.add(new ConcreteKeyValue(anOrdered, getCriteriaFromSavedSearch(matchingOption).getDocumentSearchAbbreviatedString()));
 454  
                 }
 455  
             }
 456  
                 }
 457  0
                 return sortedMostRecentSearches;
 458  
         }
 459  
 
 460  
         private void saveSearch(String principalId, DocSearchCriteriaDTO criteria) {
 461  0
                 if (StringUtils.isBlank(principalId)) {
 462  0
                         String message = "User given to save search was null.";
 463  0
                         LOG.warn(message);
 464  0
                         throw new IllegalArgumentException(message);
 465  
                 }
 466  0
                 StringBuffer savedSearchString = new StringBuffer();
 467  0
                 savedSearchString.append(criteria.getAppDocId() == null || "".equals(criteria.getAppDocId()) ? "" : ",,appDocId=" + criteria.getAppDocId());
 468  0
                 savedSearchString.append(criteria.getApprover() == null || "".equals(criteria.getApprover()) ? "" : ",,approver=" + criteria.getApprover());
 469  
 
 470  0
         if (! org.apache.commons.lang.StringUtils.isEmpty(criteria.getDocRouteNodeId()) && !criteria.getDocRouteNodeId().equals("-1")) {
 471  0
             RouteNode routeNode = KEWServiceLocator.getRouteNodeService().findRouteNodeById(new Long(criteria.getDocRouteNodeId()));
 472  
             // this block will result in NPE if routeNode is not found; is the intent to preserve the requested criteria? if so, then the following line fixes it
 473  
             //savedSearchString.append(",,docRouteNodeId=" + (routeNode != null ? routeNode.getRouteNodeId() : criteria.getDocRouteNodeId()));
 474  0
             savedSearchString.append(",,docRouteNodeId=");
 475  0
             savedSearchString.append(routeNode.getRouteNodeId());
 476  0
             savedSearchString.append(criteria.getDocRouteNodeLogic() == null || "".equals(criteria.getDocRouteNodeLogic()) ? "" : ",,docRouteNodeLogic=" + criteria.getDocRouteNodeLogic());
 477  
         }
 478  
 
 479  0
                 savedSearchString.append(criteria.getDocRouteStatus() == null || "".equals(criteria.getDocRouteStatus()) ? "" : ",,docRouteStatus=" + criteria.getDocRouteStatus());
 480  0
                 savedSearchString.append(criteria.getDocTitle() == null || "".equals(criteria.getDocTitle()) ? "" : ",,docTitle=" + criteria.getDocTitle());
 481  0
                 savedSearchString.append(criteria.getDocTypeFullName() == null || "".equals(criteria.getDocTypeFullName()) ? "" : ",,docTypeFullName=" + criteria.getDocTypeFullName());
 482  0
                 savedSearchString.append(criteria.getDocVersion() == null || "".equals(criteria.getDocVersion()) ? "" : ",,docVersion=" + criteria.getDocVersion());
 483  0
                 savedSearchString.append(criteria.getFromDateApproved() == null || "".equals(criteria.getFromDateApproved()) ? "" : ",,fromDateApproved=" + criteria.getFromDateApproved());
 484  0
                 savedSearchString.append(criteria.getFromDateCreated() == null || "".equals(criteria.getFromDateCreated()) ? "" : ",,fromDateCreated=" + criteria.getFromDateCreated());
 485  0
                 savedSearchString.append(criteria.getFromDateFinalized() == null || "".equals(criteria.getFromDateFinalized()) ? "" : ",,fromDateFinalized=" + criteria.getFromDateFinalized());
 486  0
                 savedSearchString.append(criteria.getFromDateLastModified() == null || "".equals(criteria.getFromDateLastModified()) ? "" : ",,fromDateLastModified=" + criteria.getFromDateLastModified());
 487  0
                 savedSearchString.append(criteria.getInitiator() == null || "".equals(criteria.getInitiator()) ? "" : ",,initiator=" + criteria.getInitiator());
 488  0
                 savedSearchString.append(criteria.getOverrideInd() == null || "".equals(criteria.getOverrideInd()) ? "" : ",,overrideInd=" + criteria.getOverrideInd());
 489  0
                 savedSearchString.append(criteria.getRouteHeaderId() == null || "".equals(criteria.getRouteHeaderId()) ? "" : ",,routeHeaderId=" + criteria.getRouteHeaderId());
 490  0
                 savedSearchString.append(criteria.getToDateApproved() == null || "".equals(criteria.getToDateApproved()) ? "" : ",,toDateApproved=" + criteria.getToDateApproved());
 491  0
                 savedSearchString.append(criteria.getToDateCreated() == null || "".equals(criteria.getToDateCreated()) ? "" : ",,toDateCreated=" + criteria.getToDateCreated());
 492  0
                 savedSearchString.append(criteria.getToDateFinalized() == null || "".equals(criteria.getToDateFinalized()) ? "" : ",,toDateFinalized=" + criteria.getToDateFinalized());
 493  0
                 savedSearchString.append(criteria.getToDateLastModified() == null || "".equals(criteria.getToDateLastModified()) ? "" : ",,toDateLastModified=" + criteria.getToDateLastModified());
 494  0
         savedSearchString.append(criteria.getViewer() == null || "".equals(criteria.getViewer()) ? "" : ",,viewer=" + criteria.getViewer());
 495  0
         savedSearchString.append(criteria.getWorkgroupViewerName() == null || "".equals(criteria.getWorkgroupViewerName()) ? "" : ",,workgroupViewerName=" + criteria.getWorkgroupViewerName());
 496  0
         savedSearchString.append(criteria.getWorkgroupViewerName() == null || "".equals(criteria.getWorkgroupViewerId()) ? "" : ",,workgroupViewerId=" + criteria.getWorkgroupViewerId());
 497  0
                 savedSearchString.append(criteria.getNamedSearch() == null || "".equals(criteria.getNamedSearch()) ? "" : ",,namedSearch=" + criteria.getNamedSearch());
 498  0
                 savedSearchString.append(criteria.getSearchableAttributes().isEmpty() ? "" : ",,searchableAttributes=" + buildSearchableAttributeString(criteria.getSearchableAttributes()));
 499  
 
 500  0
                 if (savedSearchString.toString() != null && !"".equals(savedSearchString.toString().trim())) {
 501  
 
 502  0
             savedSearchString.append(criteria.getIsAdvancedSearch() == null || "".equals(criteria.getIsAdvancedSearch()) ? "" : ",,isAdvancedSearch=" + criteria.getIsAdvancedSearch());
 503  0
             savedSearchString.append(criteria.getSuperUserSearch() == null || "".equals(criteria.getSuperUserSearch()) ? "" : ",,superUserSearch=" + criteria.getSuperUserSearch());
 504  
 
 505  0
                         if (criteria.getNamedSearch() != null && !"".equals(criteria.getNamedSearch().trim())) {
 506  0
                                 userOptionsService.save(principalId, NAMED_SEARCH_ORDER_BASE + criteria.getNamedSearch(), savedSearchString.toString());
 507  
                         } else {
 508  
                                 // first determine the current ordering
 509  0
                                 UserOptions searchOrder = userOptionsService.findByOptionId(LAST_SEARCH_ORDER_OPTION, principalId);
 510  0
                                 if (searchOrder == null) {
 511  0
                                         userOptionsService.save(principalId, LAST_SEARCH_BASE_NAME + "0", savedSearchString.toString());
 512  0
                                         userOptionsService.save(principalId, LAST_SEARCH_ORDER_OPTION, LAST_SEARCH_BASE_NAME + "0");
 513  
                                 } else {
 514  0
                                         String[] currentOrder = searchOrder.getOptionVal().split(",");
 515  0
                                         if (currentOrder.length == MAX_SEARCH_ITEMS) {
 516  0
                                                 String searchName = currentOrder[currentOrder.length - 1];
 517  0
                                                 String[] newOrder = new String[MAX_SEARCH_ITEMS];
 518  0
                                                 newOrder[0] = searchName;
 519  0
                                                 for (int i = 0; i < currentOrder.length - 1; i++) {
 520  0
                                                         newOrder[i + 1] = currentOrder[i];
 521  
                                                 }
 522  0
                                                 String newSearchOrder = "";
 523  0
                         for (String aNewOrder : newOrder)
 524  
                         {
 525  0
                             if (!"".equals(newSearchOrder))
 526  
                             {
 527  0
                                 newSearchOrder += ",";
 528  
                             }
 529  0
                             newSearchOrder += aNewOrder;
 530  
                         }
 531  0
                                                 userOptionsService.save(principalId, searchName, savedSearchString.toString());
 532  0
                                                 userOptionsService.save(principalId, LAST_SEARCH_ORDER_OPTION, newSearchOrder);
 533  0
                                         } else {
 534  
                                                 // here we need to do a push so identify the highest used number which is from the
 535  
                                                 // first one in the array, and then add one to it, and push the rest back one
 536  0
                                                 int absMax = 0;
 537  0
                         for (String aCurrentOrder : currentOrder)
 538  
                         {
 539  0
                             int current = new Integer(aCurrentOrder.substring(LAST_SEARCH_BASE_NAME.length(), aCurrentOrder.length()));
 540  0
                             if (current > absMax)
 541  
                             {
 542  0
                                 absMax = current;
 543  
                             }
 544  
                         }
 545  
 
 546  0
                                                 String searchName = LAST_SEARCH_BASE_NAME + ++absMax;
 547  0
                                                 String[] newOrder = new String[currentOrder.length + 1];
 548  0
                                                 newOrder[0] = searchName;
 549  0
                                                 for (int i = 0; i < currentOrder.length; i++) {
 550  0
                                                         newOrder[i + 1] = currentOrder[i];
 551  
                                                 }
 552  0
                                                 String newSearchOrder = "";
 553  0
                         for (String aNewOrder : newOrder)
 554  
                         {
 555  0
                             if (!"".equals(newSearchOrder))
 556  
                             {
 557  0
                                 newSearchOrder += ",";
 558  
                             }
 559  0
                             newSearchOrder += aNewOrder;
 560  
                         }
 561  0
                                                 userOptionsService.save(principalId, searchName, savedSearchString.toString());
 562  0
                                                 userOptionsService.save(principalId, LAST_SEARCH_ORDER_OPTION, newSearchOrder);
 563  
                                         }
 564  
                                 }
 565  
                         }
 566  
                 }
 567  0
         }
 568  
 
 569  
         /**
 570  
          * Build String of searchable attributes that can be saved with search criteria
 571  
          *
 572  
          * @param searchableAttributes
 573  
          *            searchable attributes to save
 574  
          * @return String representation of searchable attributes
 575  
          */
 576  
         private String buildSearchableAttributeString(List<SearchAttributeCriteriaComponent> searchableAttributes) {
 577  0
                 final StringBuilder searchableAttributeBuffer = new StringBuilder();
 578  
 
 579  0
                 for (SearchAttributeCriteriaComponent component : searchableAttributes) {
 580  
                         // the following code will remove quickfinder fields
 581  0
                         if ( (component.getFormKey() == null) ||
 582  
                  (component.getValue() == null && (CollectionUtils.isEmpty(component.getValues()))) ) {
 583  0
                                 continue;
 584  
                         }
 585  
 
 586  0
             if (component.getValue() != null) {
 587  0
                                 if (searchableAttributeBuffer.length() > 0) {
 588  0
                                         searchableAttributeBuffer.append(",");
 589  
                                 }
 590  0
                                 searchableAttributeBuffer.append(component.getFormKey());
 591  0
                                 searchableAttributeBuffer.append(":");
 592  0
                                 searchableAttributeBuffer.append(component.getValue());
 593  0
             } else if (!CollectionUtils.isEmpty(component.getValues())) {
 594  0
                 for (String value : component.getValues()) {
 595  0
                     if (searchableAttributeBuffer.length() > 0) {
 596  0
                         searchableAttributeBuffer.append(",");
 597  
                     }
 598  0
                     searchableAttributeBuffer.append(component.getFormKey());
 599  0
                     searchableAttributeBuffer.append(":");
 600  0
                     searchableAttributeBuffer.append(value);
 601  
                 }
 602  
             } else {
 603  0
                 throw new RuntimeException("Error occurred building searchable attribute string trying to find search attribute component value or values");
 604  
             }
 605  
                 }
 606  
 
 607  0
                 return searchableAttributeBuffer.toString();
 608  
         }
 609  
 
 610  
         /**
 611  
          * Build List of searchable attributes from saved searchable attributes string
 612  
          *
 613  
          * @param searchableAttributeString
 614  
          *            String representation of searchable attributes
 615  
          * @return searchable attributes list
 616  
          */
 617  
 //        private List buildSearchableAttributesFromString(String searchableAttributeString, String documentTypeName) {
 618  
 //                List searchableAttributes = new ArrayList();
 619  
 //                Map criteriaComponentsByKey = new HashMap();
 620  
 //
 621  
 //                if (!org.apache.commons.lang.StringUtils.isEmpty(documentTypeName)) {
 622  
 //                        DocumentType docType = ((DocumentTypeService)KEWServiceLocator.getService(KEWServiceLocator.DOCUMENT_TYPE_SERVICE)).findByName(documentTypeName);
 623  
 //                        if (docType == null) {
 624  
 //                                String errorMsg = "Cannot find document type for given name '" + documentTypeName + "'";
 625  
 //                                LOG.error("buildSearchableAttributesFromString() " + errorMsg);
 626  
 //                                throw new RuntimeException(errorMsg);
 627  
 //                        }
 628  
 //                        for (SearchableAttribute searchableAttribute : docType.getSearchableAttributes()) {
 629  
 //                                for (Row row : searchableAttribute.getSearchingRows()) {
 630  
 //                                        for (Field field : row.getFields()) {
 631  
 //                                                SearchableAttributeValue searchableAttributeValue = DocSearchUtils.getSearchableAttributeValueByDataTypeString(field.getFieldDataType());
 632  
 //                                                SearchAttributeCriteriaComponent sacc = new SearchAttributeCriteriaComponent(field.getPropertyName(),null,field.getSavablePropertyName(),searchableAttributeValue);
 633  
 //                                        sacc.setRangeSearch(field.isMemberOfRange());
 634  
 //                                        sacc.setAllowWildcards(field.isAllowingWildcards());
 635  
 //                                        sacc.setAutoWildcardBeginning(field.isAutoWildcardAtBeginning());
 636  
 //                                        sacc.setAutoWildcardEnd(field.isAutoWildcardAtEnding());
 637  
 //                                        sacc.setCaseSensitive(field.isCaseSensitive());
 638  
 //                                        sacc.setSearchInclusive(field.isInclusive());
 639  
 //                        sacc.setSearchable(field.isSearchable());
 640  
 //                        sacc.setCanHoldMultipleValues(Field.MULTI_VALUE_FIELD_TYPES.contains(field.getFieldType()));
 641  
 //                                        criteriaComponentsByKey.put(field.getPropertyName(), sacc);
 642  
 //                                        }
 643  
 //                                }
 644  
 //                        }
 645  
 //                }
 646  
 //
 647  
 //        Map<String,List<String>> checkForMultiValueSearchableAttributes = new HashMap<String,List<String>>();
 648  
 //                if ((searchableAttributeString != null) && (searchableAttributeString.trim().length() > 0)) {
 649  
 //                        StringTokenizer tokenizer = new StringTokenizer(searchableAttributeString, ",");
 650  
 //                        while (tokenizer.hasMoreTokens()) {
 651  
 //                                String searchableAttribute = tokenizer.nextToken();
 652  
 //                                int index = searchableAttribute.indexOf(":");
 653  
 //                                if (index != -1) {
 654  
 //                                        String key = searchableAttribute.substring(0, index);
 655  
 ////                                        String savedKey = key;
 656  
 ////                                        if (key.indexOf(SearchableAttribute.RANGE_LOWER_BOUND_PROPERTY_PREFIX) == 0) {
 657  
 ////                                                savedKey = key.substring(SearchableAttribute.RANGE_LOWER_BOUND_PROPERTY_PREFIX.length());
 658  
 ////                                        } else if (key.indexOf(SearchableAttribute.RANGE_UPPER_BOUND_PROPERTY_PREFIX) == 0) {
 659  
 ////                                                savedKey = key.substring(SearchableAttribute.RANGE_UPPER_BOUND_PROPERTY_PREFIX.length());
 660  
 ////                                        }
 661  
 //                                        String value = searchableAttribute.substring(index + 1);
 662  
 //                                        SearchAttributeCriteriaComponent critComponent = (SearchAttributeCriteriaComponent) criteriaComponentsByKey.get(key);
 663  
 //                    if (critComponent == null) {
 664  
 //                        // here we potentially have a change to the searchable attributes dealing with naming or ranges... so we just ignore the values
 665  
 //                        continue;
 666  
 //                    }
 667  
 //                    if (critComponent.getSearchableAttributeValue() == null) {
 668  
 //                                                String errorMsg = "Cannot find SearchableAttributeValue for given key '" + key + "'";
 669  
 //                                                LOG.error("buildSearchableAttributesFromString() " + errorMsg);
 670  
 //                                                throw new RuntimeException(errorMsg);
 671  
 //                                        }
 672  
 //                    if (critComponent.isCanHoldMultipleValues()) {
 673  
 //                        // should be multivalue
 674  
 //                        if (checkForMultiValueSearchableAttributes.containsKey(key)) {
 675  
 //                            List<String> keyList = checkForMultiValueSearchableAttributes.get(key);
 676  
 //                            keyList.add(value);
 677  
 //                            checkForMultiValueSearchableAttributes.put(key, keyList);
 678  
 //                        } else {
 679  
 //                            List<String> tempList = new ArrayList<String>();
 680  
 //                            tempList.add(value);
 681  
 ////                            tempList.addAll(Arrays.asList(new String[]{value}));
 682  
 //                            checkForMultiValueSearchableAttributes.put(key, tempList);
 683  
 //                            searchableAttributes.add(critComponent);
 684  
 //                        }
 685  
 //                    }
 686  
 //                    else {
 687  
 //                        // should be single value
 688  
 //                        if (checkForMultiValueSearchableAttributes.containsKey(key)) {
 689  
 //                            // attempting to use multiple values in a field that does not support it
 690  
 //                            String error = "Attempting to add multiple values to a search attribute (key: '" + key + "') that does not suppor them";
 691  
 //                            LOG.error("buildSearchableAttributesFromString() " + error);
 692  
 //                            // we don't blow chunks here in case an attribute has been altered from multi-value to non-multi-value
 693  
 //                        }
 694  
 //                        critComponent.setValue(value);
 695  
 //                        searchableAttributes.add(critComponent);
 696  
 //                    }
 697  
 //
 698  
 //
 699  
 //                                }
 700  
 //                        }
 701  
 //            for (Iterator iter = searchableAttributes.iterator(); iter.hasNext();) {
 702  
 //                SearchAttributeCriteriaComponent criteriaComponent = (SearchAttributeCriteriaComponent) iter.next();
 703  
 //                if (criteriaComponent.isCanHoldMultipleValues()) {
 704  
 //                    List values =(List)checkForMultiValueSearchableAttributes.get(criteriaComponent.getFormKey());
 705  
 //                    criteriaComponent.setValue(null);
 706  
 //                    criteriaComponent.setValues(values);
 707  
 //                }
 708  
 //            }
 709  
 //                }
 710  
 //
 711  
 //                return searchableAttributes;
 712  
 //        }
 713  
 
 714  
         /**
 715  
          *
 716  
          * retrieve a document type. This is not a case sensitive search so "TravelRequest" == "Travelrequest"
 717  
          *
 718  
          * @param docTypeName
 719  
          * @return
 720  
          */
 721  
    private static DocumentType getValidDocumentType(String docTypeName) {
 722  
 
 723  0
            if (org.apache.commons.lang.StringUtils.isEmpty(docTypeName)) {
 724  0
                         return null;
 725  
                 }
 726  0
                    DocumentType dTypeCriteria = new DocumentType();
 727  0
                 dTypeCriteria.setName(docTypeName.trim());
 728  0
                 dTypeCriteria.setActive(true);
 729  0
                 Collection<DocumentType> docTypeList = KEWServiceLocator.getDocumentTypeService().find(dTypeCriteria, null, false);
 730  
 
 731  
                 // Return the first valid doc type.
 732  0
                 DocumentType firstDocumentType = null;
 733  0
                 if(docTypeList != null && !docTypeList.isEmpty()){
 734  0
                         for(DocumentType dType: docTypeList){
 735  0
                             if (firstDocumentType == null) {
 736  0
                     firstDocumentType = dType;
 737  
                 }
 738  0
                 if (StringUtils.equals(docTypeName.toUpperCase(), dType.getName().toUpperCase())) {
 739  0
                     return dType;
 740  
                 }
 741  
             }
 742  0
             return firstDocumentType;
 743  
                 }else{
 744  0
                         throw new RuntimeException("No Valid Document Type Found for document type name '" + docTypeName + "'");
 745  
                 }
 746  
    }
 747  
 
 748  
         private DocumentType getValidDocumentTypeOld(String documentTypeFullName) {
 749  0
                 if (org.apache.commons.lang.StringUtils.isEmpty(documentTypeFullName)) {
 750  0
                         return null;
 751  
                 }
 752  0
                 DocumentType docType = KEWServiceLocator.getDocumentTypeService().findByName(documentTypeFullName);
 753  0
                 if (docType == null) {
 754  0
                         throw new RuntimeException("No Valid Document Type Found for document type name '" + documentTypeFullName + "'");
 755  
                 } else {
 756  0
                         return docType;
 757  
                 }
 758  
         }
 759  
 
 760  
         private DocSearchCriteriaDTO getCriteriaFromSavedSearch(UserOptions savedSearch) {
 761  0
                 DocSearchCriteriaDTO criteria = new DocSearchCriteriaDTO();
 762  0
                 if (savedSearch != null) {
 763  0
                         String docTypeFullName = getOptionCriteriaField(savedSearch, "docTypeFullName");
 764  0
                         if (!org.apache.commons.lang.StringUtils.isEmpty(docTypeFullName)) {
 765  0
                                 criteria = new DocSearchCriteriaDTO();
 766  
                         }
 767  0
                         criteria.setDocTypeFullName(getOptionCriteriaField(savedSearch, "docTypeFullName"));
 768  0
                         criteria.setAppDocId(getOptionCriteriaField(savedSearch, "appDocId"));
 769  0
                         criteria.setApprover(getOptionCriteriaField(savedSearch, "approver"));
 770  0
                         criteria.setDocRouteNodeId(getOptionCriteriaField(savedSearch, "docRouteNodeId"));
 771  0
                         if (criteria.getDocRouteNodeId() != null) {
 772  0
                                 criteria.setDocRouteNodeLogic(getOptionCriteriaField(savedSearch, "docRouteNodeLogic"));
 773  
                         }
 774  0
             criteria.setIsAdvancedSearch(getOptionCriteriaField(savedSearch, "isAdvancedSearch"));
 775  0
             criteria.setSuperUserSearch(getOptionCriteriaField(savedSearch, "superUserSearch"));
 776  0
                         criteria.setDocRouteStatus(getOptionCriteriaField(savedSearch, "docRouteStatus"));
 777  0
                         criteria.setDocTitle(getOptionCriteriaField(savedSearch, "docTitle"));
 778  0
                         criteria.setDocVersion(getOptionCriteriaField(savedSearch, "docVersion"));
 779  0
                         criteria.setFromDateApproved(getOptionCriteriaField(savedSearch, "fromDateApproved"));
 780  0
                         criteria.setFromDateCreated(getOptionCriteriaField(savedSearch, "fromDateCreated"));
 781  0
                         criteria.setFromDateFinalized(getOptionCriteriaField(savedSearch, "fromDateFinalized"));
 782  0
                         criteria.setFromDateLastModified(getOptionCriteriaField(savedSearch, "fromDateLastModified"));
 783  0
                         criteria.setInitiator(getOptionCriteriaField(savedSearch, "initiator"));
 784  0
                         criteria.setOverrideInd(getOptionCriteriaField(savedSearch, "overrideInd"));
 785  0
                         criteria.setRouteHeaderId(getOptionCriteriaField(savedSearch, "routeHeaderId"));
 786  0
                         criteria.setToDateApproved(getOptionCriteriaField(savedSearch, "toDateApproved"));
 787  0
                         criteria.setToDateCreated(getOptionCriteriaField(savedSearch, "toDateCreated"));
 788  0
                         criteria.setToDateFinalized(getOptionCriteriaField(savedSearch, "toDateFinalized"));
 789  0
                         criteria.setToDateLastModified(getOptionCriteriaField(savedSearch, "toDateLastModified"));
 790  0
                         criteria.setViewer(getOptionCriteriaField(savedSearch, "viewer"));
 791  0
                         criteria.setWorkgroupViewerNamespace(getOptionCriteriaField(savedSearch, "workgroupViewerNamespace"));
 792  0
             criteria.setWorkgroupViewerName(getOptionCriteriaField(savedSearch, "workgroupViewerName"));
 793  0
                         criteria.setNamedSearch(getOptionCriteriaField(savedSearch, "namedSearch"));
 794  0
                         criteria.setSearchableAttributes(DocSearchUtils.buildSearchableAttributesFromString(getOptionCriteriaField(savedSearch, "searchableAttributes"),criteria.getDocTypeFullName()));
 795  
                 }
 796  0
                 return criteria;
 797  
         }
 798  
 
 799  
         private String getOptionCriteriaField(UserOptions userOption, String fieldName) {
 800  0
                 String value = userOption.getOptionVal();
 801  0
                 if (value != null) {
 802  0
                         String[] fields = value.split(",,");
 803  0
             for (String field : fields)
 804  
             {
 805  0
                 if (field.startsWith(fieldName + "="))
 806  
                 {
 807  0
                     return field.substring(field.indexOf(fieldName) + fieldName.length() + 1, field.length());
 808  
                 }
 809  
             }
 810  
                 }
 811  0
                 return null;
 812  
         }
 813  
 
 814  
         public static DictionaryValidationService getDictionaryValidationService() {
 815  0
                 if (dictionaryValidationService == null) {
 816  0
                         dictionaryValidationService = KNSServiceLocatorWeb.getDictionaryValidationService();
 817  
                 }
 818  0
                 return dictionaryValidationService;
 819  
         }
 820  
 
 821  
         public static DataDictionaryService getDataDictionaryService() {
 822  0
                 if (dataDictionaryService == null) {
 823  0
                         dataDictionaryService = KNSServiceLocatorWeb.getDataDictionaryService();
 824  
                 }
 825  0
                 return dataDictionaryService;
 826  
         }
 827  
 
 828  
         public static ConfigurationService getKualiConfigurationService() {
 829  0
                 if (kualiConfigurationService == null) {
 830  0
                         kualiConfigurationService = KNSServiceLocator.getKualiConfigurationService();
 831  
                 }
 832  0
                 return kualiConfigurationService;
 833  
         }
 834  
 
 835  
         private List<String> tokenizeCriteria(String input){
 836  0
                 List<String> lRet = null;
 837  
 
 838  0
                 lRet = Arrays.asList(input.split("\\|"));
 839  
 
 840  0
                 return lRet;
 841  
         }
 842  
 
 843  
         /**
 844  
          * @return the sqlBuilder
 845  
          */
 846  
         public SqlBuilder getSqlBuilder() {
 847  0
                 if(sqlBuilder == null){
 848  0
                         sqlBuilder = new SqlBuilder();
 849  0
                         sqlBuilder.setDbPlatform((DatabasePlatform) GlobalResourceLoader.getService(RiceConstants.DB_PLATFORM));
 850  0
                         sqlBuilder.setDateTimeService(KNSServiceLocator.getDateTimeService());
 851  
                 }
 852  0
                 return this.sqlBuilder;
 853  
         }
 854  
 
 855  
         /**
 856  
          * @param sqlBuilder the sqlBuilder to set
 857  
          */
 858  
         public void setSqlBuilder(SqlBuilder sqlBuilder) {
 859  0
                 this.sqlBuilder = sqlBuilder;
 860  0
         }
 861  
 }