/connect-web/src/main/java/org/osforce/connect/web/security/tag/SecurityTag.java

http://focus-sns.googlecode.com/ · Java · 46 lines · 31 code · 8 blank · 7 comment · 1 complexity · 3f4a48a13d709d516c3ed5c98aece68a MD5 · raw file

  1. package org.osforce.connect.web.security.tag;
  2. import javax.servlet.jsp.JspException;
  3. import javax.servlet.jsp.tagext.TagSupport;
  4. import org.osforce.connect.entity.system.Project;
  5. import org.osforce.connect.entity.system.User;
  6. import org.osforce.connect.service.system.PermissionService;
  7. import org.springframework.web.context.WebApplicationContext;
  8. import org.springframework.web.servlet.support.RequestContextUtils;
  9. /**
  10. *
  11. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  12. * @since 1.1.0
  13. * @create May 20, 2011 - 4:04:30 AM
  14. * <a href="http://www.opensourceforce.org">????</a>
  15. */
  16. public class SecurityTag extends TagSupport {
  17. private static final long serialVersionUID = 707982809607721706L;
  18. private static final String PROJECT_KEY = "_" + Project.class.getName();
  19. private static final String USER_KEY = "_" + User.class.getName();
  20. private String code;
  21. public SecurityTag() {
  22. }
  23. public void setCode(String code) {
  24. this.code = code;
  25. }
  26. @Override
  27. public int doStartTag() throws JspException {
  28. WebApplicationContext webApplicationContext = RequestContextUtils
  29. .getWebApplicationContext(pageContext.getRequest());
  30. PermissionService permissionService = webApplicationContext.getBean(PermissionService.class);
  31. Project project = (Project) pageContext.getRequest().getAttribute(PROJECT_KEY);
  32. User user = (User) pageContext.getRequest().getAttribute(USER_KEY);
  33. if(permissionService.hasPermission(project, user, code)) {
  34. return EVAL_BODY_INCLUDE;
  35. }
  36. return SKIP_BODY;
  37. }
  38. }