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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
|
/* Part of XPCE --- The SWI-Prolog GUI toolkit
Author: Jan Wielemaker and Anjo Anjewierden
E-mail: jan@swi.psy.uva.nl
WWW: http://www.swi.psy.uva.nl/projects/xpce/
Copyright (c) 2000-2011, University of 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(httpd,
[ html_to_buffer/2 % +Term, -Buffer
]).
:- use_module(library(pce)).
:- use_module(library('http/html_write')).
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This module implements a very simple HTTP deamon skeleton, mainly to
allow a browser to contact the running system.
The typical way to use this module is by refining the class httpd and
then redefining ->request. Request typically uses ->reply or
->reply_html to send a reply.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
:- pce_begin_class(httpd, socket, "The HTTP deamon socket").
variable(request, sheet*, get, "Currently processing request").
initialise(S, Port:[int]) :->
default(Port, 0, ThePort), % anonymous
send_super(S, initialise, ThePort),
send(S, record_separator, '\n\r?\n\r?'),
send(S, input_message, message(@receiver, input, @arg1)),
send(S, accept_message, message(@arg1, accepted)),
send(S, listen, reuse := @on).
:- pce_global(@http_header_regex,
new(regex('^([^:]+):\\s*([^\n]*)'))).
:- pce_global(@http_path_regex,
new(regex('(\\w+)\\s*(\\S+)\\s*HTTP/([0-9.]+)\r?\n?'))).
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Process the request into a sheet holding the request attributes. The
first line is translated into the attributes `request', `path' and
`http_version'.
If the action is a GET and path contains form-attributes, ->break_path
breaks the path into the plain path and form-data in the attribute
`form'.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
:- pce_group(connection).
accepted(S) :->
"A new connection is established on this socket"::
( send(@pce, debugging_subject, httpd),
get(S, peer_name, Peer)
-> ( send(Peer, instance_of, tuple)
-> send(@pce, format, 'New connection from %s:%s\n',
Peer?first, Peer?second)
; send(@pce, format, 'New connection from %s\n', Peer)
)
; true
).
:- pce_group(request).
input(S, Header:string) :->
"Process input. The argument is the header"::
( send(@pce, debugging_subject, httpd)
-> send(@pce, write, Header)
; true
),
new(H, sheet),
send(@http_path_regex, match, Header),
get(@http_path_regex, register_end, StartOfAtt),
get(@http_path_regex, register_value, Header, 1, name, Request),
get(@http_path_regex, register_value, Header, 2, name, Path),
get(@http_path_regex, register_value, Header, 3, name, HttpVersion),
send(H, value, request, Request),
send(H, value, path, Path),
send(H, value, http_version, HttpVersion),
send(@http_header_regex, for_all, Header,
message(H, value,
?(@arg1, register_value, Header, 1, name)?downcase,
?(@arg1, register_value, Header, 2, name)),
StartOfAtt),
send(S, break_path, H),
send(S, break_authorization, H),
send(S, slot, request, H),
( send(@pce, debugging_subject, httpd)
-> send(S, pp_request)
; true
),
( send(S, builtin_request, H)
; send(S, request, H)
; send(S, server_error)
; true
),
( object(S)
-> send(S, slot, request, @nil)
; true
).
break_path(_, Header:sheet) :->
"Break form information from a path (GET)"::
get(Header, path, Path),
( get(Header, request, 'GET'),
sub_atom(Path, B, _, A, ?)
-> sub_atom(Path, 0, B, _, NewPath),
sub_atom(Path, _, A, 0, FormString),
send(Header, value, form, new(Form, sheet)),
decode_form_string(FormString, Form)
; send(Header, value, form, @nil),
NewPath = Path
),
www_form_encode(ThePath, NewPath),
send(Header, path, ThePath).
decode_form_string('', _) :- !.
decode_form_string(S, Sheet) :-
sub_atom(S, B, _, A, &),
!,
sub_atom(S, 0, B, _, A1),
sub_atom(S, _, A, 0, Rest),
decode_form_string(A1, Sheet),
decode_form_string(Rest, Sheet).
decode_form_string(S, Sheet) :-
sub_atom(S, B, _, A, =),
!,
sub_atom(S, 0, B, _, UrlName),
sub_atom(S, _, A, 0, UrlValue),
www_form_encode(Name, UrlName),
www_form_encode(Value, UrlValue),
send(Sheet, value, Name, Value).
% Athorisation information
%
% Authorization: Basic <Base64 for user:password>
% Adds the entries user and password to the header
break_authorization(_, Header:sheet) :->
( get(Header, value, authorization, Auth),
get(Auth, split, chain('Basic', Base64)),
get(Base64, base64_decode, Decoded),
get(Decoded, split, :, chain(User, Password))
-> send(Header, value, user, User),
send(Header, value, password, Password)
; true
).
:- pce_group(request).
builtin_request(S, Header:sheet) :->
"Handle a built-in request '/http/object?reference='"::
get(Header, path, '/httpd/object'),
get(Header, form, Form), Form \== @nil,
get(Form, reference, ObjRef),
get(@pce, object_from_reference, ObjRef, Obj),
send(S, reply, Obj).
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
->request
Virtual method. To use this class, always subclass it and redefine
->request. The reference implementation here is used to test basic
communication and responses.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
request(S, Header:sheet) :->
"Process a request. The argument is the header"::
( get(Header, path, '/no')
-> send(S, forbidden, '/no')
; get(Header, path, '/maybe')
-> ( get(Header, value, user, jan),
get(Header, value, password, test)
-> send(S, reply, 'You hacked me')
; send(S, authorization_required)
)
; send(S, reply, 'Nice try')
).
:- pce_group(reply).
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
->reply
Send a reply to the client. This method is used to reply using a
complete object. If HTML generation is required it may be desirable to
use ->reply_html, which uses library(html_write) to produce HTML in a
user-friendly way.
Typically, the data for reply is a string, a text_buffer, a file, a
resource or an image. Images are encoded in jpeg and sent as image/jpeg
mime-type or as GIF of the provided mime-type is image/gif. Other data
is sent as text/plain unless specified.
Messages with status other than "200 OK" are normally send using one of
the specialised methods from the *error* group (see below).
Finally, optional extra header information may be send. Please check the
HTTP1.1 documentation at
http://www.w3.org/Protocols/rfc2616/rfc2616.html
Some useful extra header fields:
Cache-Control: no-cache % Do not cache this data
Expires: <date> % Set expiration-date
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
reply(S,
Reply:data='string|source_sink|pixmap',
Type:type=[name],
Status:status=[name],
Header:header=[sheet]) :->
"Send back a reply"::
( send(Reply, instance_of, source_sink)
-> get(Reply, contents, Data)
; send(Reply, instance_of, image)
-> new(TB, text_buffer),
send(TB, undo_buffer_size, 0),
default(Type, 'image/jpeg', TheType),
atom_concat('image/', ImgType, TheType),
send(Reply, save, TB, ImgType),
get(TB, contents, Data),
free(TB)
; Data = Reply
),
( var(TheType)
-> default(Type, 'text/plain', TheType)
; true
),
get(new(date), rfc_string, Now),
( send(Reply, instance_of, file)
-> get(Reply, time, modified, ModifiedDate),
get(ModifiedDate, rfc_string, Modified)
; Modified = Now
),
default(Status, '200 OK', TheStatus),
send_list(S,
[ format('HTTP/1.1 %s\n', TheStatus),
format('Date: %s\n', Now),
format('Last-modified: %s\n', Modified),
format('Content-Length: %d\n', Data?size),
format('Content-Type: %s\n', TheType)
]),
( get(S, request, Request),
Request \== @nil,
( get(Request, value, connection, 'Keep-Alive')
; get(Request, value, http_version, '1.1')
)
-> Connection = 'Keep-Alive'
; Connection = close
),
send(S, format, 'Connection: %s\n', Connection),
( Header \== @default
-> send(Header, for_all,
message(S, format, '%s: %s\n', @arg1?name, @arg1?value))
; true
),
send(S, format, '\n'),
send(S, append, Data),
( Connection == 'Keep-Alive'
-> true
; send(S, free)
).
reply_html(S, Term:prolog, Status:status=[name], Header:header=[sheet]) :->
"Reply HTML from a structured Prolog term"::
( html_to_buffer(Term, TB)
-> send(S, reply, TB, 'text/html', Status, Header)
; send(S, server_error, 'Translation to HTML failed')
).
:- pce_group(error).
forbidden(S, What:[name]) :->
"Report a 403 permission error"::
( What == @default
-> get(S?request, path, Path)
; Path = What
),
send(S, reply_html, forbidden(Path), '403 Forbidden').
authorization_required(S, Method:'method=[{Basic}]', Realm:[name]) :->
"Report a 401 autorization required"::
default(Method, 'Basic', M),
default(Realm, 'ByPassword', R),
atomic_list_concat([M, ' realm="', R, '"'], AuthValue),
new(Sheet, sheet),
send(Sheet, value, 'WWW-Authenticate', AuthValue),
send(S, reply_html, authorization_required,
'401 Authorization Required',
Sheet).
not_found(S, What:[char_array]) :->
"Report a 404 not found error"::
( What == @default
-> get(S?request, path, Path)
; Path = What
),
send(S, reply_html, not_found(Path), '404 Not Found').
moved(S, Where:char_array) :->
"Report a 301 Moved Permanently"::
send(S, reply_html, moved(Where),
'301 Moved Permanently',
sheet(attribute('Location', Where))).
server_error(S, What:[char_array]) :->
"Report a 500 server error"::
send(S, reply_html, server_error(What), '500 Internal Server Error').
:- pce_group(debug).
pp_request(S) :->
"Print the current request"::
get(S, request, Sheet),
send(Sheet, for_all,
message(@pce, format, 'FIELD %s: %s\n', @arg1?name, @arg1?value)),
( get(Sheet, value, form, Form),
Form \== @nil
-> send(@pce, format, '\nForm data:\n'),
send(Form, for_all,
message(@pce, format, '\t%s: %s\n', @arg1?name, @arg1?value))
; true
).
:- pce_end_class(httpd).
/*******************************
* ERROR PAGES *
*******************************/
forbidden(URL) -->
page([ title('403 Forbidden')
],
[ h1('Forbidden'),
p(['You don''t have permission to access ', URL,
' on this server'
]),
address(httpd)
]).
authorization_required -->
page([ title('401 Authorization Required')
],
[ h1('Authorization Required'),
p(['This server could not verify that you ',
'are authorized to access the document ',
'requested. Either you supplied the wrong ',
'credentials (e.g., bad password), or your ',
'browser doesn''t understand how to supply ',
'the credentials required.'
])
]).
not_found(URL) -->
page([ title('404 Not found')
],
[ h1('Not found'),
p(['The requested URL ', URL,
' was not found on this server'
]),
address(httpd)
]).
server_error(@default) -->
!,
page([ title('500 Internal Server Error')
],
[ h1('Server error'),
p(['The server failed to process your request'
]),
address(httpd)
]).
server_error(Message) -->
page([ title('500 Internal Server Error')
],
[ h1('Server error'),
p(['The server failed to process your request'
]),
p(Message),
address(httpd)
]).
moved(Where) -->
page([ title('301 Moved Permanently')
],
[ h1('Moved Permanently'),
p([ 'The document has moved ', a(href(Where), ' Here')
]),
address(httpd)
]).
/*******************************
* HTML GENERATION *
*******************************/
% html_to_buffer(+Term, -TB)
%
% Convert an HTML term (as defined in html.pl) into an HTML formatted
% text-buffer. We use a text-buffer for fast appending and the fact
% that it is applicable to ->reply.
html_to_buffer(Term, TB) :-
phrase(Term, Tokens),
new(TB, text_buffer),
send(TB, undo_buffer_size, 0), % we don't need undo
pce_open(TB, write, Fd),
print_html(Fd, Tokens),
close(Fd).
% html_dcg:expand(Object)
%
% Allow placing certain XPCE objects in the token list to minimise
% programming. Currently this deals with:
%
% # char_array
% Emit the text (quoted)
%
% # device with (some) graphicals providing <-href
% Image with client-side image-map
%
% # Other graphicals and images
% An image
%
% # Anything else
% <-print_name (quoted)
:- multifile
html_write:expand/3.
html_write:expand(@Ref) -->
{ ( object(@Ref)
; catch(get(@Ref, self, _), _, fail) % force creation
)
},
expand_object(@Ref),
!.
expand_object(Object) -->
{ send(Object, instance_of, char_array),
!,
get(Object, value, Name)
},
html_quoted(Name).
expand_object(Object) -->
{ send(Object, instance_of, device),
image_map(Object, MapId, Map),
!,
gensym(map, MapId),
atom_concat('#', MapId, MapRef),
object_url(Object, Data)
},
html([ img([ src(Data),
border(0),
usemap(MapRef)
]),
Map
]).
expand_object(Object) -->
{ ( send(Object, instance_of, graphical)
; send(Object, instance_of, image)
),
!,
object_url(Object, Data)
},
html(img(src(Data))).
expand_object(Object) -->
{ get(Object?print_name, value, Name)
},
html_quoted(Name).
% object_url(+Object, -URL)
%
% Make sure the object has a named reference and is locked against
% the garbage collector and then return a URL of the form
%
% '/httpd/object?reference=<Ref>'
%
% Locking and using named references is required as the object will
% only be requested later and we need a relyable existence check to
% avoid security problems due to crashes. Possibly we should make
% a table to allow for cleanup as well as disallow requesting any
% object with a known name. See also ->builtin_request
object_url(Object, URL) :-
get(Object, object_reference, Ref),
integer(Ref),
!,
send(Object, lock_object, @on),
gensym('obj_', Name),
send(Object, name_reference, Name),
atom_concat('/httpd/object?reference=', Name, URL).
object_url(Object, URL) :-
get(Object, object_reference, Ref),
atom_concat('/httpd/object?reference=', Ref, URL).
image_map(Dev, Id, map(name(Id), Map)) :-
send(Dev, instance_of, device),
!,
send(Dev, compute), % need proper layout
new(MapGrs, chain),
\+ get(Dev, find, @default,
and(message(@arg1, has_get_method, href),
@arg1 \== Dev,
message(MapGrs, append, @arg1),
new(or)),
_),
chain_list(MapGrs, List),
List \== [],
make_map(List, Dev, Map).
make_map([], _, []).
make_map([Gr|T0], Dev, [area([href(Href)|Area])|T]) :-
get(Gr, href, Href),
area(Gr, Dev, Area),
make_map(T0, Dev, T).
% area(+Graphical, +Device -MapAreaAttributes)
%
% Incomplete mapping of attributes. Should also deal with circles
% and try to map other items as reasonable as possible to paths.
% This one will then be the fall-back.
%
% The complication arrives from the fact we should give the bounding
% box of the graphical relative to the bounding box of the device and
% neither is very willing to help much.
area(Gr, Dev, [shape(rect), coords(Coords)]) :-
get(Dev, offset, point(OX, OY)),
get(Dev, area, area(DX, DY, _, _)),
get(Gr, absolute_position, Dev, point(AX, AY)),
get(Gr, position, point(PX, PY)),
get(Gr, area, area(X,Y,W,H)),
GrX is X + (AX-PX) + (DX-OX),
GrY is Y + (AY-PY) + (DY-OY),
GrR is GrX + W,
GrB is GrY + H,
atomic_list_concat([GrX, GrY, GrR, GrB], ',', Coords).
|