blob: 1415aafb2f981ae119678bb77d8cbfedcf14b8d3 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.fortress.web.control;
import com.googlecode.wicket.jquery.ui.form.button.IndicatingAjaxButton;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.wicket.Component;
import org.apache.wicket.spring.injection.annot.SpringBean;
import org.apache.directory.fortress.core.*;
import org.apache.directory.fortress.core.model.Permission;
import javax.servlet.http.HttpServletRequest;
/**
* ...
*
* @author Shawn McKinney
* @version $Rev$
*/
public class SecureIndicatingAjaxButton extends IndicatingAjaxButton
{
Permission perm;
@SpringBean
private AccessMgr accessMgr;
private static final Logger LOG = LoggerFactory.getLogger( SecureIndicatingAjaxButton.class.getName() );
public SecureIndicatingAjaxButton( Component component, String id, String objectName, String opName )
{
super( id );
this.perm = new Permission(objectName, opName);
if( SecUtils.IS_PERM_CACHED)
{
if(!SecUtils.isFound( perm, this ))
setVisible( false );
}
else
{
boolean isAuthorized = false;
try
{
WicketSession session = ( WicketSession )component.getSession();
isAuthorized = accessMgr.checkAccess( session.getSession(), perm );
LOG.info( "Fortress checkAccess objectName: " + objectName + " operationName: " + opName + " userId: " + session.getSession().getUserId() + " result: " + isAuthorized);
}
catch(org.apache.directory.fortress.core.SecurityException se)
{
String error = "Fortress SecurityException checkAccess objectName: " + objectName + " operationName: " + opName + " error=" + se;
LOG.error( error );
}
if(!isAuthorized)
setVisible( false );
}
}
public SecureIndicatingAjaxButton( String id, String roleName )
{
super( id );
HttpServletRequest servletReq = ( HttpServletRequest ) getRequest().getContainerRequest();
if( ! SecUtils.isAuthorized( roleName, servletReq ) )
setVisible( false );
}
public SecureIndicatingAjaxButton( String id, String objName, String opName )
{
super( id );
LOG.debug( "load button perm objName: " + this.perm.getObjName() + " opName: " + this.perm.getOpName() + ", not found in session");
if ( !SecUtils.isFound( new Permission( objName, opName ), this ) )
setVisible( false );
LOG.info( "perm objName: " + this.perm.getObjName() + " opName: " + this.perm.getOpName() + ", not found in session");
}
protected boolean checkAccess( String objectName, String opName )
{
boolean isAuthorized = false;
try
{
WicketSession session = ( WicketSession )getSession();
Permission permission = new Permission( objectName, opName );
//Permission permission = new Permission( objectName, perm.getOpName() );
isAuthorized = accessMgr.checkAccess( session.getSession(), permission );
LOG.info( "Fortress checkAccess objectName: " + permission.getObjName() + " operationName: " + permission.getOpName() + " userId: " + session.getSession().getUserId() + " result: " + isAuthorized);
}
catch(org.apache.directory.fortress.core.SecurityException se)
{
String error = "Fortress SecurityException checkAccess objectName: " + this.perm.getObjName() + " operationName: " + this.perm.getOpName() + " error=" + se;
LOG.error( error );
}
return isAuthorized;
}
protected boolean checkAccess( )
{
boolean isAuthorized = false;
try
{
WicketSession session = ( WicketSession )getSession();
isAuthorized = accessMgr.checkAccess( session.getSession(), perm );
LOG.info( "Fortress checkAccess objName: " + this.perm.getObjName() + " opName: " + this.perm.getOpName() + " userId: " + session.getSession().getUserId() + " result: " + isAuthorized);
}
catch(org.apache.directory.fortress.core.SecurityException se)
{
String error = "Fortress SecurityException checkAccess objName: " + this.perm.getObjName() + " opName: " + this.perm.getOpName() + " error=" + se;
LOG.error( error );
}
return isAuthorized;
}
protected boolean checkAccess( String objectId )
{
boolean isAuthorized = false;
try
{
WicketSession session = ( WicketSession )getSession();
Permission finePerm = new Permission(perm.getObjName(), perm.getOpName(), objectId);
isAuthorized = accessMgr.checkAccess( session.getSession(), finePerm );
LOG.info( "Fortress checkAccess objName: " + this.perm.getObjName() + " opName: " + this.perm.getOpName() + ", objId: " + finePerm.getObjId() + ", userId: " + session.getSession().getUserId() + " result: " + isAuthorized);
}
catch(org.apache.directory.fortress.core.SecurityException se)
{
String error = "Fortress SecurityException checkAccess objectName: " + this.perm.getObjName() + " opName: " + this.perm.getOpName() + ", objId: " + objectId + ", error=" + se;
LOG.error( error );
}
return isAuthorized;
}
}