Mercurial Hosting > luan
view src/goodjava/webserver/handlers/RegexHandler.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 | f7e3adae4907 |
children |
line wrap: on
line source
package goodjava.webserver.handlers; import java.util.regex.Pattern; import goodjava.webserver.Handler; import goodjava.webserver.Request; import goodjava.webserver.Response; public final class RegexHandler implements Handler { private final Pattern ptn; private final Handler ifMatch; private final Handler ifNotMatch; public RegexHandler(Pattern ptn,Handler ifMatch,Handler ifNotMatch) { this.ptn = ptn; this.ifMatch = ifMatch; this.ifNotMatch = ifNotMatch; } public RegexHandler(String ptn,Handler ifMatch,Handler ifNotMatch) { this(Pattern.compile(ptn),ifMatch,ifNotMatch); } public Response handle(Request request) { return ptn.matcher(request.path).find() ? ifMatch.handle(request) : ifNotMatch.handle(request); } }