1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2009-2017, University of Amsterdam
VU University Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
:- module(http_exception,
[ map_exception_to_http_status/4, % +Exception, -Reply,
% -HdrExtra, -Context
in_or_exclude_backtrace/2 % +Error, -CleanedError
]).
/** <module> Map Prolog exceptions to HTTP errors
This module maps exceptions from various parts of the HTTP libraries as
well as exceptions from user handler predicates into meaningful HTTP
error codes such as 4XX and 5XX codes. For example, existence errors on
http locations are mapped to 404 while out-of-stack is mapped to 503.
This library provides two hooks:
- http:map_exception_to_http_status_hook/4 can be used to map
additional exceptions to any HTTP status code.
- http:bad_request_error/2 can be extended to map exceptions into 400
bad request responses.
@see http_header.pl, http_wrapper.pl
*/
:- multifile
http:bad_request_error/2, % Formal, Context
http:map_exception_to_http_status_hook/4. % Exception, Reply, HdrExtra, Ctx
%! map_exception_to_http_status(+Exception, -Reply, -HdrExtra, -Context)
%
% Map certain exceptions to HTTP status codes. The http(not_modified)
% provides backward compatibility to http_reply(not_modified).
map_exception_to_http_status(Exception, Reply, HdrExtra, Context) :-
http:map_exception_to_http_status_hook(Exception, Reply, HdrExtra, Context),
!.
map_exception_to_http_status(http(not_modified),
not_modified,
[connection('Keep-Alive')],
[]) :- !.
map_exception_to_http_status(http_reply(Reply),
Reply,
[connection(Close)],
[]) :-
!,
keep_alive(Reply, Close).
map_exception_to_http_status(http_reply(Reply, HdrExtra0),
Reply,
HdrExtra,
Context) :-
!,
map_exception_to_http_status(http_reply(Reply, HdrExtra0, []),
Reply,
HdrExtra,
Context).
map_exception_to_http_status(http_reply(Reply, HdrExtra0, Context),
Reply,
HdrExtra,
Context):-
!,
( memberchk(connection(_), HdrExtra0)
-> HdrExtra = HdrExtra0
; HdrExtra = [connection(Close)|HdrExtra0],
keep_alive(Reply, Close)
).
map_exception_to_http_status(error(existence_error(http_location, Location), _),
not_found(Location),
[connection(close)],
[]) :- !.
map_exception_to_http_status(error(permission_error(http_method, Method, Location), _),
method_not_allowed(Method, Location),
[connection(close)],
[]) :- !.
map_exception_to_http_status(error(permission_error(_, http_location, Location), _),
forbidden(Location),
[connection(close)],
[]) :- !.
map_exception_to_http_status(error(threads_in_pool(_Pool), _),
busy,
[connection(close)],
[]) :- !.
map_exception_to_http_status(E,
resource_error(E),
[connection(close)],
[]) :-
is_resource_error(E),
!.
map_exception_to_http_status(E,
bad_request(E2),
[connection(close)],
[]) :-
bad_request_exception(E),
!,
discard_stack_trace(E, E2).
map_exception_to_http_status(E,
server_error(E),
[connection(close)],
[]).
is_resource_error(error(resource_error(_), _)).
bad_request_exception(error(Error, Context)) :-
nonvar(Error),
bad_request_error(Error, ContextGeneral),
( var(ContextGeneral)
-> true
; Context = context(_Stack, ContextInstance)
-> subsumes_term(ContextGeneral, ContextInstance)
),
!.
bad_request_error(Error, Context) :-
http:bad_request_error(Error, Context).
bad_request_error(Error, Context) :-
default_bad_request_error(Error, Context).
default_bad_request_error(domain_error(http_request, _), _).
default_bad_request_error(existence_error(http_parameter, _), _).
default_bad_request_error(type_error(_, _), http_parameter(_)).
default_bad_request_error(syntax_error(http_request_line(_)), _).
default_bad_request_error(syntax_error(http_request(_)), _).
default_bad_request_error(syntax_error(_), in_http_request).
discard_stack_trace(error(Formal, context(_,Msg)),
error(Formal, context(_,Msg))).
%! in_or_exclude_backtrace(+ErrorIn, -ErrorOut)
%
% Remove the stacktrace from the exception, unless setting
% `http:client_backtrace` is `true`.
in_or_exclude_backtrace(Error, Error) :-
current_setting(http:client_backtrace),
setting(http:client_backtrace, true),
!.
in_or_exclude_backtrace(Error0, Error) :-
discard_stack_trace(Error0, Error),
!.
in_or_exclude_backtrace(Exception, Exception).
%! http:bad_request_error(+Formal, -ContextTemplate) is semidet.
%
% If an exception of the term error(Formal, context(Stack,
% Context)) is caught and subsumes_term(ContextTemplate, Context)
% is true, translate the exception into an HTTP 400 exception. If
% the exception contains a stack-trace, this is stripped from the
% response.
%
% The idea behind this hook is that applications can raise 400
% responses by
%
% - Throwing a specific (error) exception and adding a rule
% to this predicate to interpret this as 400.
% - Define rules for prolog:error_message//1 to formulate
% an appropriate message.
%! keep_alive(+Reply) is semidet.
%! keep_alive(+Reply, -Connection) is det.
%
% If true for Reply, the default is to keep the connection open.
keep_alive(Reply, Connection) :-
( keep_alive(Reply)
-> Connection = 'Keep-Alive'
; Connection = close
).
keep_alive(not_modified).
keep_alive(bytes(_Type, _Bytes)).
keep_alive(file(_Type, _File)).
keep_alive(tmp_file(_Type, _File)).
keep_alive(stream(_In, _Len)).
keep_alive(cgi_stream(_In, _Len)).
keep_alive(switching_protocols(_Goal, _)).
/*******************************
* IDE SUPPORT *
*******************************/
% See library('trace/exceptions')
:- multifile
prolog:general_exception/2.
prolog:general_exception(http_reply(_), http_reply(_)).
prolog:general_exception(http_reply(_,_), http_reply(_,_)).
|