All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.twibs.web.IndexRedirectResponder.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2013-2015 by Michael Hombre Brinkmann
 */

package net.twibs.web

import net.twibs.util.Request

class IndexRedirectResponder extends Responder {
  def respond(request: Request): Option[Response] =
    if (needsRedirectToIndex(request)) Some(new RedirectResponse(request.contextPath + "/index.html"))
    else None

  private def needsRedirectToIndex(request: Request): Boolean =
    request.path.string == "/" || request.path.string == "/_RedirectToIndex"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy