-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHttpServer.gren
More file actions
377 lines (279 loc) · 7.66 KB
/
HttpServer.gren
File metadata and controls
377 lines (279 loc) · 7.66 KB
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
effect module HttpServer where { subscription = HttpSub } exposing
-- Init
( Permission
, initialize
-- Server
, Server
, ServerError(..)
, createServer
-- Requests
, Request
, Method(..)
, methodToString
, bodyAsString
, bodyFromJson
, requestInfo
, onRequest
)
{-| Create a server that can respond to HTTP requests.
You write your server using The Elm Architecture by subscribing to request
events and responding with commands in update.
See the [example project](https://github.com/gren-lang/example-projects/blob/main/http-server/src/Main.gren) for what this looks like.
Or the [integration tests](https://github.com/gren-lang/integration-tests/blob/main/http-server/src/Main.gren) for a more robust example with routing and multiple response types.
## Initialization
@docs Permission, Server, ServerError, initialize, createServer
## Requests
@docs Request, Method, methodToString, bodyAsString, bodyFromJson, requestInfo
## Responding to requests
@docs onRequest
See [HttpServer.Response](HttpServer.Response) for more details on responding to requests.
-}
import Bytes exposing (Bytes)
import Bytes.Decode as Decode
import Dict exposing (Dict)
import Init
import Internal.Init
import Json.Encode
import Json.Decode
import Node
import Task exposing (Task)
import Gren.Kernel.HttpServer
import HttpServer.Response exposing (Response(..))
import Url exposing (Url, Protocol(..))
-- INITIALIZATION
{-| The permission to start a [`Server`](HttpServer.Server).
You get this from [`initialize`](HttpServer.initialize).
-}
type Permission
= Permission
{-| The HTTP server.
-}
type Server
-- Note: Actual implementation in Kernel code
= Server
{-| Error code and message from node.
Most likely from a failed attempt to start the server (e.g. `EADDRINUSE`).
Refer to the [node docs](https://nodejs.org/docs/latest-v18.x/api/errors.html) for details.
-}
type ServerError =
ServerError { code : String, message : String }
{-| Initialize the [`HttpServer`](HttpServer) module and get permission to create a server.
-}
initialize : Init.Task Permission
initialize =
Task.succeed Permission
|> Internal.Init.Task
{-| Task to initialize a [`Server`](HttpServer#Server).
-}
createServer : Permission -> { host : String, port_ : Int } -> Task ServerError Server
createServer _ options =
Gren.Kernel.HttpServer.createServer options.host options.port_
-- REQUESTS
{-| An incoming HTTP reqest.
-}
type alias Request =
{ headers : Dict String String
, method : Method
, body : Bytes
, url : Url
}
{-| HTTP request methods.
-}
type Method
= GET
| HEAD
| POST
| PUT
| DELETE
| CONNECT
| TRACE
| PATCH
| UNKNOWN String
{-| String representation of method
-}
methodToString : Method -> String
methodToString method =
when method is
GET ->
"GET"
HEAD ->
"HEAD"
POST ->
"POST"
PUT ->
"PUT"
DELETE ->
"DELETE"
CONNECT ->
"CONNECT"
TRACE ->
"TRACE"
PATCH ->
"PATCH"
UNKNOWN value ->
value
{-| Turn the pieces of a request into a [`Request`](HttpServer.Request) record.
This is only used internally.
-}
toRequest :
{ url : String
, headers : Array String
, method : String
, body : Bytes
}
-> Request
toRequest
{ url
, headers
, method
, body
} =
{ method = toMethod method
, body = body
, url =
Url.fromString url
|> Maybe.withDefault
{ protocol = Http
, port_ = Nothing
, host = ""
, path = ""
, query = Nothing
, fragment = Nothing
}
, headers =
headers
|> arrayPairs
|> dictFromPairs
}
{-| Get request body as a string.
-}
bodyAsString : Request -> Maybe String
bodyAsString req =
Bytes.toString req.body
{-| Get request body as json.
-}
bodyFromJson : Json.Decode.Decoder a -> Request -> Result Json.Decode.Error a
bodyFromJson decoder req =
req
|> bodyAsString
|> Maybe.withDefault "" -- or better if result holds a maybe?
|> Json.Decode.decodeString decoder
{-| Get a string representation of the request.
Good for logging.
-}
requestInfo : Request -> String
requestInfo req =
let
method
= when req.method is
GET ->
"GET"
HEAD ->
"HEAD"
POST ->
"POST"
PUT ->
"PUT"
DELETE ->
"DELETE"
CONNECT ->
"CONNECT"
TRACE ->
"TRACE"
PATCH ->
"PATCH"
UNKNOWN m ->
"UNKNOWN(" ++ m ++ ")"
in
method ++ " " ++ (Url.toString req.url)
toMethod : String -> Method
toMethod s =
when s is
"GET" ->
GET
"HEAD" ->
HEAD
"POST" ->
POST
"PUT" ->
PUT
"DELETE" ->
DELETE
"CONNECT" ->
CONNECT
"TRACE" ->
TRACE
"PATCH" ->
PATCH
_ ->
UNKNOWN s
arrayPairs : Array String -> Array (Array String)
arrayPairs a =
let
pair =
Array.takeFirst 2 a
rest =
Array.dropFirst 2 a
allPairs =
[ pair ] ++ when rest is
[] ->
[]
_ ->
arrayPairs rest
in
allPairs
dictFromPairs : Array (Array String) -> Dict String String
dictFromPairs pairs =
let
mapper p dict =
when p is
[a, b] ->
Dict.set a b dict
_ ->
dict
in
Array.foldl mapper Dict.empty pairs
-- EFFECT STUFF
type HttpSub msg
= OnRequestSub { server : Server, requestHandler : (Request -> Response -> msg) }
subMap : (a -> b) -> HttpSub a -> HttpSub b
subMap f sub =
when sub is
OnRequestSub { server, requestHandler } ->
OnRequestSub { server = server, requestHandler = (\req res -> f (requestHandler req res)) }
type alias State msg =
Array (HttpSub msg)
init : Task Never (State msg)
init =
Task.succeed []
onEffects
: Platform.Router msg SelfMsg
-> Array (HttpSub msg)
-> State msg
-> Task Never (State msg)
onEffects router subs state =
let
_removeListeners =
state
|> Array.map
(\(OnRequestSub { server }) ->
Gren.Kernel.HttpServer.removeAllListeners server
)
_addListeners =
subs
|> Array.map
(\(OnRequestSub { server, requestHandler }) ->
Gren.Kernel.HttpServer.addListener server router requestHandler
)
in
Task.succeed subs
type SelfMsg =
Never
onSelfMsg : Platform.Router msg SelfMsg -> SelfMsg -> (State msg) -> Task Never (State msg)
onSelfMsg _ _ state =
Task.succeed state
{-| Subscribe to incoming HTTP requests.
-}
onRequest : Server -> (Request -> Response -> msg) -> Sub msg
onRequest server requestHandler =
subscription (OnRequestSub { server = server, requestHandler = requestHandler })