Coverage report

  %line %branch
org.apache.jetspeed.layout.impl.PortletActionSecurityConstraintsBehavior
0% 
0% 

 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  * 
 9  
  *      http://www.apache.org/licenses/LICENSE-2.0
 10  
  * 
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.apache.jetspeed.layout.impl;
 18  
 
 19  
 import java.security.Principal;
 20  
 
 21  
 import org.apache.commons.logging.Log;
 22  
 import org.apache.commons.logging.LogFactory;
 23  
 import org.apache.jetspeed.Jetspeed;
 24  
 import org.apache.jetspeed.administration.PortalConfiguration;
 25  
 import org.apache.jetspeed.layout.PortletActionSecurityBehavior;
 26  
 import org.apache.jetspeed.om.page.Page;
 27  
 import org.apache.jetspeed.page.PageManager;
 28  
 import org.apache.jetspeed.request.RequestContext;
 29  
 
 30  
 /**
 31  
  * Abstracted behavior of security checks for portlet actions
 32  
  *
 33  
  * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
 34  
  * @version $Id: $
 35  
  */
 36  
 public class PortletActionSecurityConstraintsBehavior 
 37  
        extends PortletActionSecurityPathBehavior
 38  
        implements PortletActionSecurityBehavior
 39  
 {
 40  0
     protected Log log = LogFactory.getLog(PortletActionSecurityConstraintsBehavior.class);    
 41  0
     protected String guest = "guest";
 42  
     
 43  
     public PortletActionSecurityConstraintsBehavior(PageManager pageManager)
 44  
     {
 45  0
     	this( pageManager, Boolean.FALSE );
 46  0
     }
 47  
     public PortletActionSecurityConstraintsBehavior(PageManager pageManager, Boolean enableCreateUserPagesFromRolesOnEdit )
 48  
     {
 49  0
         super( pageManager, enableCreateUserPagesFromRolesOnEdit );
 50  0
         PortalConfiguration config = Jetspeed.getConfiguration();
 51  0
         if (config != null)
 52  
         {
 53  0
             guest = config.getString("default.user.principal");
 54  
         }
 55  0
     }
 56  
 
 57  
     public boolean checkAccess(RequestContext context, String action)
 58  
     {
 59  0
         Page page = context.getPage();
 60  
         try
 61  
         {
 62  0
             page.checkAccess(action);            
 63  
         }
 64  0
         catch (Exception e)
 65  
         {
 66  0
             Principal principal = context.getRequest().getUserPrincipal();
 67  0
             String userName = this.guest;
 68  0
             if (principal != null)
 69  0
                 userName = principal.getName();
 70  0
             log.warn("Insufficient access to page " + page.getPath() + " by user " + userName);
 71  0
             return false;
 72  0
         }     
 73  0
         return true;
 74  
     }
 75  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.