/connect-web/src/main/java/org/osforce/connect/web/interceptor/ObjectNotFoundInterceptor.java

http://focus-sns.googlecode.com/ · Java · 46 lines · 29 code · 8 blank · 9 comment · 3 complexity · d95f73d62a52e0f078897bc597a64486 MD5 · raw file

  1. package org.osforce.connect.web.interceptor;
  2. import java.io.IOException;
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5. import org.apache.commons.lang.StringUtils;
  6. import org.osforce.connect.web.AttributeKeys;
  7. import org.osforce.connect.web.route.RouteController;
  8. import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
  9. /**
  10. *
  11. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  12. * @since 1.1.0
  13. * @create May 31, 2011 - 2:44:23 PM
  14. * <a href="http://www.opensourceforce.org">????</a>
  15. */
  16. public class ObjectNotFoundInterceptor extends HandlerInterceptorAdapter {
  17. public ObjectNotFoundInterceptor() {
  18. }
  19. @Override
  20. public boolean preHandle(HttpServletRequest request,
  21. HttpServletResponse response, Object handler) throws Exception {
  22. //
  23. siteNotFound(request, response, handler);
  24. //
  25. return super.preHandle(request, response, handler);
  26. }
  27. protected void siteNotFound(HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException {
  28. if(handler.getClass().isAssignableFrom(RouteController.class)) {
  29. if(request.getAttribute(AttributeKeys.SITE_KEY)==null) {
  30. String redirectPath = request.getContextPath() + "/system";
  31. String requestPath = request.getRequestURI();
  32. if(!StringUtils.startsWith(requestPath, redirectPath)) {
  33. response.sendRedirect(redirectPath);
  34. }
  35. }
  36. }
  37. }
  38. }