-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathDockerRun.hs
267 lines (197 loc) · 8.86 KB
/
DockerRun.hs
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
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
module Glot.DockerRun
( RunRequest(..)
, RunRequestPayload(..)
, RunResult(..)
, Config(..)
, run
, Error(..)
, ErrorBody(..)
, formatError
, debugError
) where
import Import hiding (RunResult)
import qualified Data.List.NonEmpty as NonEmpty
import qualified GHC.Generics as GHC
import qualified Data.Aeson as Aeson
import qualified Network.HTTP.Req as Req
import qualified Glot.Snippet as Snippet
import qualified Control.Exception as Exception
import qualified Data.Bifunctor as Bifunctor
import qualified Network.HTTP.Client as Http
import qualified Network.HTTP.Types.Status as Status
import qualified Text.URI as URI
import qualified Glot.Language as Language
import Data.Function ((&))
data RunRequest = RunRequest
{ image :: Text
, payload :: RunRequestPayload
}
deriving (Show, GHC.Generic)
instance Aeson.ToJSON RunRequest
data RunRequestPayload = RunRequestPayload
{ language :: Language.Id
, files :: NonEmpty.NonEmpty Snippet.FilePayload
, stdin :: Maybe Text
, command :: Maybe Text
}
deriving (Show, GHC.Generic)
instance Aeson.ToJSON RunRequestPayload
data RunResult = RunResult
{ stdout :: Text
, stderr :: Text
, error :: Text
}
deriving (Show, GHC.Generic)
instance Aeson.FromJSON RunResult
instance Aeson.ToJSON RunResult
data Config = Config
{ accessToken :: ByteString
, baseUrl :: Text
, responseTimeout :: Int
}
run :: Config -> RunRequest -> IO (Either Error RunResult)
run Config{..} runRequest =
let
reqConfig =
Req.defaultHttpConfig
{ Req.httpConfigRedirectCount = 0
, Req.httpConfigCheckResponse = \_ _ _ -> Nothing
, Req.httpConfigRetryJudge = \_ _ -> False
, Req.httpConfigRetryJudgeException = \_ _ -> False
}
mkOptions :: Req.Option scheme -> Req.Option scheme
mkOptions urlOptions =
urlOptions
<> Req.header "X-Access-Token" accessToken
<> Req.responseTimeout (responseTimeout * 1000000)
runReq httpOrHttpsUrl = do
res <- Req.runReq reqConfig $ do
case httpOrHttpsUrl of
Left (httpUrl, urlOptions) ->
Req.req Req.POST httpUrl (Req.ReqBodyJson runRequest) Req.bsResponse (mkOptions urlOptions)
Right (httpsUrl, urlOptions) ->
Req.req Req.POST httpsUrl (Req.ReqBodyJson runRequest) Req.bsResponse (mkOptions urlOptions)
pure (handleResponse res)
in do
uri <- URI.mkURI (baseUrl <> "/run")
case Req.useURI uri of
Nothing -> do
pure $ Left ParseUrlError
Just httpOrHttpsUrl -> do
eitherResult <- Exception.try (runReq httpOrHttpsUrl)
case eitherResult of
Left exception ->
pure (Left $ HttpException exception)
Right e ->
pure e
handleResponse :: (Req.HttpResponse response, Req.HttpResponseBody response ~ ByteString) => response -> Either Error RunResult
handleResponse res =
let
body =
Req.responseBody res
in
if isSuccessStatus (Req.responseStatusCode res) then
Aeson.eitherDecodeStrict' body
& Bifunctor.first (DecodeSuccessResponseError body)
else
case Aeson.eitherDecodeStrict' body of
Right apiError ->
Left (ApiError apiError)
Left decodeError ->
Left (DecodeErrorResponseError body decodeError)
isSuccessStatus :: Int -> Bool
isSuccessStatus code =
code >= 200 && code <= 299
data Error
= ParseUrlError
| HttpException Req.HttpException
| DecodeSuccessResponseError ByteString String
| DecodeErrorResponseError ByteString String
| ApiError ErrorBody
debugError :: Error -> String
debugError err =
case err of
ParseUrlError ->
"ParseUrlError"
HttpException exception ->
"HttpException: " <> (show exception)
DecodeSuccessResponseError body reason ->
"DecodeSuccessResponseError: " <> (show reason) <> ", body: " <> (show body)
DecodeErrorResponseError body reason ->
"DecodeErrorResponseError: " <> (show reason) <> ", body: " <> (show body)
ApiError errorBody ->
"ApiError: " <> (show errorBody)
formatError :: Error -> String
formatError err =
case err of
ParseUrlError ->
"Invalid docker-run url"
HttpException exception ->
case exception of
Req.JsonHttpException reason ->
"Failed to decode json response from docker-run: " <> reason
Req.VanillaHttpException httpException ->
case httpException of
InvalidUrlException url reason ->
"Invalid request url: " <> url <> " (" <> reason <> ")"
HttpExceptionRequest _ exceptionContent ->
case exceptionContent of
Http.StatusCodeException response _ ->
"Unexpected status code in response from docker-run: " <> (show $ Status.statusCode $ Http.responseStatus response)
Http.TooManyRedirects _ ->
"Too many redirect"
Http.OverlongHeaders ->
"Header overflow from docker-run"
Http.ResponseTimeout ->
"docker-run took too long to return a response"
Http.ConnectionTimeout ->
"Attempting to connect to docker-run timed out"
Http.ConnectionFailure _ ->
"An exception occurred when trying to connect to docker-run"
Http.InvalidStatusLine _ ->
"The status line returned by docker-run could not be parsed"
Http.InvalidHeader _ ->
"The given response header line from docker-run could not be parsed"
Http.InvalidRequestHeader _ ->
"The given request header is not compliant"
Http.InternalException _ ->
"An exception was raised by an underlying library when performing the request"
Http.ProxyConnectException _ _ _ ->
"A non-200 status code was returned when trying to connect to the proxy server on the given host and port"
Http.NoResponseDataReceived ->
"No response data was received from the docker-run at all"
Http.TlsNotSupported ->
"Tls not supported"
Http.WrongRequestBodyStreamSize _ _ ->
"The request body provided did not match the expected size."
Http.ResponseBodyTooShort _ _ ->
"The returned response body from docker-run is too short"
Http.InvalidChunkHeaders ->
"A chunked response body had invalid headers"
Http.IncompleteHeaders ->
"An incomplete set of response headers were returned from docker-run"
Http.InvalidDestinationHost _ ->
"The host we tried to connect to is invalid"
Http.HttpZlibException _ ->
"An exception was thrown when inflating the response body from docker-run"
Http.InvalidProxyEnvironmentVariable _ _ ->
"Values in the proxy environment variable were invalid"
Http.ConnectionClosed ->
"Attempted to use a Connection which was already closed"
Http.InvalidProxySettings _ ->
"Proxy settings are not valid"
DecodeSuccessResponseError _ decodeError ->
show decodeError
DecodeErrorResponseError _ decodeError ->
show decodeError
ApiError errorBody ->
show errorBody
data ErrorBody = ErrorBody
{ error :: Text
, message :: Text
}
deriving (Show, GHC.Generic)
instance Aeson.ToJSON ErrorBody
instance Aeson.FromJSON ErrorBody