]> gitweb @ CieloNegro.org - Lucu.git/blob - Network/HTTP/Lucu/Resource.hs
Many changes
[Lucu.git] / Network / HTTP / Lucu / Resource.hs
1 {-# LANGUAGE
2     BangPatterns
3   , GeneralizedNewtypeDeriving
4   , DoAndIfThenElse
5   , OverloadedStrings
6   , RecordWildCards
7   , UnicodeSyntax
8   #-}
9 {-# OPTIONS_HADDOCK prune #-}
10
11 -- |This is the Resource Monad; monadic actions to define the behavior
12 -- of each resources. The 'Resource' Monad is a kind of 'Prelude.IO'
13 -- Monad thus it implements 'Control.Monad.Trans.MonadIO' class. It is
14 -- also a state machine.
15 -- 
16 -- Request Processing Flow:
17 --
18 --   1. A client issues an HTTP request.
19 --
20 --   2. If the URI of it matches to any resource, the corresponding
21 --      'Resource' Monad starts running on a newly spawned thread.
22 --
23 --   3. The 'Resource' Monad looks at the request header, find (or not
24 --      find) an entity, receive the request body (if any), decide the
25 --      response header, and decide the response body. This process
26 --      will be discussed later.
27 --
28 --   4. The 'Resource' Monad and its thread stops running. The client
29 --      may or may not be sending us the next request at this point.
30 --
31 -- 'Resource' Monad takes the following states. The initial state is
32 -- /Examining Request/ and the final state is /Done/.
33 --
34 --   [/Examining Request/] In this state, a 'Resource' looks at the
35 --   request header and thinks about an entity for it. If there is a
36 --   suitable entity, the 'Resource' tells the system an entity tag
37 --   and its last modification time ('foundEntity'). If it found no
38 --   entity, it tells the system so ('foundNoEntity'). In case it is
39 --   impossible to decide the existence of entity, which is a typical
40 --   case for POST requests, 'Resource' does nothing in this state.
41 --
42 --   [/Getting Body/] A 'Resource' asks the system to receive a
43 --   request body from client. Before actually reading from the
44 --   socket, the system sends \"100 Continue\" to the client if need
45 --   be. When a 'Resource' transits to the next state without
46 --   receiving all or part of request body, the system still reads it
47 --   and just throws it away.
48 --
49 --   [/Deciding Header/] A 'Resource' makes a decision of status code
50 --   and response header. When it transits to the next state, the
51 --   system checks the validness of response header and then write
52 --   them to the socket.
53 --
54 --   [/Deciding Body/] In this state, a 'Resource' asks the system to
55 --   write some response body to the socket. When it transits to the
56 --   next state without writing any response body, the system
57 --   completes it depending on the status code.
58 --
59 --   [/Done/] Everything is over. A 'Resource' can do nothing for the
60 --   HTTP interaction anymore.
61 --
62 -- Note that the state transition is one-way: for instance, it is an
63 -- error to try to read a request body after writing some
64 -- response. This limitation is for efficiency. We don't want to read
65 -- the entire request before starting 'Resource', nor we don't want to
66 -- postpone writing the entire response till the end of 'Resource'
67 -- computation.
68
69 module Network.HTTP.Lucu.Resource
70     (
71     -- * Types
72       Resource
73     , FormData(..)
74     , runRes -- private
75
76     -- * Actions
77
78     -- ** Getting request header
79
80     -- |These actions can be computed regardless of the current state,
81     -- and they don't change the state.
82     , getConfig
83     , getRemoteAddr
84     , getRemoteAddr'
85     , getRemoteHost
86     , getRemoteCertificate
87     , getRequest
88     , getMethod
89     , getRequestURI
90     , getRequestVersion
91     , getResourcePath
92     , getPathInfo
93     , getQueryForm
94     , getHeader
95     , getAccept
96     , getAcceptEncoding
97     , isEncodingAcceptable
98     , getContentType
99     , getAuthorization
100
101     -- ** Finding an entity
102
103     -- |These actions can be computed only in the /Examining Request/
104     -- state. After the computation, the 'Resource' transits to
105     -- /Getting Body/ state.
106     , foundEntity
107     , foundETag
108     , foundTimeStamp
109     , foundNoEntity
110
111     -- ** Getting a request body
112
113     -- |Computation of these actions changes the state to /Getting
114     -- Body/.
115     , input
116     , inputChunk
117     , inputForm
118     , defaultLimit
119
120     -- ** Setting response headers
121     
122     -- |Computation of these actions changes the state to /Deciding
123     -- Header/.
124     , setStatus
125     , setHeader
126     , redirect
127     , setContentType
128     , setLocation
129     , setContentEncoding
130     , setWWWAuthenticate
131
132     -- ** Writing a response body
133
134     -- |Computation of these actions changes the state to /Deciding
135     -- Body/.
136     , output
137     , outputChunk
138
139     , driftTo -- private
140     )
141     where
142 import Blaze.ByteString.Builder (Builder)
143 import qualified Blaze.ByteString.Builder.ByteString as BB
144 import Control.Applicative
145 import Control.Concurrent.STM
146 import Control.Monad.Reader
147 import Control.Monad.Unicode
148 import Data.Ascii (Ascii, CIAscii)
149 import qualified Data.Ascii as A
150 import qualified Data.Attoparsec.Char8 as P
151 import qualified Data.Attoparsec.Lazy  as LP
152 import Data.ByteString (ByteString)
153 import qualified Data.ByteString as Strict
154 import qualified Data.ByteString.Lazy as Lazy
155 import Data.Foldable (toList)
156 import Data.List
157 import qualified Data.Map as M
158 import Data.Maybe
159 import Data.Monoid
160 import Data.Monoid.Unicode
161 import Data.Sequence (Seq)
162 import Data.Text (Text)
163 import qualified Data.Text as T
164 import qualified Data.Text.Encoding as T
165 import Data.Time
166 import qualified Data.Time.HTTP as HTTP
167 import Network.HTTP.Lucu.Abortion
168 import Network.HTTP.Lucu.Authorization
169 import Network.HTTP.Lucu.Config
170 import Network.HTTP.Lucu.ContentCoding
171 import Network.HTTP.Lucu.DefaultPage
172 import Network.HTTP.Lucu.ETag
173 import qualified Network.HTTP.Lucu.Headers as H
174 import Network.HTTP.Lucu.HttpVersion
175 import Network.HTTP.Lucu.Interaction
176 import Network.HTTP.Lucu.MultipartForm
177 import Network.HTTP.Lucu.Postprocess
178 import Network.HTTP.Lucu.Request
179 import Network.HTTP.Lucu.Response
180 import Network.HTTP.Lucu.MIMEType
181 import Network.HTTP.Lucu.Utils
182 import Network.Socket hiding (accept)
183 import Network.URI hiding (path)
184 import OpenSSL.X509
185 import Prelude.Unicode
186
187 -- |The 'Resource' monad. This monad implements 'MonadIO' so it can do
188 -- any 'IO' actions.
189 newtype Resource a
190     = Resource {
191         unRes ∷ ReaderT Interaction IO a
192       }
193     deriving (Applicative, Functor, Monad, MonadIO)
194
195 runRes ∷ Resource a → Interaction → IO a
196 runRes r itr
197     = runReaderT (unRes r) itr
198
199 getInteraction ∷ Resource Interaction
200 getInteraction = Resource ask
201
202 -- |Get the 'Config' value which is used for the httpd.
203 getConfig ∷ Resource Config
204 getConfig = itrConfig <$> getInteraction
205
206 -- |Get the 'SockAddr' of the remote host. If you want a string
207 -- representation instead of 'SockAddr', use 'getRemoteAddr''.
208 getRemoteAddr ∷ Resource SockAddr
209 getRemoteAddr = itrRemoteAddr <$> getInteraction
210
211 -- |Get the string representation of the address of remote host. If
212 -- you want a 'SockAddr' instead of 'String', use 'getRemoteAddr'.
213 getRemoteAddr' ∷ Resource HostName
214 getRemoteAddr'
215     = do sa          ← getRemoteAddr
216          (Just a, _) ← liftIO $ getNameInfo [NI_NUMERICHOST] False False sa
217          return a
218
219 -- |Resolve an address to the remote host.
220 getRemoteHost ∷ Resource (Maybe HostName)
221 getRemoteHost
222     = do sa ← getRemoteAddr
223          fst <$> (liftIO $ getNameInfo [] True False sa)
224
225 -- | Return the X.509 certificate of the client, or 'Nothing' if:
226 --
227 --   * This request didn't came through an SSL stream.
228 --
229 --   * The client didn't send us its certificate.
230 --
231 --   * The 'OpenSSL.Session.VerificationMode' of
232 --   'OpenSSL.Session.SSLContext' in 'SSLConfig' has not been set to
233 --   'OpenSSL.Session.VerifyPeer'.
234 getRemoteCertificate ∷ Resource (Maybe X509)
235 getRemoteCertificate = itrRemoteCert <$> getInteraction
236
237 -- |Get the 'Request' value which represents the request header. In
238 -- general you don't have to use this action.
239 getRequest ∷ Resource Request
240 getRequest
241     = do itr ← getInteraction
242          liftIO $ atomically $ readItr itrRequest fromJust itr
243
244 -- |Get the 'Method' value of the request.
245 getMethod ∷ Resource Method
246 getMethod = reqMethod <$> getRequest
247
248 -- |Get the URI of the request.
249 getRequestURI ∷ Resource URI
250 getRequestURI = reqURI <$> getRequest
251
252 -- |Get the HTTP version of the request.
253 getRequestVersion ∷ Resource HttpVersion
254 getRequestVersion = reqVersion <$> getRequest
255
256 -- |Get the path of this 'Resource' (to be exact,
257 -- 'Network.HTTP.Lucu.Resource.Tree.ResourceDef') in the
258 -- 'Network.HTTP.Lucu.Resource.Tree.ResTree'. The result of this
259 -- action is the exact path in the tree even if the
260 -- 'Network.HTTP.Lucu.Resource.Tree.ResourceDef' is greedy.
261 --
262 -- Example:
263 --
264 -- > main = let tree = mkResTree [ (["foo"], resFoo) ]
265 -- >        in runHttpd defaultConfig tree
266 -- >
267 -- > resFoo = ResourceDef {
268 -- >     resIsGreedy = True
269 -- >   , resGet = Just $ do requestURI   ← getRequestURI
270 -- >                        resourcePath ← getResourcePath
271 -- >                        pathInfo     ← getPathInfo
272 -- >                        -- uriPath requestURI == "/foo/bar/baz"
273 -- >                        -- resourcePath       == ["foo"]
274 -- >                        -- pathInfo           == ["bar", "baz"]
275 -- >                        ...
276 -- >   , ...
277 -- >   }
278 getResourcePath ∷ Resource [Text]
279 getResourcePath = (fromJust ∘ itrResourcePath) <$> getInteraction
280
281 -- |This is an analogy of CGI PATH_INFO. The result is
282 -- URI-unescaped. It is always @[]@ if the
283 -- 'Network.HTTP.Lucu.Resource.Tree.ResourceDef' is not greedy. See
284 -- 'getResourcePath'.
285 --
286 -- Note that the returned path is URI-decoded and then UTF-8 decoded.
287 getPathInfo ∷ Resource [Text]
288 getPathInfo = do rsrcPath ← getResourcePath
289                  reqPath  ← splitPathInfo <$> getRequestURI
290                  -- rsrcPath と reqPath の共通する先頭部分を reqPath か
291                  -- ら全部取り除くと、それは PATH_INFO のやうなものにな
292                  -- る。rsrcPath は全部一致してゐるに決まってゐる(でな
293                  -- ければこの Resource が撰ばれた筈が無い)ので、
294                  -- rsrcPath の長さの分だけ削除すれば良い。
295                  return $ drop (length rsrcPath) reqPath
296
297 -- |Assume the query part of request URI as
298 -- application\/x-www-form-urlencoded, and parse it to pairs of
299 -- @(name, formData)@. This action doesn't parse the request body. See
300 -- 'inputForm'. Field names are decoded in UTF-8.
301 getQueryForm ∷ Resource [(Text, FormData)]
302 getQueryForm = parse' <$> getRequestURI
303     where
304       parse' = map toPairWithFormData ∘
305                parseWWWFormURLEncoded ∘
306                fromJust ∘
307                A.fromChars ∘
308                drop 1 ∘
309                uriQuery
310
311 toPairWithFormData ∷ (ByteString, ByteString) → (Text, FormData)
312 toPairWithFormData (name, value)
313     = let fd = FormData {
314                  fdFileName = Nothing
315                , fdContent  = Lazy.fromChunks [value]
316                }
317       in (T.decodeUtf8 name, fd)
318
319 -- |Get a value of given request header. Comparison of header name is
320 -- case-insensitive. Note that this action is not intended to be used
321 -- so frequently: there should be actions like 'getContentType' for
322 -- every common headers.
323 getHeader ∷ CIAscii → Resource (Maybe Ascii)
324 getHeader name
325     = H.getHeader name <$> getRequest
326
327 -- |Get a list of 'MIMEType' enumerated on header \"Accept\".
328 getAccept ∷ Resource [MIMEType]
329 getAccept
330     = do acceptM ← getHeader "Accept"
331          case acceptM of
332            Nothing
333                → return []
334            Just accept
335                → case P.parseOnly p (A.toByteString accept) of
336                     Right xs → return xs
337                     Left  _  → abort BadRequest []
338                                (Just $ "Unparsable Accept: " ⊕ A.toText accept)
339     where
340       p = do xs ← mimeTypeListP
341              P.endOfInput
342              return xs
343
344 -- |Get a list of @(contentCoding, qvalue)@ enumerated on header
345 -- \"Accept-Encoding\". The list is sorted in descending order by
346 -- qvalue.
347 getAcceptEncoding ∷ Resource [(CIAscii, Maybe Double)]
348 getAcceptEncoding
349     = do accEncM ← getHeader "Accept-Encoding"
350          case accEncM of
351            Nothing
352                -- HTTP/1.0 には Accept-Encoding が無い場合の規定が無い
353                -- ので安全の爲 identity が指定された事にする。HTTP/1.1
354                -- の場合は何でも受け入れて良い事になってゐるので "*" が
355                -- 指定された事にする。
356                → do ver ← getRequestVersion
357                     case ver of
358                       HttpVersion 1 0 → return [("identity", Nothing)]
359                       HttpVersion 1 1 → return [("*"       , Nothing)]
360                       _               → abort InternalServerError []
361                                         (Just "getAcceptEncoding: unknown HTTP version")
362            Just ae
363                → if ae ≡ "" then
364                       -- identity のみが許される。
365                       return [("identity", Nothing)]
366                   else
367                       case P.parseOnly p (A.toByteString ae) of
368                         Right xs → return $ map toTuple $ reverse $ sort xs
369                         Left  _  → abort BadRequest []
370                                    (Just $ "Unparsable Accept-Encoding: " ⊕ A.toText ae)
371     where
372       p = do xs ← acceptEncodingListP
373              P.endOfInput
374              return xs
375
376       toTuple (AcceptEncoding {..})
377           = (aeEncoding, aeQValue)
378
379 -- |Check whether a given content-coding is acceptable.
380 isEncodingAcceptable ∷ CIAscii → Resource Bool
381 isEncodingAcceptable encoding = any f <$> getAcceptEncoding
382     where
383       f (e, q)
384           = (e ≡ "*" ∨ e ≡ encoding) ∧ q ≢ Just 0
385
386 -- |Get the header \"Content-Type\" as 'MIMEType'.
387 getContentType ∷ Resource (Maybe MIMEType)
388 getContentType
389     = do cTypeM ← getHeader "Content-Type"
390          case cTypeM of
391            Nothing
392                → return Nothing
393            Just cType
394                → case P.parseOnly p (A.toByteString cType) of
395                     Right t → return $ Just t
396                     Left  _ → abort BadRequest []
397                               (Just $ "Unparsable Content-Type: " ⊕ A.toText cType)
398     where
399       p = do t ← mimeTypeP
400              P.endOfInput
401              return t
402
403 -- |Get the header \"Authorization\" as 'AuthCredential'.
404 getAuthorization ∷ Resource (Maybe AuthCredential)
405 getAuthorization
406     = do authM ← getHeader "Authorization"
407          case authM of
408            Nothing
409                → return Nothing
410            Just auth
411                → case P.parseOnly p (A.toByteString auth) of
412                     Right ac → return $ Just ac
413                     Left  _  → return Nothing
414     where
415       p = do ac ← authCredentialP
416              P.endOfInput
417              return ac
418
419
420 {- ExaminingRequest 時に使用するアクション群 -}
421
422 -- |Tell the system that the 'Resource' found an entity for the
423 -- request URI. If this is a GET or HEAD request, a found entity means
424 -- a datum to be replied. If this is a PUT or DELETE request, it means
425 -- a datum which was stored for the URI until now. It is an error to
426 -- compute 'foundEntity' if this is a POST request.
427 --
428 -- Computation of 'foundEntity' performs \"If-Match\" test or
429 -- \"If-None-Match\" test if possible. When those tests fail, the
430 -- computation of 'Resource' immediately aborts with status \"412
431 -- Precondition Failed\" or \"304 Not Modified\" depending on the
432 -- situation.
433 --
434 -- If this is a GET or HEAD request, 'foundEntity' automatically puts
435 -- \"ETag\" and \"Last-Modified\" headers into the response.
436 foundEntity ∷ ETag → UTCTime → Resource ()
437 foundEntity !tag !timeStamp
438     = do driftTo ExaminingRequest
439
440          method ← getMethod
441          when (method ≡ GET ∨ method ≡ HEAD)
442              $ setHeader' "Last-Modified" (HTTP.toAscii timeStamp)
443          when (method ≡ POST)
444              $ abort InternalServerError []
445                (Just "Illegal computation of foundEntity for a POST request.")
446          foundETag tag
447
448          driftTo GettingBody
449
450 -- |Tell the system that the 'Resource' found an entity for the
451 -- request URI. The only difference from 'foundEntity' is that
452 -- 'foundETag' doesn't (and can't) put \"Last-Modified\" header into
453 -- the response.
454 --
455 -- This action is not preferred. You should use 'foundEntity' whenever
456 -- possible.
457 foundETag ∷ ETag → Resource ()
458 foundETag !tag
459     = do driftTo ExaminingRequest
460       
461          method ← getMethod
462          when (method ≡ GET ∨ method ≡ HEAD)
463               $ setHeader' "ETag" (printETag tag)
464          when (method ≡ POST)
465               $ abort InternalServerError []
466                 (Just "Illegal computation of foundETag for POST request.")
467
468          -- If-Match があればそれを見る。
469          ifMatch ← getHeader "If-Match"
470          case ifMatch of
471            Nothing    → return ()
472            Just value → if value ≡ "*" then
473                             return ()
474                         else
475                             case P.parseOnly p (A.toByteString value) of
476                               Right tags
477                                  -- tags の中に一致するものが無ければ
478                                  -- PreconditionFailed で終了。
479                                  → when ((¬) (any (≡ tag) tags))
480                                        $ abort PreconditionFailed []
481                                          (Just $ "The entity tag doesn't match: " ⊕ A.toText value)
482                               Left _
483                                    → abort BadRequest [] (Just $ "Unparsable If-Match: " ⊕ A.toText value)
484
485          let statusForNoneMatch
486                  = if method ≡ GET ∨ method ≡ HEAD then
487                        NotModified
488                    else
489                        PreconditionFailed
490
491          -- If-None-Match があればそれを見る。
492          ifNoneMatch ← getHeader "If-None-Match"
493          case ifNoneMatch of
494            Nothing    → return ()
495            Just value → if value ≡ "*" then
496                              abort statusForNoneMatch [] (Just "The entity tag matches: *")
497                          else
498                              case P.parseOnly p (A.toByteString value) of
499                                Right tags
500                                    → when (any (≡ tag) tags)
501                                          $ abort statusForNoneMatch []
502                                            (Just $ "The entity tag matches: " ⊕ A.toText value)
503                                Left _
504                                    → abort BadRequest []
505                                      (Just $ "Unparsable If-None-Match: " ⊕ A.toText value)
506
507          driftTo GettingBody
508     where
509       p = do xs ← eTagListP
510              P.endOfInput
511              return xs
512
513 -- |Tell the system that the 'Resource' found an entity for the
514 -- request URI. The only difference from 'foundEntity' is that
515 -- 'foundTimeStamp' performs \"If-Modified-Since\" test or
516 -- \"If-Unmodified-Since\" test instead of \"If-Match\" test or
517 -- \"If-None-Match\" test. Be aware that any tests based on last
518 -- modification time are unsafe because it is possible to mess up such
519 -- tests by modifying the entity twice in a second.
520 --
521 -- This action is not preferred. You should use 'foundEntity' whenever
522 -- possible.
523 foundTimeStamp ∷ UTCTime → Resource ()
524 foundTimeStamp timeStamp
525     = do driftTo ExaminingRequest
526
527          method ← getMethod
528          when (method ≡ GET ∨ method ≡ HEAD)
529              $ setHeader' "Last-Modified" (HTTP.toAscii timeStamp)
530          when (method ≡ POST)
531              $ abort InternalServerError []
532                (Just "Illegal computation of foundTimeStamp for POST request.")
533
534          let statusForIfModSince
535                  = if method ≡ GET ∨ method ≡ HEAD then
536                        NotModified
537                    else
538                        PreconditionFailed
539
540          -- If-Modified-Since があればそれを見る。
541          ifModSince ← getHeader "If-Modified-Since"
542          case ifModSince of
543            Just str → case HTTP.fromAscii str of
544                          Right lastTime
545                              → when (timeStamp ≤ lastTime)
546                                $ abort statusForIfModSince []
547                                  (Just $ "The entity has not been modified since " ⊕ A.toText str)
548                          Left _
549                              → return () -- 不正な時刻は無視
550            Nothing  → return ()
551
552          -- If-Unmodified-Since があればそれを見る。
553          ifUnmodSince ← getHeader "If-Unmodified-Since"
554          case ifUnmodSince of
555            Just str → case HTTP.fromAscii str of
556                          Right lastTime
557                              → when (timeStamp > lastTime)
558                                $ abort PreconditionFailed []
559                                  (Just $ "The entity has not been modified since " ⊕ A.toText str)
560                          Left _
561                              → return () -- 不正な時刻は無視
562            Nothing  → return ()
563
564          driftTo GettingBody
565
566 -- | Computation of @'foundNoEntity' mStr@ tells the system that the
567 -- 'Resource' found no entity for the request URI. @mStr@ is an
568 -- optional error message to be replied to the client.
569 --
570 -- If this is a PUT request, 'foundNoEntity' performs \"If-Match\"
571 -- test and aborts with status \"412 Precondition Failed\" when it
572 -- failed. If this is a GET, HEAD, POST or DELETE request,
573 -- 'foundNoEntity' always aborts with status \"404 Not Found\".
574 foundNoEntity ∷ Maybe Text → Resource ()
575 foundNoEntity msgM
576     = do driftTo ExaminingRequest
577
578          method ← getMethod
579          when (method ≢ PUT)
580              $ abort NotFound [] msgM
581
582          -- エンティティが存在しないと云ふ事は、"*" も含めたどのやうな
583          -- If-Match: 條件も滿たさない。
584          ifMatch ← getHeader "If-Match"
585          when (ifMatch ≢ Nothing)
586              $ abort PreconditionFailed [] msgM
587
588          driftTo GettingBody
589
590
591 {- GettingBody 時に使用するアクション群 -}
592
593 -- | Computation of @'input' limit@ attempts to read the request body
594 -- up to @limit@ bytes, and then make the 'Resource' transit to
595 -- /Deciding Header/ state. When the actual size of body is larger
596 -- than @limit@ bytes, computation of 'Resource' immediately aborts
597 -- with status \"413 Request Entity Too Large\". When the request has
598 -- no body, 'input' returns an empty string.
599 --
600 -- @limit@ may be less than or equal to zero. In this case, the
601 -- default limitation value ('cnfMaxEntityLength') is used. See
602 -- 'defaultLimit'.
603 --
604 -- 'input' returns a 'Lazy.ByteString' but it's not really lazy:
605 -- reading from the socket just happens at the computation of 'input',
606 -- not at the evaluation of the 'Lazy.ByteString'. The same goes for
607 -- 'inputChunk'.
608 input ∷ Int → Resource Lazy.ByteString
609 input limit
610     = do driftTo GettingBody
611          itr     ← getInteraction
612          hasBody ← liftIO $ atomically $ readItr itrRequestHasBody id itr
613          chunk   ← if hasBody then
614                        askForInput itr
615                    else
616                        do driftTo DecidingHeader
617                           return (∅)
618          return chunk
619     where
620       askForInput ∷ Interaction → Resource Lazy.ByteString
621       askForInput itr
622           = do let confLimit   = cnfMaxEntityLength $ itrConfig itr
623                    actualLimit = if limit ≤ 0 then
624                                      confLimit
625                                  else
626                                      limit
627                when (actualLimit ≤ 0)
628                         $ fail ("inputLBS: limit must be positive: " ⧺ show actualLimit)
629                -- Reader にリクエスト
630                liftIO $ atomically
631                       $ do chunkLen ← readItr itrReqChunkLength id itr
632                            writeItr itrWillReceiveBody True itr
633                            if ((> actualLimit) <$> chunkLen) ≡ Just True then
634                                -- 受信前から多過ぎる事が分かってゐる
635                                tooLarge actualLimit
636                            else
637                                writeItr itrReqBodyWanted (Just actualLimit) itr
638                -- 應答を待つ。トランザクションを分けなければ當然デッドロックする。
639                chunk ← liftIO $ atomically
640                        $ do chunkLen    ← readItr itrReceivedBodyLen id itr
641                             chunkIsOver ← readItr itrReqChunkIsOver  id itr
642                             if chunkLen < actualLimit then
643                                 -- 要求された量に滿たなくて、まだ殘りが
644                                 -- あるなら再試行。
645                                 unless chunkIsOver
646                                     $ retry
647                             else
648                                 -- 制限値一杯まで讀むやうに指示したのに
649                                 -- まだ殘ってゐるなら、それは多過ぎる。
650                                 unless chunkIsOver
651                                     $ tooLarge actualLimit
652                             -- 成功。itr 内にチャンクを置いたままにする
653                             -- とメモリの無駄になるので除去。
654                             chunk ← readItr itrReceivedBody seqToLBS itr
655                             writeItr itrReceivedBody (∅) itr
656                             return chunk
657
658                driftTo DecidingHeader
659                return chunk
660
661       tooLarge ∷ Int → STM ()
662       tooLarge lim = abortSTM RequestEntityTooLarge []
663                      (Just $ "Request body must be smaller than "
664                              ⊕ T.pack (show lim) ⊕ " bytes.")
665
666 seqToLBS ∷ Seq ByteString → Lazy.ByteString
667 {-# INLINE seqToLBS #-}
668 seqToLBS = Lazy.fromChunks ∘ toList
669          
670 -- | Computation of @'inputChunk' limit@ attempts to read a part of
671 -- request body up to @limit@ bytes. You can read any large request by
672 -- repeating computation of this action. When you've read all the
673 -- request body, 'inputChunk' returns an empty string and then make
674 -- the 'Resource' transit to /Deciding Header/ state.
675 --
676 -- @limit@ may be less than or equal to zero. In this case, the
677 -- default limitation value ('cnfMaxEntityLength') is used. See
678 -- 'defaultLimit'.
679 --
680 -- Note that 'inputChunkLBS' is more efficient than 'inputChunk' so you
681 -- should use it whenever possible.
682 inputChunk ∷ Int → Resource Lazy.ByteString
683 inputChunk limit
684     = do driftTo GettingBody
685          itr     ← getInteraction
686          hasBody ← liftIO $ atomically $ readItr itrRequestHasBody id itr
687          chunk   ← if hasBody then
688                         askForInput itr
689                     else
690                         do driftTo DecidingHeader
691                            return (∅)
692          return chunk
693     where
694       askForInput ∷ Interaction → Resource Lazy.ByteString
695       askForInput itr
696           = do let confLimit   = cnfMaxEntityLength $ itrConfig itr
697                    actualLimit = if limit < 0 then
698                                       confLimit
699                                   else
700                                       limit
701                when (actualLimit <= 0)
702                         $ fail ("inputChunkLBS: limit must be positive: " ++ show actualLimit)
703                -- Reader にリクエスト
704                liftIO $ atomically
705                       $ do writeItr itrReqBodyWanted (Just actualLimit) itr
706                            writeItr itrWillReceiveBody True itr
707                -- 應答を待つ。トランザクションを分けなければ當然デッドロック。
708                chunk ← liftIO $ atomically
709                        $ do chunkLen ← readItr itrReceivedBodyLen id itr
710                             -- 要求された量に滿たなくて、まだ殘りがある
711                             -- なら再試行。
712                             when (chunkLen < actualLimit)
713                                 $ do chunkIsOver ← readItr itrReqChunkIsOver id itr
714                                      unless chunkIsOver
715                                          $ retry
716                             -- 成功
717                             chunk ← readItr itrReceivedBody seqToLBS itr
718                             writeItr itrReceivedBody (∅) itr
719                             return chunk
720                when (Lazy.null chunk)
721                    $ driftTo DecidingHeader
722                return chunk
723
724 -- | Computation of @'inputForm' limit@ attempts to read the request
725 -- body with 'input' and parse it as
726 -- @application\/x-www-form-urlencoded@ or @multipart\/form-data@. If
727 -- the request header \"Content-Type\" is neither of them, 'inputForm'
728 -- makes 'Resource' abort with status \"415 Unsupported Media
729 -- Type\". If the request has no \"Content-Type\", it aborts with
730 -- \"400 Bad Request\".
731 --
732 -- Field names in @multipart\/form-data@ will be precisely decoded in
733 -- accordance with RFC 2231. On the other hand,
734 -- @application\/x-www-form-urlencoded@ says nothing about the
735 -- encoding of field names, so they'll always be decoded in UTF-8.
736 inputForm ∷ Int → Resource [(Text, FormData)]
737 inputForm limit
738     = do cTypeM ← getContentType
739          case cTypeM of
740            Nothing
741                → abort BadRequest [] (Just "Missing Content-Type")
742            Just (MIMEType "application" "x-www-form-urlencoded" _)
743                → readWWWFormURLEncoded
744            Just (MIMEType "multipart" "form-data" params)
745                → readMultipartFormData params
746            Just cType
747                → abort UnsupportedMediaType []
748                  $ Just
749                  $ A.toText
750                  $ A.fromAsciiBuilder
751                  $ A.toAsciiBuilder "Unsupported media type: "
752                  ⊕ printMIMEType cType
753     where
754       readWWWFormURLEncoded
755           = (map toPairWithFormData ∘ parseWWWFormURLEncoded)
756             <$>
757             (bsToAscii =≪ input limit)
758
759       bsToAscii bs
760           = case A.fromByteString (Strict.concat (Lazy.toChunks bs)) of
761               Just a  → return a
762               Nothing → abort BadRequest [] (Just "Malformed x-www-form-urlencoded")
763
764       readMultipartFormData params
765           = do case M.lookup "boundary" params of
766                  Nothing
767                      → abort BadRequest [] (Just "Missing boundary of multipart/form-data")
768                  Just boundary
769                      → do src ← input limit
770                           b   ← case A.fromText boundary of
771                                    Just b  → return b
772                                    Nothing → abort BadRequest []
773                                              (Just $ "Malformed boundary: " ⊕ boundary)
774                           case LP.parse (p b) src of
775                             LP.Done _ formList
776                                 → return formList
777                             _   → abort BadRequest [] (Just "Unparsable multipart/form-data")
778           where
779             p b = do xs ← multipartFormP b
780                      P.endOfInput
781                      return xs
782
783 -- | This is just a constant @-1@. It's better to say @'input'
784 -- 'defaultLimit'@ than to say @'input' (-1)@ but these are exactly
785 -- the same.
786 defaultLimit ∷ Int
787 defaultLimit = (-1)
788
789
790 {- DecidingHeader 時に使用するアクション群 -}
791
792 -- | Set the response status code. If you omit to compute this action,
793 -- the status code will be defaulted to \"200 OK\".
794 setStatus ∷ StatusCode → Resource ()
795 setStatus code
796     = do driftTo DecidingHeader
797          itr ← getInteraction
798          liftIO $ atomically $ updateItr itrResponse f itr
799     where
800       f res = res {
801                 resStatus = code
802               }
803
804 -- | Set a value of given resource header. Comparison of header name
805 -- is case-insensitive. Note that this action is not intended to be
806 -- used so frequently: there should be actions like 'setContentType'
807 -- for every common headers.
808 --
809 -- Some important headers (especially \"Content-Length\" and
810 -- \"Transfer-Encoding\") may be silently dropped or overwritten by
811 -- the system not to corrupt the interaction with client at the
812 -- viewpoint of HTTP protocol layer. For instance, if we are keeping
813 -- the connection alive, without this process it causes a catastrophe
814 -- to send a header \"Content-Length: 10\" and actually send a body of
815 -- 20 bytes long. In this case the client shall only accept the first
816 -- 10 bytes of response body and thinks that the residual 10 bytes is
817 -- a part of header of the next response.
818 setHeader ∷ CIAscii → Ascii → Resource ()
819 setHeader name value
820     = driftTo DecidingHeader ≫ setHeader' name value
821
822 setHeader' ∷ CIAscii → Ascii → Resource ()
823 setHeader' name value
824     = do itr ← getInteraction
825          liftIO $ atomically
826                 $ updateItr itrResponse (H.setHeader name value) itr
827
828 -- | Computation of @'redirect' code uri@ sets the response status to
829 -- @code@ and \"Location\" header to @uri@. The @code@ must satisfy
830 -- 'isRedirection' or it causes an error.
831 redirect ∷ StatusCode → URI → Resource ()
832 redirect code uri
833     = do when (code ≡ NotModified ∨ not (isRedirection code))
834              $ abort InternalServerError []
835              $ Just
836              $ A.toText
837              $ A.fromAsciiBuilder
838              $ A.toAsciiBuilder "Attempted to redirect with status "
839              ⊕ printStatusCode code
840          setStatus code
841          setLocation uri
842
843 -- | Computation of @'setContentType' mType@ sets the response header
844 -- \"Content-Type\" to @mType@.
845 setContentType ∷ MIMEType → Resource ()
846 setContentType
847     = setHeader "Content-Type" ∘ A.fromAsciiBuilder ∘ printMIMEType
848
849 -- | Computation of @'setLocation' uri@ sets the response header
850 -- \"Location\" to @uri@.
851 setLocation ∷ URI → Resource ()
852 setLocation uri
853     = case A.fromChars uriStr of
854         Just a  → setHeader "Location" a
855         Nothing → abort InternalServerError []
856                   (Just $ "Malformed URI: " ⊕ T.pack uriStr)
857     where
858       uriStr = uriToString id uri ""
859
860 -- |Computation of @'setContentEncoding' codings@ sets the response
861 -- header \"Content-Encoding\" to @codings@.
862 setContentEncoding ∷ [CIAscii] → Resource ()
863 setContentEncoding codings
864     = do ver ← getRequestVersion
865          tr  ← case ver of
866                   HttpVersion 1 0 → return (toAB ∘ unnormalizeCoding)
867                   HttpVersion 1 1 → return toAB
868                   _               → abort InternalServerError []
869                                     (Just "setContentEncoding: Unknown HTTP version")
870          setHeader "Content-Encoding"
871                    (A.fromAsciiBuilder $ joinWith ", " $ map tr codings)
872     where
873       toAB = A.toAsciiBuilder ∘ A.fromCIAscii
874
875 -- |Computation of @'setWWWAuthenticate' challenge@ sets the response
876 -- header \"WWW-Authenticate\" to @challenge@.
877 setWWWAuthenticate ∷ AuthChallenge → Resource ()
878 setWWWAuthenticate challenge
879     = setHeader "WWW-Authenticate" (printAuthChallenge challenge)
880
881
882 {- DecidingBody 時に使用するアクション群 -}
883
884 -- | Computation of @'output' str@ writes @str@ as a response body,
885 -- and then make the 'Resource' transit to /Done/ state. It is safe to
886 -- apply 'output' to an infinite string, such as a lazy stream of
887 -- \/dev\/random.
888 output ∷ Lazy.ByteString → Resource ()
889 {-# INLINE output #-}
890 output str = outputChunk str *> driftTo Done
891
892 -- | Computation of @'outputChunk' str@ writes @str@ as a part of
893 -- response body. You can compute this action multiple times to write
894 -- a body little at a time. It is safe to apply 'outputChunk' to an
895 -- infinite string.
896 outputChunk ∷ Lazy.ByteString → Resource ()
897 outputChunk wholeChunk
898     = do driftTo DecidingBody
899          itr ← getInteraction
900          
901          let limit = cnfMaxOutputChunkLength $ itrConfig itr
902          when (limit ≤ 0)
903              $ abort InternalServerError []
904                (Just $ "cnfMaxOutputChunkLength must be positive: " ⊕ T.pack (show limit))
905
906          discardBody ← liftIO $ atomically $
907                        readItr itrWillDiscardBody id itr
908
909          unless (discardBody)
910              $ sendChunks wholeChunk limit
911
912          unless (Lazy.null wholeChunk)
913              $ liftIO $ atomically $
914                writeItr itrBodyIsNull False itr
915     where
916       sendChunks ∷ Lazy.ByteString → Int → Resource ()
917       sendChunks str limit
918           | Lazy.null str = return ()
919           | otherwise     = do let (chunk, remaining) = Lazy.splitAt (fromIntegral limit) str
920                                itr ← getInteraction
921                                liftIO $ atomically
922                                       $ putTMVar (itrBodyToSend itr) (chunkToBuilder chunk)
923                                sendChunks remaining limit
924
925       chunkToBuilder ∷ Lazy.ByteString → Builder
926       chunkToBuilder = mconcat ∘ map BB.fromByteString ∘ Lazy.toChunks
927
928 {-
929
930   [GettingBody からそれ以降の状態に遷移する時]
931   
932   body を讀み終へてゐなければ、殘りの body を讀み捨てる。
933
934
935   [DecidingHeader からそれ以降の状態に遷移する時]
936
937   postprocess する。
938
939
940   [Done に遷移する時]
941
942   bodyIsNull が False ならば何もしない。True だった場合は出力補完す
943   る。
944
945 -}
946
947 driftTo ∷ InteractionState → Resource ()
948 driftTo newState
949     = do itr ← getInteraction
950          liftIO $ atomically $ do oldState ← readItr itrState id itr
951                                   if newState < oldState then
952                                       throwStateError oldState newState
953                                     else
954                                       do let a = [oldState .. newState]
955                                              b = tail a
956                                              c = zip a b
957                                          mapM_ (uncurry $ drift itr) c
958                                          writeItr itrState newState itr
959     where
960       throwStateError ∷ Monad m => InteractionState → InteractionState → m a
961
962       throwStateError Done DecidingBody
963           = fail "It makes no sense to output something after finishing to output."
964
965       throwStateError old new
966           = fail ("state error: " ⧺ show old ⧺ " ==> " ⧺ show new)
967
968
969       drift ∷ Interaction → InteractionState → InteractionState → STM ()
970
971       drift itr GettingBody _
972           = writeItr itrReqBodyWasteAll True itr
973
974       drift itr DecidingHeader _
975           = postprocess itr
976
977       drift itr _ Done
978           = do bodyIsNull ← readItr itrBodyIsNull id itr
979                when bodyIsNull
980                         $ writeDefaultPage itr
981
982       drift _ _ _
983           = return ()