org.beangle.security.web.access.AccessDeniedHandler.scala Maven / Gradle / Ivy
The newest version!
/*
* Beangle, Agile Development Scaffold and Toolkit
*
* Copyright (c) 2005-2015, Beangle Software.
*
* Beangle is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Beangle is distributed in the hope that it will be useful.
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Beangle. If not, see .
*/
package org.beangle.security.web.access
import javax.servlet.ServletRequest
import javax.servlet.ServletResponse
import org.beangle.security.authz.AccessDeniedException
import javax.servlet.http.HttpServletResponse
import javax.servlet.http.HttpServletRequest
import javax.servlet.RequestDispatcher
import org.beangle.commons.logging.Logging
import org.beangle.commons.bean.Initializing
import org.beangle.commons.web.context.ServletContextHolder
import java.io.File
/**
* @author chaostone
*/
trait AccessDeniedHandler {
/**
* Handles an access denied failure.
*
*/
def handle(request: ServletRequest, response: ServletResponse, exception: AccessDeniedException): Unit
}
class DefaultAccessDeniedHandler(var errorPage: String) extends AccessDeniedHandler with Logging {
def this() {
this(null)
}
if (null != errorPage) {
require(errorPage.startsWith("/"), "errorPage must begin with '/'")
val file = ServletContextHolder.context.getRealPath(errorPage)
if (!new File(file).exists) errorPage = null
}
def handle(request: ServletRequest, response: ServletResponse, exception: AccessDeniedException): Unit = {
if (errorPage != null) {
// Put exception into request scope (perhaps of use to a view)
request.asInstanceOf[HttpServletRequest].setAttribute("403_EXCEPTION", exception)
// Perform RequestDispatcher "forward"
request.getRequestDispatcher(errorPage).forward(request, response)
}
if (!response.isCommitted) {
// Send 403 (we do this after response has been written)
response.asInstanceOf[HttpServletResponse].sendError(HttpServletResponse.SC_FORBIDDEN, exception.getMessage())
}
}
}