-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.gren
More file actions
261 lines (208 loc) · 7.54 KB
/
Copy pathMain.gren
File metadata and controls
261 lines (208 loc) · 7.54 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
module Main exposing (main)
import Bytes exposing (Bytes)
import Crypto
import Db
import Dict
import Db.Encode
import HttpClient
import HttpServer exposing (Request, ServerError(..), Method(..))
import HttpServer.Response as Response exposing (Response)
import Init
import Node exposing (Environment, Program)
import Postmark
import Registry.Db
import Route.Error
import Route.PublishingIdentity
import Route.Session
import Stream
import Task exposing (Task)
import Test.E2E.Helper as Helper
import User exposing (User)
main : Program Model Msg
main =
Node.defineProgram
{ init = init
, update = update
, subscriptions = subscriptions
}
serverConfig : { host : String, port_ : Int }
serverConfig =
{ host = "0.0.0.0"
, port_ = 3000
}
-- MODEL
type alias Model =
{ stdout : Stream.Writable Bytes
, stderr : Stream.Writable Bytes
, server : Maybe HttpServer.Server
, db : Db.Connection
, postmark : Maybe Postmark.Configuration
, secureContext : Maybe Crypto.SecureContext
}
init : Environment -> Init.Task { model : Model, command : Cmd Msg }
init env =
Init.await HttpServer.initialize <| \serverPermission ->
Init.await HttpClient.initialize <| \httpPerm ->
Init.awaitTask Node.getEnvironmentVariables <| \envVars ->
let
db =
Helper.initDb httpPerm
postmark =
envVars
|> Dict.get "POSTMARK_SERVER_TOKEN"
|> Maybe.map
(\token ->
{ httpPermission = httpPerm
, apiToken = token
}
)
in
Node.startProgram
{ model =
{ stdout = env.stdout
, stderr = env.stderr
, server = Nothing
, db = db
, secureContext = Nothing
, postmark = postmark
}
, command =
Cmd.batch
[ Registry.Db.migrate db
|> Task.attempt DbMigrationResult
, HttpServer.createServer serverPermission serverConfig
|> Task.attempt CreateServerResult
, Crypto.getSecureContext
|> Task.attempt SecureContextResult
]
}
-- UPDATE
type Msg
= CreateServerResult (Result HttpServer.ServerError HttpServer.Server)
| DbMigrationResult (Result Db.Error (Array Int))
| SecureContextResult (Result {} Crypto.SecureContext)
| GotRequest { request : HttpServer.Request, response : Response }
| ResponseReady Response
update : Msg -> Model -> { model : Model, command : Cmd Msg }
update msg model =
when msg is
CreateServerResult result ->
when result is
Ok server ->
{ model = { model | server = Just server }
, command =
"Server started: http://" ++ serverConfig.host ++ ":" ++ String.fromInt serverConfig.port_
|> print model.stdout
|> Task.execute
}
Err (ServerError { code, message }) ->
{ model = model
, command =
"Server failed to start: " ++ code ++ "\n" ++ message
|> print model.stderr
|> Task.execute
}
DbMigrationResult result ->
when result is
Ok numChanges ->
{ model = model
, command = Cmd.none
}
Err error ->
{ model = model
, command =
-- TODO: real error message
"Db failed to migrate: " ++ Debug.toString error
|> print model.stderr
|> Task.map (\_ -> Node.exitWithCode 1)
|> Task.executeCmd
}
SecureContextResult result ->
when result is
Ok secureContext ->
{ model = { model | secureContext = Just secureContext }
, command = Cmd.none
}
Err _ ->
{ model = model
, command =
"Failed to get secure context"
|> print model.stderr
|> Task.map (\_ -> Node.exitWithCode 1)
|> Task.executeCmd
}
GotRequest { request, response } ->
{ model = model
, command =
route model request response
|> Task.perform ResponseReady
}
ResponseReady response ->
{ model = model
, command =
Response.send response
}
route : Model -> Request -> Response -> Task Never Response
route model request response =
let
path : Array String
path =
request.url.path
|> String.split "/"
|> Array.keepIf (\s -> s /= "")
config :
{ secureContext : Maybe Crypto.SecureContext
, postmark : Maybe Postmark.Configuration
}
config =
{ secureContext = model.secureContext
, postmark = model.postmark
}
in
when config is
-- CHECK SERVER PRE-REQS
{ secureContext = Nothing } ->
Route.Error.serverError response "Missing secure context."
{ postmark = Nothing } ->
Route.Error.serverError response "Missing postmark config."
{ postmark = Just postmark, secureContext = Just secureContext } ->
when { method = request.method, path = path } is
-- SESSION ROUTES
{ method = POST, path = [ "session" ] } ->
Route.Session.create
{ db = model.db
, postmark = postmark
, secureContext = secureContext
, body = request.body
, response = response
}
{ method = POST, path = [ "session", "fetch" ] } ->
Route.Session.fetch
{ db = model.db
, secureContext = secureContext
, body = request.body
, response = response
}
-- PUBLISHING IDENTITY ROUTES
{ method = POST, path = [ "publishing-identity" ] } ->
Route.PublishingIdentity.create
{ db = model.db
, body = request.body
, response = response
}
_ ->
Route.Error.notFound response
print : Stream.Writable Bytes -> String -> Task Never {}
print stream string =
Stream.writeLineAsBytes string stream
|> Task.map (\_ -> {})
|> Task.onError (\_ -> Task.succeed {})
-- SUBSCRIPTION
subscriptions : Model -> Sub Msg
subscriptions model =
when model.server is
Just server ->
HttpServer.onRequest server <| \req res ->
GotRequest { request = req, response = res }
Nothing ->
Sub.none