New combinators for incremental HTTP requests
parent
c3f9d2180a
commit
1cf1d967ea
|
@ -39,11 +39,21 @@ HELP: http-post
|
||||||
{ $description "Submits a form at a URL." }
|
{ $description "Submits a form at a URL." }
|
||||||
{ $errors "Throws an error if the HTTP request fails." } ;
|
{ $errors "Throws an error if the HTTP request fails." } ;
|
||||||
|
|
||||||
|
HELP: with-http-get
|
||||||
|
{ $values { "url" "a " { $link url } " or " { $link string } } { "quot" "a quotation with stack effect " { $snippet "( chunk -- )" } } { "response" response } }
|
||||||
|
{ $description "Downloads the contents of a URL. Chunks of data are passed to the quotation as they are read." }
|
||||||
|
{ $errors "Throws an error if the HTTP request fails." } ;
|
||||||
|
|
||||||
HELP: http-request
|
HELP: http-request
|
||||||
{ $values { "request" request } { "response" response } { "data" sequence } }
|
{ $values { "request" request } { "response" response } { "data" sequence } }
|
||||||
{ $description "Sends an HTTP request to an HTTP server, and reads the response." }
|
{ $description "Sends an HTTP request to an HTTP server, and reads the response." }
|
||||||
{ $errors "Throws an error if the HTTP request fails." } ;
|
{ $errors "Throws an error if the HTTP request fails." } ;
|
||||||
|
|
||||||
|
HELP: with-http-request
|
||||||
|
{ $values { "request" request } { "quot" "a quotation with stack effect " { $snippet "( chunk -- )" } } { "response" response } }
|
||||||
|
{ $description "Sends an HTTP request to an HTTP server, and reads the response incrementally. Chunks of data are passed to the quotation as they are read." }
|
||||||
|
{ $errors "Throws an error if the HTTP request fails." } ;
|
||||||
|
|
||||||
ARTICLE: "http.client.get" "GET requests with the HTTP client"
|
ARTICLE: "http.client.get" "GET requests with the HTTP client"
|
||||||
"Basic usage involves passing a " { $link url } " and getting a " { $link response } " and data back:"
|
"Basic usage involves passing a " { $link url } " and getting a " { $link response } " and data back:"
|
||||||
{ $subsection http-get }
|
{ $subsection http-get }
|
||||||
|
@ -52,7 +62,10 @@ ARTICLE: "http.client.get" "GET requests with the HTTP client"
|
||||||
{ $subsection download-to }
|
{ $subsection download-to }
|
||||||
"Advanced usage involves constructing a " { $link request } ", which allows " { $link "http.cookies" } " and " { $link "http.headers" } " to be set:"
|
"Advanced usage involves constructing a " { $link request } ", which allows " { $link "http.cookies" } " and " { $link "http.headers" } " to be set:"
|
||||||
{ $subsection <get-request> }
|
{ $subsection <get-request> }
|
||||||
{ $subsection http-request } ;
|
{ $subsection http-request }
|
||||||
|
"The " { $link http-get } " and " { $link http-request } " words output sequences. This is undesirable if the response data may be large. Another pair of words take a quotation instead, and pass the quotation chunks of data incrementally:"
|
||||||
|
{ $subsection with-http-get }
|
||||||
|
{ $subsection with-http-request } ;
|
||||||
|
|
||||||
ARTICLE: "http.client.post" "POST requests with the HTTP client"
|
ARTICLE: "http.client.post" "POST requests with the HTTP client"
|
||||||
"As with GET requests, there is a high-level word which takes a " { $link url } " and a lower-level word which constructs an HTTP request object which can be passed to " { $link http-request } ":"
|
"As with GET requests, there is a high-level word which takes a " { $link url } " and a lower-level word which constructs an HTTP request object which can be passed to " { $link http-request } ":"
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
USING: http.client http.client.private http tools.test
|
USING: http.client http.client.private http tools.test
|
||||||
namespaces urls ;
|
namespaces urls ;
|
||||||
|
|
||||||
|
\ download must-infer
|
||||||
|
|
||||||
[ "localhost" f ] [ "localhost" parse-host ] unit-test
|
[ "localhost" f ] [ "localhost" parse-host ] unit-test
|
||||||
[ "localhost" 8888 ] [ "localhost:8888" parse-host ] unit-test
|
[ "localhost" 8888 ] [ "localhost:8888" parse-host ] unit-test
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
USING: accessors assocs kernel math math.parser namespaces make
|
USING: accessors assocs kernel math math.parser namespaces make
|
||||||
sequences io io.sockets io.streams.string io.files io.timeouts
|
sequences io io.sockets io.streams.string io.files io.timeouts
|
||||||
strings splitting calendar continuations accessors vectors
|
strings splitting calendar continuations accessors vectors
|
||||||
math.order hashtables byte-arrays prettyprint
|
math.order hashtables byte-arrays prettyprint destructors
|
||||||
io.encodings
|
io.encodings
|
||||||
io.encodings.string
|
io.encodings.string
|
||||||
io.encodings.ascii
|
io.encodings.ascii
|
||||||
|
@ -88,72 +88,92 @@ M: too-many-redirects summary
|
||||||
drop
|
drop
|
||||||
[ "Redirection limit of " % max-redirects # " exceeded" % ] "" make ;
|
[ "Redirection limit of " % max-redirects # " exceeded" % ] "" make ;
|
||||||
|
|
||||||
DEFER: (http-request)
|
|
||||||
|
|
||||||
<PRIVATE
|
<PRIVATE
|
||||||
|
|
||||||
|
DEFER: (with-http-request)
|
||||||
|
|
||||||
SYMBOL: redirects
|
SYMBOL: redirects
|
||||||
|
|
||||||
: redirect-url ( request url -- request )
|
: redirect-url ( request url -- request )
|
||||||
'[ _ >url derive-url ensure-port ] change-url ;
|
'[ _ >url derive-url ensure-port ] change-url ;
|
||||||
|
|
||||||
: do-redirect ( response data -- response data )
|
: redirect? ( response -- ? )
|
||||||
over code>> 300 399 between? [
|
code>> 300 399 between? ;
|
||||||
drop
|
|
||||||
|
: do-redirect ( quot: ( chunk -- ) response -- response )
|
||||||
redirects inc
|
redirects inc
|
||||||
redirects get max-redirects < [
|
redirects get max-redirects < [
|
||||||
request get
|
request get clone
|
||||||
swap "location" header redirect-url
|
swap "location" header redirect-url
|
||||||
"GET" >>method (http-request)
|
"GET" >>method swap (with-http-request)
|
||||||
] [
|
] [ too-many-redirects ] if ; inline recursive
|
||||||
too-many-redirects
|
|
||||||
] if
|
|
||||||
] when ;
|
|
||||||
|
|
||||||
PRIVATE>
|
|
||||||
|
|
||||||
: read-chunk-size ( -- n )
|
: read-chunk-size ( -- n )
|
||||||
read-crlf ";" split1 drop [ blank? ] trim-right
|
read-crlf ";" split1 drop [ blank? ] trim-right
|
||||||
hex> [ "Bad chunk size" throw ] unless* ;
|
hex> [ "Bad chunk size" throw ] unless* ;
|
||||||
|
|
||||||
: read-chunks ( -- )
|
: read-chunked ( quot: ( chunk -- ) -- )
|
||||||
read-chunk-size dup zero?
|
read-chunk-size dup zero?
|
||||||
[ drop ] [ read % read-crlf B{ } assert= read-chunks ] if ;
|
[ 2drop ] [
|
||||||
|
read [ swap call ] [ drop ] 2bi
|
||||||
|
read-crlf B{ } assert= read-chunked
|
||||||
|
] if ; inline recursive
|
||||||
|
|
||||||
: read-response-body ( response -- response data )
|
: read-unchunked ( quot: ( chunk -- ) -- )
|
||||||
dup "transfer-encoding" header "chunked" = [
|
8192 read dup [
|
||||||
|
[ swap call ] [ drop read-unchunked ] 2bi
|
||||||
|
] [ 2drop ] if ; inline recursive
|
||||||
|
|
||||||
|
: read-response-body ( quot response -- )
|
||||||
binary decode-input
|
binary decode-input
|
||||||
[ read-chunks ] B{ } make
|
"transfer-encoding" header "chunked" =
|
||||||
over content-charset>> decode
|
[ read-chunked ] [ read-unchunked ] if ; inline
|
||||||
] [
|
|
||||||
dup content-charset>> decode-input
|
|
||||||
input-stream get contents
|
|
||||||
] if ;
|
|
||||||
|
|
||||||
: (http-request) ( request -- response data )
|
: <request-socket> ( -- stream )
|
||||||
dup request [
|
request get url>> url-addr ascii <client> drop
|
||||||
dup url>> url-addr ascii [
|
1 minutes over set-timeout ;
|
||||||
1 minutes timeouts
|
|
||||||
write-request
|
: (with-http-request) ( request quot: ( chunk -- ) -- response )
|
||||||
read-response
|
swap
|
||||||
read-response-body
|
request [
|
||||||
] with-client
|
<request-socket> [
|
||||||
do-redirect
|
[
|
||||||
] with-variable ;
|
out>>
|
||||||
|
[ request get write-request ]
|
||||||
|
with-output-stream*
|
||||||
|
] [
|
||||||
|
in>> [
|
||||||
|
read-response dup redirect? [ t ] [
|
||||||
|
[ nip response set ]
|
||||||
|
[ read-response-body ]
|
||||||
|
[ ]
|
||||||
|
2tri f
|
||||||
|
] if
|
||||||
|
] with-input-stream*
|
||||||
|
] bi
|
||||||
|
] with-disposal
|
||||||
|
[ do-redirect ] [ nip ] if
|
||||||
|
] with-variable ; inline recursive
|
||||||
|
|
||||||
|
PRIVATE>
|
||||||
|
|
||||||
: success? ( code -- ? ) 200 = ;
|
: success? ( code -- ? ) 200 = ;
|
||||||
|
|
||||||
ERROR: download-failed response body ;
|
ERROR: download-failed response ;
|
||||||
|
|
||||||
M: download-failed error.
|
M: download-failed error.
|
||||||
"HTTP download failed:" print nl
|
"HTTP request failed:" print nl
|
||||||
[ response>> . nl ] [ body>> write ] bi ;
|
response>> . ;
|
||||||
|
|
||||||
: check-response ( response data -- response data )
|
: check-response ( response -- response )
|
||||||
over code>> success? [ download-failed ] unless ;
|
dup code>> success? [ download-failed ] unless ;
|
||||||
|
|
||||||
|
: with-http-request ( request quot -- response )
|
||||||
|
(with-http-request) check-response ; inline
|
||||||
|
|
||||||
: http-request ( request -- response data )
|
: http-request ( request -- response data )
|
||||||
(http-request) check-response ;
|
[ [ % ] with-http-request ] B{ } make
|
||||||
|
over content-charset>> decode ;
|
||||||
|
|
||||||
: <get-request> ( url -- request )
|
: <get-request> ( url -- request )
|
||||||
<request>
|
<request>
|
||||||
|
@ -163,14 +183,14 @@ M: download-failed error.
|
||||||
: http-get ( url -- response data )
|
: http-get ( url -- response data )
|
||||||
<get-request> http-request ;
|
<get-request> http-request ;
|
||||||
|
|
||||||
|
: with-http-get ( url quot -- response )
|
||||||
|
[ <get-request> ] dip with-http-request ; inline
|
||||||
|
|
||||||
: download-name ( url -- name )
|
: download-name ( url -- name )
|
||||||
present file-name "?" split1 drop "/" ?tail drop ;
|
present file-name "?" split1 drop "/" ?tail drop ;
|
||||||
|
|
||||||
: download-to ( url file -- )
|
: download-to ( url file -- )
|
||||||
#! Downloads the contents of a URL to a file.
|
binary [ [ write ] with-http-get drop ] with-file-writer ;
|
||||||
swap http-get
|
|
||||||
[ content-charset>> ] [ '[ _ write ] ] bi*
|
|
||||||
with-file-writer ;
|
|
||||||
|
|
||||||
: download ( url -- )
|
: download ( url -- )
|
||||||
dup download-name download-to ;
|
dup download-name download-to ;
|
||||||
|
|
Loading…
Reference in New Issue