Coverage Report - org.kuali.student.common.ui.server.gwt.old.AbstractBaseDataOrchestrationRpcGwtServlet
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractBaseDataOrchestrationRpcGwtServlet
0%
0/59
0%
0/18
1.947
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.common.ui.server.gwt.old;
 17  
 
 18  
 import com.google.gwt.user.server.rpc.RemoteServiceServlet;
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.apache.log4j.Logger;
 21  
 import org.kuali.rice.kew.api.action.WorkflowDocumentActionsService;
 22  
 import org.kuali.rice.kim.api.identity.IdentityService;
 23  
 import org.kuali.rice.kim.api.permission.PermissionService;
 24  
 import org.kuali.student.common.assembly.data.AssemblyException;
 25  
 import org.kuali.student.common.assembly.data.Data;
 26  
 import org.kuali.student.common.assembly.data.Metadata;
 27  
 import org.kuali.student.common.assembly.old.Assembler;
 28  
 import org.kuali.student.common.assembly.old.data.SaveResult;
 29  
 import org.kuali.student.common.rice.StudentIdentityConstants;
 30  
 import org.kuali.student.common.rice.authorization.PermissionType;
 31  
 import org.kuali.student.common.ui.client.service.BaseDataOrchestrationRpcService;
 32  
 import org.kuali.student.common.ui.client.service.DataSaveResult;
 33  
 import org.kuali.student.common.ui.client.service.exceptions.OperationFailedException;
 34  
 import org.kuali.student.common.ui.shared.IdAttributes;
 35  
 import org.kuali.student.common.util.security.SecurityUtils;
 36  
 
 37  
 import java.util.LinkedHashMap;
 38  
 import java.util.Map;
 39  
 
 40  
 /**
 41  
  * Generic implementation of data orchestration calls and workflow calls
 42  
  *
 43  
  */
 44  
 @Deprecated
 45  0
 public abstract class AbstractBaseDataOrchestrationRpcGwtServlet extends RemoteServiceServlet implements BaseDataOrchestrationRpcService {
 46  
         //FIXME issues:
 47  
         // -The Type/state config is hardcoded here which will cause troubles with different types and states
 48  
         // -Workflow filter should be combined with this for save
 49  
         // -The exception handling here needs standardization.  Should RPC errors throw operation failed with just the message and log the message and exception?
 50  
         // also should calls that return Boolean ever throw exceptions?
 51  
 
 52  
         private static final long serialVersionUID = 1L;
 53  
 
 54  0
         final Logger LOG = Logger.getLogger(AbstractBaseDataOrchestrationRpcGwtServlet.class);
 55  
 
 56  
         private Assembler<Data, Void> assembler;
 57  
 
 58  
     private WorkflowDocumentActionsService simpleDocService;
 59  
         private PermissionService permissionService;
 60  
         private IdentityService identityService;
 61  
 
 62  
         @Override
 63  
         public Data getData(String dataId) {
 64  
                 try {
 65  0
                         return assembler.get(dataId);
 66  0
                 } catch (AssemblyException e) {
 67  0
                         LOG.error("Error getting Data.",e);
 68  
                 }
 69  0
                 return null;
 70  
         }
 71  
 
 72  
         @Override
 73  
         public Metadata getMetadata(String id, Map<String,String> idAttributes) {
 74  
 
 75  
                 try {
 76  
                     //FIXME: should not pass empty id. What to do here?
 77  0
                         String idType = "";
 78  0
                         if (idAttributes != null){
 79  0
                                 idType = idAttributes.get(IdAttributes.ID_TYPE);
 80  
                         }
 81  0
                         return assembler.getMetadata(idType, id, getDefaultMetaDataType(), getDefaultMetaDataState());
 82  0
                 } catch (AssemblyException e) {
 83  0
                         LOG.error("Error getting Metadata.",e);
 84  
                 }
 85  0
                 return null;
 86  
         }
 87  
 
 88  
         @Override
 89  
         public DataSaveResult saveData(Data data) throws OperationFailedException {
 90  
                 try {
 91  0
                         SaveResult<Data> saveResult = assembler.save(data);
 92  0
                         if (saveResult != null) {
 93  0
                                 return new DataSaveResult(saveResult.getValidationResults(), saveResult.getValue());
 94  
                         }
 95  0
                 } catch (Exception e) {
 96  0
                         LOG.error("Unable to save", e);
 97  0
                         throw new OperationFailedException("Unable to save");
 98  0
                 }
 99  0
                 return null;
 100  
         }
 101  
 
 102  
 
 103  
         protected String getCurrentUser() {
 104  0
                 String username = SecurityUtils.getCurrentUserId();
 105  
                 //backdoorId is only for convenience
 106  0
                 if(username==null&&this.getThreadLocalRequest().getSession().getAttribute("backdoorId")!=null){
 107  0
                         username=(String)this.getThreadLocalRequest().getSession().getAttribute("backdoorId");
 108  
         }
 109  0
                 return username;
 110  
         }
 111  
 
 112  
         protected boolean checkDocumentLevelPermissions() {
 113  0
                 return false;
 114  
         }
 115  
 
 116  
         public Boolean isAuthorized(PermissionType type, Map<String,String> attributes) {
 117  0
                 String user = getCurrentUser();
 118  0
                 boolean result = false;
 119  0
                 if (checkDocumentLevelPermissions()) {
 120  0
                         if (type == null) {
 121  0
                                 return null;
 122  
                         }
 123  0
                         String namespaceCode = type.getPermissionNamespace();
 124  0
                         String permissionTemplateName = type.getPermissionTemplateName();
 125  0
                         Map<String, String> roleQuals = new LinkedHashMap<String, String>();
 126  0
                         roleQuals.put (StudentIdentityConstants.DOCUMENT_TYPE_NAME, getDefaultWorkflowDocumentType());
 127  0
                         if (attributes != null) {
 128  0
                                 roleQuals.putAll(attributes);
 129  
                         }
 130  0
                         if (StringUtils.isNotBlank(namespaceCode) && StringUtils.isNotBlank(permissionTemplateName)) {
 131  0
                                 LOG.info("Checking Permission '" + namespaceCode + "/" + permissionTemplateName + "' for user '" + user + "'");
 132  0
                                 result = getPermissionService().isAuthorizedByTemplate(user, namespaceCode, permissionTemplateName, null, roleQuals);
 133  
                         }
 134  
                         else {
 135  0
                                 LOG.info("Can not check Permission with namespace '" + namespaceCode + "' and template name '" + permissionTemplateName + "' for user '" + user + "'");
 136  0
                                 return Boolean.TRUE;
 137  
                         }
 138  0
                 }
 139  
                 else {
 140  0
                         LOG.info("Will not check for document level permissions. Defaulting authorization to true.");
 141  0
                         result = true;
 142  
                 }
 143  0
                 LOG.info("Result of authorization check for user '" + user + "': " + result);
 144  0
                 return Boolean.valueOf(result);
 145  
         }
 146  
 
 147  
         protected abstract String deriveAppIdFromData(Data data);
 148  
         protected abstract String deriveDocContentFromData(Data data);
 149  
         protected abstract String getDefaultWorkflowDocumentType();
 150  
         protected abstract String getDefaultMetaDataState();
 151  
         protected abstract String getDefaultMetaDataType();
 152  
 
 153  
         //POJO methods
 154  
         public void setAssembler(Assembler<Data, Void> assembler) {
 155  0
                 this.assembler = assembler;
 156  0
         }
 157  
 
 158  
         public PermissionService getPermissionService() {
 159  0
         return permissionService;
 160  
     }
 161  
 
 162  
     public void setPermissionService(PermissionService permissionService) {
 163  0
         this.permissionService = permissionService;
 164  0
     }
 165  
 
 166  
         public IdentityService getIdentityService() {
 167  0
             return identityService;
 168  
     }
 169  
 
 170  
         public void setIdentityService(IdentityService identityService) {
 171  0
             this.identityService = identityService;
 172  0
     }
 173  
 
 174  
         public void setSimpleDocService(WorkflowDocumentActionsService simpleDocService) {
 175  0
                 this.simpleDocService = simpleDocService;
 176  0
         }
 177  
 
 178  
         protected Assembler<Data, Void> getAssembler() {
 179  0
                 return assembler;
 180  
         }
 181  
 
 182  
         protected WorkflowDocumentActionsService getSimpleDocService() {
 183  0
                 return simpleDocService;
 184  
         }
 185  
 
 186  
 }