all repos — min @ ed2a48dde0c3b677d0c70cef656eb473b5041856

A small but practical concatenative programming language.

site/contents/reference-http.md

 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
-----
content-type: "page"
title: "http Module"
-----
{@ _defs_.md || 0 @}

{#op||download||{{s1}} {{s2}}||{{null}}||
Downloads the contents of URL {{s1}} to the local file {{s2}}. #}

{#op||get-content||{{s1}}||{{s2}}||
Retrieves the contents of URL {{s1}} as {{s2}}.#}

{#op||request||{{req}}||{{res}}||
> Performs an HTTP request.
> 
> > %sidebar%
> > Example
> > 
> > The following code constructs a {{req}} dictionary and passes it to the **request** operator to perform an HTTP GET request to <http://httpbin.org/ip>:
> > 
> >     {}
> >       "GET" %method)
> >       "http://httpbin.org/ip" %url
> >     request
 #}

{#op||start-server||{{d}}||{{null}}||
> Starts an HTTP server based on the configuration provided in {{d}}.
> 
> {{d}} is a dictionary containing the following keys:
> 
> address
> : The address to bind the server to (default: **127.0.0.1**).
> port
> : The port to bind the server to.
> handler
> : A quotation with the following signature, used to handle all incoming requests: [{{req}} &rArr; {{res}}](class:kwd)
> 
> > %sidebar%
> > Example
> > 
> > The following program starts a very simple HTTP server that can display the current timestamp or date and time in ISO 8601 format:
> > 
> >     ; Define the request handler
> >     (
> >       ; Assume there is a request on the stack, take it off and give it the name req
> >       :req
> >       ; Let's see what we got (print req to standard out)
> >       "THE REQUEST:" puts! req puts!
> >       ; The request is a dictionary, we retrieve the value for the key url, and give it the name url
> >       req /url :url
> >       "THE URL is '$1'." url quote % puts!
> >       ; Constuct response body
> >       (
> >         (("/datetime" url ==) (timestamp datetime))
> >         (("/timestamp" url ==) (timestamp string))
> >         (("/shutdown" url ==) ("Stopping server..." puts! stop-server))
> >         (("/" url ==) (
> >           ; this is a bit short, but works with Chrome, IE, Edge, Safari
> >           "<a href='/datetime'>datetime</a>, <a href='/timestamp'>timestamp</a>, <a href='/shutdown'>stop</a>"
> >         ))
> >         ((true) ("Invalid Request: $1" url quote %))
> >       ) case
> >       :body
> >       ; Prepare the response
> >       {} body %body
> >       dup puts!
> >     )
> >     ; The request handler is ready, give it the name handler
> >     =handler
> >     
> >     ; Create the parameter dictionary for the server
> >     {}
> >     handler %handler
> >     5555 %port
> >     
> >     ; Start server
> >     "Server started on port 5555." puts!
> >     "Press Ctrl+C to stop." puts!
> >     start-server
 #}

{#op||stop-server||{{null}}||{{null}}||
Stops the currently-running HTTP server. This operator should be used within an HTTP server handler quotation.#}