blob: f2281e868618a9e96de3273d6d51a2fce2a1f33d [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.jsecurity.web.tags;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;
/**
* JSP tag that renders the tag body if the current user known to the system, either from a successful login attempt
* (not necessarily during the current session) or from 'RememberMe' services.
*
* <p><b>Note:</b> This is <em>less</em> restrictive than the <code>AuthenticatedTag</code> since it only assumes
* the user is who they say they are, either via a current session login <em>or</em> via Remember Me services, which
* makes no guarantee the user is who they say they are. The <code>AuthenticatedTag</code> however
* guarantees that the current user has logged in <em>during their current session</em>, proving they really are
* who they say they are.
*
* <p>The logically opposite tag of this one is the {@link GuestTag}.
*
* @author Les Hazlewood
* @since 0.9
*/
public class UserTag extends SecureTag {
private static final Log log = LogFactory.getLog(UserTag.class);
public int onDoStartTag() throws JspException {
if (getSubject() != null && getSubject().getPrincipal() != null) {
if (log.isTraceEnabled()) {
log.trace("Subject has known identity (aka 'principal'). " +
"Tag body will be evaluated.");
}
return TagSupport.EVAL_BODY_INCLUDE;
} else {
if (log.isTraceEnabled()) {
log.trace("Subject does not exist or have a known identity (aka 'principal'). " +
"Tag body will not be evaluated.");
}
return TagSupport.SKIP_BODY;
}
}
}