From 03bde3677fdd41a1c2c1c376797575888afe8580 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 16 Jul 2011 19:27:13 -0400 Subject: [PATCH] web.d catchall handler --- web.d | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/web.d b/web.d index bfc9119..6e9b52e 100644 --- a/web.d +++ b/web.d @@ -160,6 +160,25 @@ class ApiProvider { return container; } + void _catchAll(string path) { + throw new NoSuchPageException(_errorMessageForCatchAll); + } + + private string _errorMessageForCatchAll; + private void _catchallEntry(string path, string funName, string errorMessage) { + if(!errorMessage.length) { + string allFuncs, allObjs; + foreach(n, f; reflection.functions) + allFuncs ~= n ~ "\n"; + foreach(n, f; reflection.objects) + allObjs ~= n ~ "\n"; + errorMessage = "no such function " ~ funName ~ "\n functions are:\n" ~ allFuncs ~ "\n\nObjects are:\n" ~ allObjs; + } + + _errorMessageForCatchAll = errorMessage; + } + + /// When in website mode, you can use this to beautify the error message Document delegate(Throwable) _errorFunction; } @@ -773,14 +792,11 @@ void run(Provider)(Cgi cgi, Provider instantiation, int pathInfoStartingPoint = if(fun is null) { noSuchFunction: - if(errorMessage.length) - throw new NoSuchPageException(errorMessage); - string allFuncs, allObjs; - foreach(n, f; reflection.functions) - allFuncs ~= n ~ "\n"; - foreach(n, f; reflection.objects) - allObjs ~= n ~ "\n"; - throw new NoSuchPageException("no such function " ~ funName ~ "\n functions are:\n" ~ allFuncs ~ "\n\nObjects are:\n" ~ allObjs); + + instantiation._catchallEntry( + cgi.pathInfo[pathInfoStartingPoint + 1..$], + funName, + errorMessage); } assert(fun !is null);