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 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
|
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2002-2022, University of Amsterdam
VU University Amsterdam
CWI, Amsterdam
SWI-Prolog Solutions b.v.
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_open,
[ http_open/3, % +URL, -Stream, +Options
http_set_authorization/2, % +URL, +Authorization
http_close_keep_alive/1 % +Address
]).
:- autoload(library(aggregate),[aggregate_all/3]).
:- autoload(library(apply),[foldl/4,include/3]).
:- autoload(library(base64),[base64/3]).
:- autoload(library(debug),[debug/3,debugging/1]).
:- autoload(library(error),
[ domain_error/2, must_be/2, existence_error/2, instantiation_error/1
]).
:- autoload(library(lists),[last/2,member/2]).
:- autoload(library(option),
[ meta_options/3, option/2, select_option/4, merge_options/3,
option/3, select_option/3
]).
:- autoload(library(readutil),[read_line_to_codes/2]).
:- autoload(library(uri),
[ uri_resolve/3, uri_components/2, uri_data/3,
uri_authority_components/2, uri_authority_data/3,
uri_encoded/3, uri_query_components/2, uri_is_global/1
]).
:- autoload(library(http/http_header),
[ http_parse_header/2, http_post_data/3 ]).
:- autoload(library(http/http_stream),[stream_range_open/3]).
:- if(exists_source(library(ssl))).
:- autoload(library(ssl), [ssl_upgrade_legacy_options/2]).
:- endif.
:- use_module(library(socket)).
/** <module> HTTP client library
This library defines http_open/3, which opens an URL as a Prolog stream.
The functionality of the library can be extended by loading two
additional modules that act as plugins:
* library(http/http_ssl_plugin)
Loading this library causes http_open/3 to handle HTTPS connections.
Relevant options for SSL certificate handling are handed to
ssl_context/3. This plugin is loaded automatically if the scheme
`https` is requested using a default SSL context. See the plugin for
additional information regarding security.
* library(zlib)
Loading this library supports the `gzip` transfer encoding. This
plugin is lazily loaded if a connection is opened that claims this
transfer encoding.
* library(http/http_cookie)
Loading this library adds tracking cookies to http_open/3. Returned
cookies are collected in the Prolog database and supplied for
subsequent requests.
* library(http/http_stream)
This library adds support for _chunked_ encoding and makes the
http_open/3 advertise itself as HTTP/1.1 instead of HTTP/1.0.
Here is a simple example to fetch a web-page:
```
?- http_open('http://www.google.com/search?q=prolog', In, []),
copy_stream_data(In, user_output),
close(In).
<!doctype html><head><title>prolog - Google Search</title><script>
...
```
The example below fetches the modification time of a web-page. Note that
=|Modified|= is =|''|= (the empty atom) if the web-server does not provide a
time-stamp for the resource. See also parse_time/2.
```
modified(URL, Stamp) :-
http_open(URL, In,
[ method(head),
header(last_modified, Modified)
]),
close(In),
Modified \== '',
parse_time(Modified, Stamp).
```
Then next example uses Google search. It exploits library(uri) to manage
URIs, library(sgml) to load an HTML document and library(xpath) to
navigate the parsed HTML. Note that you may need to adjust the XPath
queries if the data returned by Google changes (this example indeed
no longer works and currently fails at the first xpath/3 call)
```
:- use_module(library(http/http_open)).
:- use_module(library(xpath)).
:- use_module(library(sgml)).
:- use_module(library(uri)).
google(For, Title, HREF) :-
uri_encoded(query_value, For, Encoded),
atom_concat('http://www.google.com/search?q=', Encoded, URL),
http_open(URL, In, []),
call_cleanup(
load_html(In, DOM, []),
close(In)),
xpath(DOM, //h3(@class=r), Result),
xpath(Result, //a(@href=HREF0, text), Title),
uri_components(HREF0, Components),
uri_data(search, Components, Query),
uri_query_components(Query, Parts),
memberchk(q=HREF, Parts).
```
An example query is below:
```
?- google(prolog, Title, HREF).
Title = 'SWI-Prolog',
HREF = 'http://www.swi-prolog.org/' ;
Title = 'Prolog - Wikipedia',
HREF = 'https://nl.wikipedia.org/wiki/Prolog' ;
Title = 'Prolog - Wikipedia, the free encyclopedia',
HREF = 'https://en.wikipedia.org/wiki/Prolog' ;
Title = 'Pro-Log is logistiek dienstverlener m.b.t. vervoer over water.',
HREF = 'http://www.pro-log.nl/' ;
Title = 'Learn Prolog Now!',
HREF = 'http://www.learnprolognow.org/' ;
Title = 'Free Online Version - Learn Prolog
...
```
@see load_html/3 and xpath/3 can be used to parse and navigate HTML
documents.
@see http_get/3 and http_post/4 provide an alternative interface that
convert the reply depending on the =|Content-Type|= header.
*/
:- multifile
http:encoding_filter/3, % +Encoding, +In0, -In
http:current_transfer_encoding/1, % ?Encoding
http:disable_encoding_filter/1, % +ContentType
http:http_protocol_hook/5, % +Protocol, +Parts, +StreamPair,
% -NewStreamPair, +Options
http:open_options/2, % +Parts, -Options
http:write_cookies/3, % +Out, +Parts, +Options
http:update_cookies/3, % +CookieLine, +Parts, +Options
http:authenticate_client/2, % +URL, +Action
http:http_connection_over_proxy/6.
:- meta_predicate
http_open(+,-,:).
:- predicate_options(http_open/3, 3,
[ authorization(compound),
final_url(-atom),
header(+atom, -atom),
headers(-list),
raw_headers(-list(string)),
connection(+atom),
method(oneof([delete,get,put,head,post,patch,options])),
size(-integer),
status_code(-integer),
output(-stream),
timeout(number),
unix_socket(+atom),
proxy(atom, integer),
proxy_authorization(compound),
bypass_proxy(boolean),
request_header(any),
user_agent(atom),
version(-compound),
% The option below applies if library(http/http_header) is loaded
post(any),
% The options below apply if library(http/http_ssl_plugin)) is loaded
pem_password_hook(callable),
cacert_file(atom),
cert_verify_hook(callable)
]).
%! user_agent(-Agent) is det.
%
% Default value for =|User-Agent|=, can be overruled using the
% option user_agent(Agent) of http_open/3.
user_agent('SWI-Prolog').
%! http_open(+URL, -Stream, +Options) is det.
%
% Open the data at the HTTP server as a Prolog stream. URL is
% either an atom specifying a URL or a list representing a
% broken-down URL as specified below. After this predicate
% succeeds the data can be read from Stream. After completion this
% stream must be closed using the built-in Prolog predicate
% close/1. Options provides additional options:
%
% * authenticate(+Boolean)
% If `false` (default `true`), do _not_ try to automatically
% authenticate the client if a 401 (Unauthorized) status code
% is received.
%
% * authorization(+Term)
% Send authorization. See also http_set_authorization/2. Supported
% schemes:
%
% - basic(+User, +Password)
% HTTP Basic authentication.
% - bearer(+Token)
% HTTP Bearer authentication.
% - digest(+User, +Password)
% HTTP Digest authentication. This option is only provided
% if the plugin library(http/http_digest) is also loaded.
%
% * unix_socket(+Path)
% Connect to the given Unix domain socket. In this scenario
% the host name and port or ignored. If the server replies
% with a _redirect_ message and the host differs from the
% original host as normal TCP connection is used to handle
% the redirect. This option is inspired by curl(1)'s option
% `--unix-socket`.
%
% * connection(+Connection)
% Specify the =Connection= header. Default is =close=. The
% alternative is =|Keep-alive|=. This maintains a pool of
% available connections as determined by keep_connection/1.
% The library(http/websockets) uses =|Keep-alive, Upgrade|=.
% Keep-alive connections can be closed explicitly using
% http_close_keep_alive/1. Keep-alive connections may
% significantly improve repetitive requests on the same server,
% especially if the IP route is long, HTTPS is used or the
% connection uses a proxy.
%
% * final_url(-FinalURL)
% Unify FinalURL with the final destination. This differs from
% the original URL if the returned head of the original
% indicates an HTTP redirect (codes 301, 302 or 303). Without a
% redirect, FinalURL is the same as URL if URL is an atom, or a
% URL constructed from the parts.
%
% * header(Name, -AtomValue)
% If provided, AtomValue is unified with the value of the
% indicated field in the reply header. Name is matched
% case-insensitive and the underscore (_) matches the hyphen
% (-). Multiple of these options may be provided to extract
% multiple header fields. If the header is not available
% AtomValue is unified to the empty atom ('').
%
% * headers(-List)
% If provided, List is unified with a list of Name(Value) pairs
% corresponding to fields in the reply header. Name and Value
% follow the same conventions used by the header(Name,Value)
% option. See also raw_headers(-List) which provides the entire
% HTTP reply header in unparsed representation.
%
% * method(+Method)
% One of =get= (default), =head=, =delete=, =post=, =put= or
% =patch=.
% The =head= message can be
% used in combination with the header(Name, Value) option to
% access information on the resource without actually fetching
% the resource itself. The returned stream must be closed
% immediately.
%
% If post(Data) is provided, the default is =post=.
%
% * size(-Size)
% Size is unified with the integer value of =|Content-Length|=
% in the reply header.
%
% * version(-Version)
% Version is a _pair_ `Major-Minor`, where `Major` and `Minor`
% are integers representing the HTTP version in the reply header.
%
% * range(+Range)
% Ask for partial content. Range is a term _|Unit(From,To)|_,
% where `From` is an integer and `To` is either an integer or
% the atom `end`. HTTP 1.1 only supports Unit = `bytes`. E.g.,
% to ask for bytes 1000-1999, use the option
% range(bytes(1000,1999))
%
% * raw_encoding(+Encoding)
% Do not install a decoding filter for Encoding. For example,
% using raw_encoding('applocation/gzip') the system will not
% decompress the stream if it is compressed using `gzip`.
%
% * raw_headers(-Lines)
% Unify Lines with a list of strings that represents the complete
% reply header returned by the server. See also headers(-List).
%
% * redirect(+Boolean)
% If `false` (default `true`), do _not_ automatically redirect
% if a 3XX code is received. Must be combined with
% status_code(Code) and one of the header options to read the
% redirect reply. In particular, without status_code(Code) a
% redirect is mapped to an exception.
%
% * status_code(-Code)
% If this option is present and Code unifies with the HTTP
% status code, do *not* translate errors (4xx, 5xx) into an
% exception. Instead, http_open/3 behaves as if 2xx (success) is
% returned, providing the application to read the error document
% from the returned stream.
%
% * output(-Out)
% Unify the output stream with Out and do not close it. This can
% be used to upgrade a connection.
%
% * timeout(+Timeout)
% If provided, set a timeout on the stream using set_stream/2.
% With this option if no new data arrives within Timeout seconds
% the stream raises an exception. Default is to wait forever
% (=infinite=).
%
% * post(+Data)
% Issue a =POST= request on the HTTP server. Data is
% handed to http_post_data/3.
%
% * proxy(+Host:Port)
% Use an HTTP proxy to connect to the outside world. See also
% socket:proxy_for_url/3. This option overrules the proxy
% specification defined by socket:proxy_for_url/3.
%
% * proxy(+Host, +Port)
% Synonym for proxy(+Host:Port). Deprecated.
%
% * proxy_authorization(+Authorization)
% Send authorization to the proxy. Otherwise the same as the
% =authorization= option.
%
% * bypass_proxy(+Boolean)
% If =true=, bypass proxy hooks. Default is =false=.
%
% * request_header(Name = Value)
% Additional name-value parts are added in the order of
% appearance to the HTTP request header. No interpretation is
% done.
%
% * max_redirect(+Max)
% Sets the maximum length of a redirection chain. This is needed
% for some IRIs that redirect indefinitely to other IRIs without
% looping (e.g., redirecting to IRIs with a random element in them).
% Max must be either a non-negative integer or the atom `infinite`.
% The default value is `10`.
%
% * user_agent(+Agent)
% Defines the value of the =|User-Agent|= field of the HTTP
% header. Default is =SWI-Prolog=.
%
% The hook http:open_options/2 can be used to provide default
% options based on the broken-down URL. The option
% status_code(-Code) is particularly useful to query *REST*
% interfaces that commonly return status codes other than `200`
% that need to be be processed by the client code.
%
% @param URL is either an atom or string (url) or a list of _parts_.
%
% When provided, this list may contain the fields
% =scheme=, =user=, =password=, =host=, =port=, =path=
% and either =query_string= (whose argument is an atom)
% or =search= (whose argument is a list of
% =|Name(Value)|= or =|Name=Value|= compound terms).
% Only =host= is mandatory. The example below opens the
% URL =|http://www.example.com/my/path?q=Hello%20World&lang=en|=.
% Note that values must *not* be quoted because the
% library inserts the required quotes.
%
% ```
% http_open([ host('www.example.com'),
% path('/my/path'),
% search([ q='Hello world',
% lang=en
% ])
% ])
% ```
%
% @throws error(existence_error(url, Id),Context) is raised if the
% HTTP result code is not in the range 200..299. Context has the
% shape context(Message, status(Code, TextCode)), where `Code` is the
% numeric HTTP code and `TextCode` is the textual description thereof
% provided by the server. `Message` may provide additional details or
% may be unbound.
%
% @see ssl_context/3 for SSL related options if
% library(http/http_ssl_plugin) is loaded.
:- multifile
socket:proxy_for_url/3. % +URL, +Host, -ProxyList
http_open(URL, Stream, QOptions) :-
meta_options(is_meta, QOptions, Options0),
( atomic(URL)
-> parse_url_ex(URL, Parts)
; Parts = URL
),
autoload_https(Parts),
upgrade_ssl_options(Parts, Options0, Options),
add_authorization(Parts, Options, Options1),
findall(HostOptions, hooked_options(Parts, HostOptions), AllHostOptions),
foldl(merge_options_rev, AllHostOptions, Options1, Options2),
( option(bypass_proxy(true), Options)
-> try_http_proxy(direct, Parts, Stream, Options2)
; term_variables(Options2, Vars2),
findall(Result-Vars2,
try_a_proxy(Parts, Result, Options2),
ResultList),
last(ResultList, Status-Vars2)
-> ( Status = true(_Proxy, Stream)
-> true
; throw(error(proxy_error(tried(ResultList)), _))
)
; try_http_proxy(direct, Parts, Stream, Options2)
).
try_a_proxy(Parts, Result, Options) :-
parts_uri(Parts, AtomicURL),
option(host(Host), Parts),
( option(unix_socket(Path), Options)
-> Proxy = unix_socket(Path)
; ( option(proxy(ProxyHost:ProxyPort), Options)
; is_list(Options),
memberchk(proxy(ProxyHost,ProxyPort), Options)
)
-> Proxy = proxy(ProxyHost, ProxyPort)
; socket:proxy_for_url(AtomicURL, Host, Proxy)
),
debug(http(proxy),
'http_open: Connecting via ~w to ~w', [Proxy, AtomicURL]),
( catch(try_http_proxy(Proxy, Parts, Stream, Options), E, true)
-> ( var(E)
-> !, Result = true(Proxy, Stream)
; Result = error(Proxy, E)
)
; Result = false(Proxy)
),
debug(http(proxy), 'http_open: ~w: ~p', [Proxy, Result]).
try_http_proxy(Method, Parts, Stream, Options0) :-
option(host(Host), Parts),
proxy_request_uri(Method, Parts, RequestURI),
select_option(visited(Visited0), Options0, OptionsV, []),
Options = [visited([Parts|Visited0])|OptionsV],
parts_scheme(Parts, Scheme),
default_port(Scheme, DefPort),
url_part(port(Port), Parts, DefPort),
host_and_port(Host, DefPort, Port, HostPort),
( option(connection(Connection), Options0),
keep_alive(Connection),
get_from_pool(Host:Port, StreamPair),
debug(http(connection), 'Trying Keep-alive to ~p using ~p',
[ Host:Port, StreamPair ]),
catch(send_rec_header(StreamPair, Stream, HostPort,
RequestURI, Parts, Options),
error(E,_),
keep_alive_error(E))
-> true
; http:http_connection_over_proxy(Method, Parts, Host:Port,
SocketStreamPair, Options, Options1),
( catch(http:http_protocol_hook(Scheme, Parts,
SocketStreamPair,
StreamPair, Options),
Error,
( close(SocketStreamPair, [force(true)]),
throw(Error)))
-> true
; StreamPair = SocketStreamPair
),
send_rec_header(StreamPair, Stream, HostPort,
RequestURI, Parts, Options1)
),
return_final_url(Options).
proxy_request_uri(direct, Parts, RequestURI) :-
!,
parts_request_uri(Parts, RequestURI).
proxy_request_uri(unix_socket(_), Parts, RequestURI) :-
!,
parts_request_uri(Parts, RequestURI).
proxy_request_uri(_, Parts, RequestURI) :-
parts_uri(Parts, RequestURI).
http:http_connection_over_proxy(unix_socket(Path), _, _,
StreamPair, Options, Options) :-
!,
unix_domain_socket(Socket),
tcp_connect(Socket, Path),
tcp_open_socket(Socket, In, Out),
stream_pair(StreamPair, In, Out).
http:http_connection_over_proxy(direct, _, Host:Port,
StreamPair, Options, Options) :-
!,
open_socket(Host:Port, StreamPair, Options).
http:http_connection_over_proxy(proxy(ProxyHost, ProxyPort), Parts, _,
StreamPair, Options, Options) :-
\+ ( memberchk(scheme(Scheme), Parts),
secure_scheme(Scheme)
),
!,
% We do not want any /more/ proxy after this
open_socket(ProxyHost:ProxyPort, StreamPair,
[bypass_proxy(true)|Options]).
http:http_connection_over_proxy(socks(SocksHost, SocksPort), _Parts, Host:Port,
StreamPair, Options, Options) :-
!,
tcp_connect(SocksHost:SocksPort, StreamPair, [bypass_proxy(true)]),
catch(negotiate_socks_connection(Host:Port, StreamPair),
Error,
( close(StreamPair, [force(true)]),
throw(Error)
)).
%! hooked_options(+Parts, -Options) is nondet.
%
% Calls http:open_options/2 and if necessary upgrades old SSL
% cacerts_file(File) option to a cacerts(List) option to ensure proper
% merging of options.
hooked_options(Parts, Options) :-
http:open_options(Parts, Options0),
upgrade_ssl_options(Parts, Options0, Options).
:- if(current_predicate(ssl_upgrade_legacy_options/2)).
upgrade_ssl_options(Parts, Options0, Options) :-
requires_ssl(Parts),
!,
ssl_upgrade_legacy_options(Options0, Options).
:- endif.
upgrade_ssl_options(_, Options, Options).
merge_options_rev(Old, New, Merged) :-
merge_options(New, Old, Merged).
is_meta(pem_password_hook). % SSL plugin callbacks
is_meta(cert_verify_hook).
http:http_protocol_hook(http, _, StreamPair, StreamPair, _).
default_port(https, 443) :- !.
default_port(wss, 443) :- !.
default_port(_, 80).
host_and_port(Host, DefPort, DefPort, Host) :- !.
host_and_port(Host, _, Port, Host:Port).
%! autoload_https(+Parts) is det.
%
% If the requested scheme is https or wss, load the HTTPS plugin.
autoload_https(Parts) :-
requires_ssl(Parts),
memberchk(scheme(S), Parts),
\+ clause(http:http_protocol_hook(S, _, StreamPair, StreamPair, _),_),
exists_source(library(http/http_ssl_plugin)),
!,
use_module(library(http/http_ssl_plugin)).
autoload_https(_).
requires_ssl(Parts) :-
memberchk(scheme(S), Parts),
secure_scheme(S).
secure_scheme(https).
secure_scheme(wss).
%! send_rec_header(+StreamPair, -Stream,
%! +Host, +RequestURI, +Parts, +Options) is det.
%
% Send header to Out and process reply. If there is an error or
% failure, close In and Out and return the error or failure.
send_rec_header(StreamPair, Stream, Host, RequestURI, Parts, Options) :-
( catch(guarded_send_rec_header(StreamPair, Stream,
Host, RequestURI, Parts, Options),
E, true)
-> ( var(E)
-> ( option(output(StreamPair), Options)
-> true
; true
)
; close(StreamPair, [force(true)]),
throw(E)
)
; close(StreamPair, [force(true)]),
fail
).
guarded_send_rec_header(StreamPair, Stream, Host, RequestURI, Parts, Options) :-
user_agent(Agent, Options),
method(Options, MNAME),
http_version(Version),
option(connection(Connection), Options, close),
debug(http(send_request), "> ~w ~w HTTP/~w", [MNAME, RequestURI, Version]),
debug(http(send_request), "> Host: ~w", [Host]),
debug(http(send_request), "> User-Agent: ~w", [Agent]),
debug(http(send_request), "> Connection: ~w", [Connection]),
format(StreamPair,
'~w ~w HTTP/~w\r\n\c
Host: ~w\r\n\c
User-Agent: ~w\r\n\c
Connection: ~w\r\n',
[MNAME, RequestURI, Version, Host, Agent, Connection]),
parts_uri(Parts, URI),
x_headers(Options, URI, StreamPair),
write_cookies(StreamPair, Parts, Options),
( option(post(PostData), Options)
-> http_post_data(PostData, StreamPair, [])
; format(StreamPair, '\r\n', [])
),
flush_output(StreamPair),
% read the reply header
read_header(StreamPair, Parts, ReplyVersion, Code, Comment, Lines),
update_cookies(Lines, Parts, Options),
reply_header(Lines, Options),
do_open(ReplyVersion, Code, Comment, Lines, Options, Parts, Host,
StreamPair, Stream).
%! http_version(-Version:atom) is det.
%
% HTTP version we publish. We can only use 1.1 if we support
% chunked encoding.
http_version('1.1') :-
http:current_transfer_encoding(chunked),
!.
http_version('1.0').
method(Options, MNAME) :-
option(post(_), Options),
!,
option(method(M), Options, post),
( map_method(M, MNAME0)
-> MNAME = MNAME0
; domain_error(method, M)
).
method(Options, MNAME) :-
option(method(M), Options, get),
( map_method(M, MNAME0)
-> MNAME = MNAME0
; map_method(_, M)
-> MNAME = M
; domain_error(method, M)
).
%! map_method(+MethodID, -Method)
%
% Support additional ``METHOD`` keywords. Default are the official
% HTTP methods as defined by the various RFCs.
:- multifile
map_method/2.
map_method(delete, 'DELETE').
map_method(get, 'GET').
map_method(head, 'HEAD').
map_method(post, 'POST').
map_method(put, 'PUT').
map_method(patch, 'PATCH').
map_method(options, 'OPTIONS').
%! x_headers(+Options, +URI, +Out) is det.
%
% Emit extra headers from request_header(Name=Value) options in
% Options.
%
% @tbd Use user/password fields
x_headers(Options, URI, Out) :-
x_headers_(Options, [url(URI)|Options], Out).
x_headers_([], _, _).
x_headers_([H|T], Options, Out) :-
x_header(H, Options, Out),
x_headers_(T, Options, Out).
x_header(request_header(Name=Value), _, Out) :-
!,
debug(http(send_request), "> ~w: ~w", [Name, Value]),
format(Out, '~w: ~w\r\n', [Name, Value]).
x_header(proxy_authorization(ProxyAuthorization), Options, Out) :-
!,
auth_header(ProxyAuthorization, Options, 'Proxy-Authorization', Out).
x_header(authorization(Authorization), Options, Out) :-
!,
auth_header(Authorization, Options, 'Authorization', Out).
x_header(range(Spec), _, Out) :-
!,
Spec =.. [Unit, From, To],
( To == end
-> ToT = ''
; must_be(integer, To),
ToT = To
),
debug(http(send_request), "> Range: ~w=~d-~w", [Unit, From, ToT]),
format(Out, 'Range: ~w=~d-~w\r\n', [Unit, From, ToT]).
x_header(_, _, _).
%! auth_header(+AuthOption, +Options, +HeaderName, +Out)
auth_header(basic(User, Password), _, Header, Out) :-
!,
format(codes(Codes), '~w:~w', [User, Password]),
phrase(base64(Codes), Base64Codes),
debug(http(send_request), "> ~w: Basic ~s", [Header, Base64Codes]),
format(Out, '~w: Basic ~s\r\n', [Header, Base64Codes]).
auth_header(bearer(Token), _, Header, Out) :-
!,
debug(http(send_request), "> ~w: Bearer ~w", [Header,Token]),
format(Out, '~w: Bearer ~w\r\n', [Header, Token]).
auth_header(Auth, Options, _, Out) :-
option(url(URL), Options),
add_method(Options, Options1),
http:authenticate_client(URL, send_auth_header(Auth, Out, Options1)),
!.
auth_header(Auth, _, _, _) :-
domain_error(authorization, Auth).
user_agent(Agent, Options) :-
( option(user_agent(Agent), Options)
-> true
; user_agent(Agent)
).
add_method(Options0, Options) :-
option(method(_), Options0),
!,
Options = Options0.
add_method(Options0, Options) :-
option(post(_), Options0),
!,
Options = [method(post)|Options0].
add_method(Options0, [method(get)|Options0]).
%! do_open(+HTTPVersion, +HTTPStatusCode, +HTTPStatusComment, +Header,
%! +Options, +Parts, +Host, +In, -FinalIn) is det.
%
% Handle the HTTP status once available. If 200-299, we are ok. If a
% redirect, redo the open, returning a new stream. Else issue an
% error.
%
% @error existence_error(url, URL)
% Redirections
do_open(_, Code, _, Lines, Options0, Parts, _, In, Stream) :-
redirect_code(Code),
option(redirect(true), Options0, true),
location(Lines, RequestURI),
!,
debug(http(redirect), 'http_open: redirecting to ~w', [RequestURI]),
close(In),
parts_uri(Parts, Base),
uri_resolve(RequestURI, Base, Redirected),
parse_url_ex(Redirected, RedirectedParts),
( redirect_limit_exceeded(Options0, Max)
-> format(atom(Comment), 'max_redirect (~w) limit exceeded', [Max]),
throw(error(permission_error(redirect, http, Redirected),
context(_, Comment)))
; redirect_loop(RedirectedParts, Options0)
-> throw(error(permission_error(redirect, http, Redirected),
context(_, 'Redirection loop')))
; true
),
redirect_options(Parts, RedirectedParts, Options0, Options),
http_open(RedirectedParts, Stream, Options).
% Need authentication
do_open(_Version, Code, _Comment, Lines, Options0, Parts, _Host, In0, Stream) :-
authenticate_code(Code),
option(authenticate(true), Options0, true),
parts_uri(Parts, URI),
parse_headers(Lines, Headers),
http:authenticate_client(
URI,
auth_reponse(Headers, Options0, Options)),
!,
close(In0),
http_open(Parts, Stream, Options).
% Accepted codes
do_open(Version, Code, _, Lines, Options, Parts, Host, In0, In) :-
( option(status_code(Code), Options),
Lines \== []
-> true
; successful_code(Code)
),
!,
parts_uri(Parts, URI),
parse_headers(Lines, Headers),
return_version(Options, Version),
return_size(Options, Headers),
return_fields(Options, Headers),
return_headers(Options, Headers),
consider_keep_alive(Lines, Parts, Host, In0, In1, Options),
transfer_encoding_filter(Lines, In1, In, Options),
% properly re-initialise the stream
set_stream(In, file_name(URI)),
set_stream(In, record_position(true)).
do_open(_, _, _, [], Options, _, _, _, _) :-
option(connection(Connection), Options),
keep_alive(Connection),
!,
throw(error(keep_alive(closed),_)).
% report anything else as error
do_open(_Version, Code, Comment, _, _, Parts, _, _, _) :-
parts_uri(Parts, URI),
( map_error_code(Code, Error)
-> Formal =.. [Error, url, URI]
; Formal = existence_error(url, URI)
),
throw(error(Formal, context(_, status(Code, Comment)))).
successful_code(Code) :-
between(200, 299, Code).
%! redirect_limit_exceeded(+Options:list(compound), -Max:nonneg) is semidet.
%
% True if we have exceeded the maximum redirection length (default 10).
redirect_limit_exceeded(Options, Max) :-
option(visited(Visited), Options, []),
length(Visited, N),
option(max_redirect(Max), Options, 10),
(Max == infinite -> fail ; N > Max).
%! redirect_loop(+Parts, +Options) is semidet.
%
% True if we are in a redirection loop. Note that some sites
% redirect once to the same place using cookies or similar, so we
% allow for two tries. In fact, we should probably test whether
% authorization or cookie headers have changed.
redirect_loop(Parts, Options) :-
option(visited(Visited), Options, []),
include(==(Parts), Visited, Same),
length(Same, Count),
Count > 2.
%! redirect_options(+Parts, +RedirectedParts, +Options0, -Options) is det.
%
% A redirect from a POST should do a GET on the returned URI. This
% means we must remove the method(post) and post(Data) options from
% the original option-list.
%
% If we are connecting over a Unix domain socket we drop this option
% if the redirect host does not match the initial host.
redirect_options(Parts, RedirectedParts, Options0, Options) :-
select_option(unix_socket(_), Options0, Options1),
memberchk(host(Host), Parts),
memberchk(host(RHost), RedirectedParts),
debug(http(redirect), 'http_open: redirecting AF_UNIX ~w to ~w',
[Host, RHost]),
Host \== RHost,
!,
redirect_options(Options1, Options).
redirect_options(_, _, Options0, Options) :-
redirect_options(Options0, Options).
redirect_options(Options0, Options) :-
( select_option(post(_), Options0, Options1)
-> true
; Options1 = Options0
),
( select_option(method(Method), Options1, Options),
\+ redirect_method(Method)
-> true
; Options = Options1
).
redirect_method(delete).
redirect_method(get).
redirect_method(head).
%! map_error_code(+HTTPCode, -PrologError) is semidet.
%
% Map HTTP error codes to Prolog errors.
%
% @tbd Many more maps. Unfortunately many have no sensible Prolog
% counterpart.
map_error_code(401, permission_error).
map_error_code(403, permission_error).
map_error_code(404, existence_error).
map_error_code(405, permission_error).
map_error_code(407, permission_error).
map_error_code(410, existence_error).
redirect_code(301). % Moved Permanently
redirect_code(302). % Found (previously "Moved Temporary")
redirect_code(303). % See Other
redirect_code(307). % Temporary Redirect
authenticate_code(401).
%! open_socket(+Address, -StreamPair, +Options) is det.
%
% Create and connect a client socket to Address. Options
%
% * timeout(+Timeout)
% Sets timeout on the stream, *after* connecting the
% socket.
%
% @tbd Make timeout also work on tcp_connect/4.
% @tbd This is the same as do_connect/4 in http_client.pl
open_socket(Address, StreamPair, Options) :-
debug(http(open), 'http_open: Connecting to ~p ...', [Address]),
tcp_connect(Address, StreamPair, Options),
stream_pair(StreamPair, In, Out),
debug(http(open), '\tok ~p ---> ~p', [In, Out]),
set_stream(In, record_position(false)),
( option(timeout(Timeout), Options)
-> set_stream(In, timeout(Timeout))
; true
).
return_version(Options, Major-Minor) :-
option(version(Major-Minor), Options, _).
return_size(Options, Headers) :-
( memberchk(content_length(Size), Headers)
-> option(size(Size), Options, _)
; true
).
return_fields([], _).
return_fields([header(Name, Value)|T], Headers) :-
!,
( Term =.. [Name,Value],
memberchk(Term, Headers)
-> true
; Value = ''
),
return_fields(T, Headers).
return_fields([_|T], Lines) :-
return_fields(T, Lines).
return_headers(Options, Headers) :-
option(headers(Headers), Options, _).
%! parse_headers(+Lines, -Headers:list(compound)) is det.
%
% Parse the header lines for the headers(-List) option. Invalid
% header lines are skipped, printing a warning using
% pring_message/2.
parse_headers([], []) :- !.
parse_headers([Line|Lines], Headers) :-
catch(http_parse_header(Line, [Header]), Error, true),
( var(Error)
-> Headers = [Header|More]
; print_message(warning, Error),
Headers = More
),
parse_headers(Lines, More).
%! return_final_url(+Options) is semidet.
%
% If Options contains final_url(URL), unify URL with the final
% URL after redirections.
return_final_url(Options) :-
option(final_url(URL), Options),
var(URL),
!,
option(visited([Parts|_]), Options),
parts_uri(Parts, URL).
return_final_url(_).
%! transfer_encoding_filter(+Lines, +In0, -In, +Options) is det.
%
% Install filters depending on the transfer encoding. If In0 is a
% stream-pair, we close the output side. If transfer-encoding is
% not specified, the content-encoding is interpreted as a synonym
% for transfer-encoding, because many servers incorrectly depend
% on this. Exceptions to this are content-types for which
% disable_encoding_filter/1 holds.
transfer_encoding_filter(Lines, In0, In, Options) :-
transfer_encoding(Lines, Encoding),
!,
transfer_encoding_filter_(Encoding, In0, In, Options).
transfer_encoding_filter(Lines, In0, In, Options) :-
content_encoding(Lines, Encoding),
content_type(Lines, Type),
\+ http:disable_encoding_filter(Type),
!,
transfer_encoding_filter_(Encoding, In0, In, Options).
transfer_encoding_filter(_, In, In, _Options).
transfer_encoding_filter_(Encoding, In0, In, Options) :-
option(raw_encoding(Encoding), Options),
!,
In = In0.
transfer_encoding_filter_(Encoding, In0, In, _Options) :-
stream_pair(In0, In1, Out),
( nonvar(Out)
-> close(Out)
; true
),
( http:encoding_filter(Encoding, In1, In)
-> true
; autoload_encoding(Encoding),
http:encoding_filter(Encoding, In1, In)
-> true
; domain_error(http_encoding, Encoding)
).
:- multifile
autoload_encoding/1.
:- if(exists_source(library(zlib))).
autoload_encoding(gzip) :-
use_module(library(zlib)).
:- endif.
content_type(Lines, Type) :-
member(Line, Lines),
phrase(field('content-type'), Line, Rest),
!,
atom_codes(Type, Rest).
%! http:disable_encoding_filter(+ContentType) is semidet.
%
% Do not use the =|Content-encoding|= as =|Transfer-encoding|=
% encoding for specific values of ContentType. This predicate is
% multifile and can thus be extended by the user.
http:disable_encoding_filter('application/x-gzip').
http:disable_encoding_filter('application/x-tar').
http:disable_encoding_filter('x-world/x-vrml').
http:disable_encoding_filter('application/zip').
http:disable_encoding_filter('application/x-gzip').
http:disable_encoding_filter('application/x-zip-compressed').
http:disable_encoding_filter('application/x-compress').
http:disable_encoding_filter('application/x-compressed').
http:disable_encoding_filter('application/x-spoon').
%! transfer_encoding(+Lines, -Encoding) is semidet.
%
% True if Encoding is the value of the =|Transfer-encoding|=
% header.
transfer_encoding(Lines, Encoding) :-
what_encoding(transfer_encoding, Lines, Encoding).
what_encoding(What, Lines, Encoding) :-
member(Line, Lines),
phrase(encoding_(What, Debug), Line, Rest),
!,
atom_codes(Encoding, Rest),
debug(http(What), '~w: ~p', [Debug, Rest]).
encoding_(content_encoding, 'Content-encoding') -->
field('content-encoding').
encoding_(transfer_encoding, 'Transfer-encoding') -->
field('transfer-encoding').
%! content_encoding(+Lines, -Encoding) is semidet.
%
% True if Encoding is the value of the =|Content-encoding|=
% header.
content_encoding(Lines, Encoding) :-
what_encoding(content_encoding, Lines, Encoding).
%! read_header(+In:stream, +Parts, -Version, -Code:int,
%! -Comment:atom, -Lines:list) is det.
%
% Read the HTTP reply-header. If the reply is completely empty
% an existence error is thrown. If the replied header is
% otherwise invalid a 500 HTTP error is simulated, having the
% comment =|Invalid reply header|=.
%
% @param Parts A list of compound terms that describe the
% parsed request URI.
% @param Version HTTP reply version as Major-Minor pair
% @param Code Numeric HTTP reply-code
% @param Comment Comment of reply-code as atom
% @param Lines Remaining header lines as code-lists.
%
% @error existence_error(http_reply, Uri)
read_header(In, Parts, Major-Minor, Code, Comment, Lines) :-
read_line_to_codes(In, Line),
( Line == end_of_file
-> parts_uri(Parts, Uri),
existence_error(http_reply,Uri)
; true
),
Line \== end_of_file,
phrase(first_line(Major-Minor, Code, Comment), Line),
debug(http(open), 'HTTP/~d.~d ~w ~w', [Major, Minor, Code, Comment]),
read_line_to_codes(In, Line2),
rest_header(Line2, In, Lines),
!,
( debugging(http(open))
-> forall(member(HL, Lines),
debug(http(open), '~s', [HL]))
; true
).
read_header(_, _, 1-1, 500, 'Invalid reply header', []).
rest_header([], _, []) :- !. % blank line: end of header
rest_header(L0, In, [L0|L]) :-
read_line_to_codes(In, L1),
rest_header(L1, In, L).
%! content_length(+Header, -Length:int) is semidet.
%
% Find the Content-Length in an HTTP reply-header.
content_length(Lines, Length) :-
member(Line, Lines),
phrase(content_length(Length0), Line),
!,
Length = Length0.
location(Lines, RequestURI) :-
member(Line, Lines),
phrase(atom_field(location, RequestURI), Line),
!.
connection(Lines, Connection) :-
member(Line, Lines),
phrase(atom_field(connection, Connection0), Line),
!,
Connection = Connection0.
first_line(Major-Minor, Code, Comment) -->
"HTTP/", integer(Major), ".", integer(Minor),
skip_blanks,
integer(Code),
skip_blanks,
rest(Comment).
atom_field(Name, Value) -->
field(Name),
rest(Value).
content_length(Len) -->
field('content-length'),
integer(Len).
field(Name) -->
{ atom_codes(Name, Codes) },
field_codes(Codes).
field_codes([]) -->
":",
skip_blanks.
field_codes([H|T]) -->
[C],
{ match_header_char(H, C)
},
field_codes(T).
match_header_char(C, C) :- !.
match_header_char(C, U) :-
code_type(C, to_lower(U)),
!.
match_header_char(0'_, 0'-).
skip_blanks -->
[C],
{ code_type(C, white)
},
!,
skip_blanks.
skip_blanks -->
[].
%! integer(-Int)//
%
% Read 1 or more digits and return as integer.
integer(Code) -->
digit(D0),
digits(D),
{ number_codes(Code, [D0|D])
}.
digit(C) -->
[C],
{ code_type(C, digit)
}.
digits([D0|D]) -->
digit(D0),
!,
digits(D).
digits([]) -->
[].
%! rest(-Atom:atom)//
%
% Get rest of input as an atom.
rest(Atom) --> call(rest_(Atom)).
rest_(Atom, L, []) :-
atom_codes(Atom, L).
%! reply_header(+Lines, +Options) is det.
%
% Return the entire reply header as a list of strings to te option
% reply_headers(-Headers).
reply_header(Lines, Options) :-
option(raw_headers(Headers), Options),
!,
maplist(string_codes, Headers, Lines).
reply_header(_, _).
/*******************************
* AUTHORIZATION MANAGEMENT *
*******************************/
%! http_set_authorization(+URL, +Authorization) is det.
%
% Set user/password to supply with URLs that have URL as prefix.
% If Authorization is the atom =|-|=, possibly defined
% authorization is cleared. For example:
%
% ```
% ?- http_set_authorization('http://www.example.com/private/',
% basic('John', 'Secret'))
% ```
%
% @tbd Move to a separate module, so http_get/3, etc. can use this
% too.
:- dynamic
stored_authorization/2,
cached_authorization/2.
http_set_authorization(URL, Authorization) :-
must_be(atom, URL),
retractall(stored_authorization(URL, _)),
( Authorization = (-)
-> true
; check_authorization(Authorization),
assert(stored_authorization(URL, Authorization))
),
retractall(cached_authorization(_,_)).
check_authorization(Var) :-
var(Var),
!,
instantiation_error(Var).
check_authorization(basic(User, Password)) :-
must_be(atom, User),
must_be(text, Password).
check_authorization(digest(User, Password)) :-
must_be(atom, User),
must_be(text, Password).
%! authorization(+URL, -Authorization) is semidet.
%
% True if Authorization must be supplied for URL.
%
% @tbd Cleanup cache if it gets too big.
authorization(_, _) :-
\+ stored_authorization(_, _),
!,
fail.
authorization(URL, Authorization) :-
cached_authorization(URL, Authorization),
!,
Authorization \== (-).
authorization(URL, Authorization) :-
( stored_authorization(Prefix, Authorization),
sub_atom(URL, 0, _, _, Prefix)
-> assert(cached_authorization(URL, Authorization))
; assert(cached_authorization(URL, -)),
fail
).
add_authorization(_, Options, Options) :-
option(authorization(_), Options),
!.
add_authorization(Parts, Options0, Options) :-
url_part(user(User), Parts),
url_part(password(Passwd), Parts),
!,
Options = [authorization(basic(User,Passwd))|Options0].
add_authorization(Parts, Options0, Options) :-
stored_authorization(_, _) -> % quick test to avoid work
parts_uri(Parts, URL),
authorization(URL, Auth),
!,
Options = [authorization(Auth)|Options0].
add_authorization(_, Options, Options).
%! parse_url_ex(+URL, -Parts)
%
% Parts: Scheme, Host, Port, User:Password, RequestURI (no
% fragment).
parse_url_ex(URL, [uri(URL)|Parts]) :-
uri_components(URL, Components),
phrase(components(Components), Parts),
( option(host(_), Parts)
-> true
; domain_error(url, URL)
).
components(Components) -->
uri_scheme(Components),
uri_path(Components),
uri_authority(Components),
uri_request_uri(Components).
uri_scheme(Components) -->
{ uri_data(scheme, Components, Scheme), nonvar(Scheme) },
!,
[ scheme(Scheme)
].
uri_scheme(_) --> [].
uri_path(Components) -->
{ uri_data(path, Components, Path0), nonvar(Path0),
( Path0 == ''
-> Path = (/)
; Path = Path0
)
},
!,
[ path(Path)
].
uri_path(_) --> [].
uri_authority(Components) -->
{ uri_data(authority, Components, Auth), nonvar(Auth),
!,
uri_authority_components(Auth, Data)
},
[ authority(Auth) ],
auth_field(user, Data),
auth_field(password, Data),
auth_field(host, Data),
auth_field(port, Data).
uri_authority(_) --> [].
auth_field(Field, Data) -->
{ uri_authority_data(Field, Data, EncValue), nonvar(EncValue),
!,
( atom(EncValue)
-> uri_encoded(query_value, Value, EncValue)
; Value = EncValue
),
Part =.. [Field,Value]
},
[ Part ].
auth_field(_, _) --> [].
uri_request_uri(Components) -->
{ uri_data(path, Components, Path0),
uri_data(search, Components, Search),
( Path0 == ''
-> Path = (/)
; Path = Path0
),
uri_data(path, Components2, Path),
uri_data(search, Components2, Search),
uri_components(RequestURI, Components2)
},
[ request_uri(RequestURI)
].
%! parts_scheme(+Parts, -Scheme) is det.
%! parts_uri(+Parts, -URI) is det.
%! parts_request_uri(+Parts, -RequestURI) is det.
%! parts_search(+Parts, -Search) is det.
%! parts_authority(+Parts, -Authority) is semidet.
parts_scheme(Parts, Scheme) :-
url_part(scheme(Scheme), Parts),
!.
parts_scheme(Parts, Scheme) :- % compatibility with library(url)
url_part(protocol(Scheme), Parts),
!.
parts_scheme(_, http).
parts_authority(Parts, Auth) :-
url_part(authority(Auth), Parts),
!.
parts_authority(Parts, Auth) :-
url_part(host(Host), Parts, _),
url_part(port(Port), Parts, _),
url_part(user(User), Parts, _),
url_part(password(Password), Parts, _),
uri_authority_components(Auth,
uri_authority(User, Password, Host, Port)).
parts_request_uri(Parts, RequestURI) :-
option(request_uri(RequestURI), Parts),
!.
parts_request_uri(Parts, RequestURI) :-
url_part(path(Path), Parts, /),
ignore(parts_search(Parts, Search)),
uri_data(path, Data, Path),
uri_data(search, Data, Search),
uri_components(RequestURI, Data).
parts_search(Parts, Search) :-
option(query_string(Search), Parts),
!.
parts_search(Parts, Search) :-
option(search(Fields), Parts),
!,
uri_query_components(Search, Fields).
parts_uri(Parts, URI) :-
option(uri(URI), Parts),
!.
parts_uri(Parts, URI) :-
parts_scheme(Parts, Scheme),
ignore(parts_authority(Parts, Auth)),
parts_request_uri(Parts, RequestURI),
uri_components(RequestURI, Data),
uri_data(scheme, Data, Scheme),
uri_data(authority, Data, Auth),
uri_components(URI, Data).
parts_port(Parts, Port) :-
parts_scheme(Parts, Scheme),
default_port(Scheme, DefPort),
url_part(port(Port), Parts, DefPort).
url_part(Part, Parts) :-
Part =.. [Name,Value],
Gen =.. [Name,RawValue],
option(Gen, Parts),
!,
Value = RawValue.
url_part(Part, Parts, Default) :-
Part =.. [Name,Value],
Gen =.. [Name,RawValue],
( option(Gen, Parts)
-> Value = RawValue
; Value = Default
).
/*******************************
* COOKIES *
*******************************/
write_cookies(Out, Parts, Options) :-
http:write_cookies(Out, Parts, Options),
!.
write_cookies(_, _, _).
update_cookies(_, _, _) :-
predicate_property(http:update_cookies(_,_,_), number_of_clauses(0)),
!.
update_cookies(Lines, Parts, Options) :-
( member(Line, Lines),
phrase(atom_field('set_cookie', CookieData), Line),
http:update_cookies(CookieData, Parts, Options),
fail
; true
).
/*******************************
* OPEN ANY *
*******************************/
:- multifile iostream:open_hook/6.
%! iostream:open_hook(+Spec, +Mode, -Stream, -Close,
%! +Options0, -Options) is semidet.
%
% Hook implementation that makes open_any/5 support =http= and
% =https= URLs for =|Mode == read|=.
iostream:open_hook(URL, read, Stream, Close, Options0, Options) :-
(atom(URL) -> true ; string(URL)),
uri_is_global(URL),
uri_components(URL, Components),
uri_data(scheme, Components, Scheme),
http_scheme(Scheme),
!,
Options = Options0,
Close = close(Stream),
http_open(URL, Stream, Options0).
http_scheme(http).
http_scheme(https).
/*******************************
* KEEP-ALIVE *
*******************************/
%! consider_keep_alive(+HeaderLines, +Parts, +Host,
%! +Stream0, -Stream,
%! +Options) is det.
consider_keep_alive(Lines, Parts, Host, StreamPair, In, Options) :-
option(connection(Asked), Options),
keep_alive(Asked),
connection(Lines, Given),
keep_alive(Given),
content_length(Lines, Bytes),
!,
stream_pair(StreamPair, In0, _),
connection_address(Host, Parts, HostPort),
debug(http(connection),
'Keep-alive to ~w (~D bytes)', [HostPort, Bytes]),
stream_range_open(In0, In,
[ size(Bytes),
onclose(keep_alive(StreamPair, HostPort))
]).
consider_keep_alive(_, _, _, Stream, Stream, _).
connection_address(Host, _, Host) :-
Host = _:_,
!.
connection_address(Host, Parts, Host:Port) :-
parts_port(Parts, Port).
keep_alive(keep_alive) :- !.
keep_alive(Connection) :-
downcase_atom(Connection, 'keep-alive').
:- public keep_alive/4.
keep_alive(StreamPair, Host, _In, 0) :-
!,
debug(http(connection), 'Adding connection to ~p to pool', [Host]),
add_to_pool(Host, StreamPair).
keep_alive(StreamPair, Host, In, Left) :-
Left < 100,
debug(http(connection), 'Reading ~D left bytes', [Left]),
read_incomplete(In, Left),
add_to_pool(Host, StreamPair),
!.
keep_alive(StreamPair, _, _, _) :-
debug(http(connection),
'Closing connection due to excessive unprocessed input', []),
( debugging(http(connection))
-> catch(close(StreamPair), E,
print_message(warning, E))
; close(StreamPair, [force(true)])
).
%! read_incomplete(+In, +Left) is semidet.
%
% If we have not all input from a Keep-alive connection, read the
% remainder if it is short. Else, we fail and close the stream.
read_incomplete(In, Left) :-
catch(setup_call_cleanup(
open_null_stream(Null),
copy_stream_data(In, Null, Left),
close(Null)),
_,
fail).
:- dynamic
connection_pool/4, % Hash, Address, Stream, Time
connection_gc_time/1.
add_to_pool(Address, StreamPair) :-
keep_connection(Address),
get_time(Now),
term_hash(Address, Hash),
assertz(connection_pool(Hash, Address, StreamPair, Now)).
get_from_pool(Address, StreamPair) :-
term_hash(Address, Hash),
retract(connection_pool(Hash, Address, StreamPair, _)).
%! keep_connection(+Address) is semidet.
%
% Succeeds if we want to keep the connection open. We currently
% keep a maximum of 10 connections waiting and a maximum of 2
% waiting for the same address. Connections older than 2 seconds
% are closed.
keep_connection(Address) :-
close_old_connections(2),
predicate_property(connection_pool(_,_,_,_), number_of_clauses(C)),
C =< 10,
term_hash(Address, Hash),
aggregate_all(count, connection_pool(Hash, Address, _, _), Count),
Count =< 2.
close_old_connections(Timeout) :-
get_time(Now),
Before is Now - Timeout,
( connection_gc_time(GC),
GC > Before
-> true
; ( retractall(connection_gc_time(_)),
asserta(connection_gc_time(Now)),
connection_pool(Hash, Address, StreamPair, Added),
Added < Before,
retract(connection_pool(Hash, Address, StreamPair, Added)),
debug(http(connection),
'Closing inactive keep-alive to ~p', [Address]),
close(StreamPair, [force(true)]),
fail
; true
)
).
%! http_close_keep_alive(+Address) is det.
%
% Close all keep-alive connections matching Address. Address is of
% the form Host:Port. In particular, http_close_keep_alive(_)
% closes all currently known keep-alive connections.
http_close_keep_alive(Address) :-
forall(get_from_pool(Address, StreamPair),
close(StreamPair, [force(true)])).
%! keep_alive_error(+Error)
%
% Deal with an error from reusing a keep-alive connection. If the
% error is due to an I/O error or end-of-file, fail to backtrack
% over get_from_pool/2. Otherwise it is a real error and we thus
% re-raise it.
keep_alive_error(keep_alive(closed)) :-
!,
debug(http(connection), 'Keep-alive connection was closed', []),
fail.
keep_alive_error(io_error(_,_)) :-
!,
debug(http(connection), 'IO error on Keep-alive connection', []),
fail.
keep_alive_error(Error) :-
throw(Error).
/*******************************
* HOOK DOCUMENTATION *
*******************************/
%! http:open_options(+Parts, -Options) is nondet.
%
% This hook is used by the HTTP client library to define default
% options based on the the broken-down request-URL. The following
% example redirects all trafic, except for localhost over a proxy:
%
% ```
% :- multifile
% http:open_options/2.
%
% http:open_options(Parts, Options) :-
% option(host(Host), Parts),
% Host \== localhost,
% Options = [proxy('proxy.local', 3128)].
% ```
%
% This hook may return multiple solutions. The returned options
% are combined using merge_options/3 where earlier solutions
% overrule later solutions.
%! http:write_cookies(+Out, +Parts, +Options) is semidet.
%
% Emit a =|Cookie:|= header for the current connection. Out is an
% open stream to the HTTP server, Parts is the broken-down request
% (see uri_components/2) and Options is the list of options passed
% to http_open. The predicate is called as if using ignore/1.
%
% @see complements http:update_cookies/3.
% @see library(http/http_cookie) implements cookie handling on
% top of these hooks.
%! http:update_cookies(+CookieData, +Parts, +Options) is semidet.
%
% Update the cookie database. CookieData is the value of the
% =|Set-Cookie|= field, Parts is the broken-down request (see
% uri_components/2) and Options is the list of options passed to
% http_open.
%
% @see complements http:write_cookies
% @see library(http/http_cookies) implements cookie handling on
% top of these hooks.
|