view src/goodjava/webserver/handlers/IndexHandler.java @ 1648:224af797b1f9

Mainly small install script improvements - Consistent usage of `$LUANHOME`, removed reliance on current directory. - Made Luan build and install fine (on Linux) without requiring launching it via sudo. Only asks to elevate privileges if installation failed. - Minor spelling mistake fix.
author Fox
date Mon, 28 Mar 2022 18:00:12 +0200
parents 27efb1fcbcb5
children
line wrap: on
line source

package goodjava.webserver.handlers;

import goodjava.webserver.Handler;
import goodjava.webserver.Request;
import goodjava.webserver.Response;


public final class IndexHandler implements Handler {
	private final Handler handler;
	private final String indexName;

	public IndexHandler(Handler handler) {
		this(handler,"index.html");
	}

	public IndexHandler(Handler handler,String indexName) {
		this.handler = handler;
		this.indexName = indexName;
	}

	public Response handle(Request request) {
		if( request.path.endsWith("/") ) {
			String path = request.path;
			try {
				request.path += indexName;
				return handler.handle(request);
			} finally {
				request.path = path;
			}
		} else
			return handler.handle(request);
	}
}