-
Notifications
You must be signed in to change notification settings - Fork 659
/
Copy pathDevelop.hs
256 lines (195 loc) · 6.68 KB
/
Develop.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
{-# LANGUAGE OverloadedStrings #-}
module Develop
( Flags(..)
, run
)
where
import Control.Applicative ((<|>))
import Control.Monad (guard)
import Control.Monad.Trans (MonadIO(liftIO))
import qualified Data.ByteString.Builder as B
import qualified Data.ByteString as BS
import qualified Data.HashMap.Strict as HashMap
import Data.Monoid ((<>))
import qualified Data.NonEmptyList as NE
import qualified System.Directory as Dir
import System.FilePath as FP
import Snap.Core hiding (path)
import Snap.Http.Server
import Snap.Util.FileServe
import qualified BackgroundWriter as BW
import qualified Build
import qualified Elm.Details as Details
import qualified Develop.Generate.Help as Help
import qualified Develop.Generate.Index as Index
import qualified Develop.StaticFiles as StaticFiles
import qualified Generate.Html as Html
import qualified Generate
import qualified Reporting
import qualified Reporting.Exit as Exit
import qualified Reporting.Task as Task
import qualified Stuff
-- RUN THE DEV SERVER
data Flags =
Flags
{ _port :: Maybe Int
}
run :: () -> Flags -> IO ()
run () (Flags maybePort) =
do let port = maybe 8000 id maybePort
putStrLn $ "Go to http://localhost:" ++ show port ++ " to see your project dashboard."
httpServe (config port) $
serveFiles
<|> serveDirectoryWith directoryConfig "."
<|> serveAssets
<|> error404
config :: Int -> Config Snap a
config port =
setVerbose False $ setPort port $
setAccessLog ConfigNoLog $ setErrorLog ConfigNoLog $ defaultConfig
-- INDEX
directoryConfig :: MonadSnap m => DirectoryConfig m
directoryConfig =
fancyDirectoryConfig
{ indexFiles = []
, indexGenerator = \pwd ->
do modifyResponse $ setContentType "text/html;charset=utf-8"
writeBuilder =<< liftIO (Index.generate pwd)
}
-- NOT FOUND
error404 :: Snap ()
error404 =
do modifyResponse $ setResponseStatus 404 "Not Found"
modifyResponse $ setContentType "text/html;charset=utf-8"
writeBuilder $ Help.makePageHtml "NotFound" Nothing
-- SERVE FILES
serveFiles :: Snap ()
serveFiles =
do path <- getSafePath
guard =<< liftIO (Dir.doesFileExist path)
serveElm path <|> serveFilePretty path
-- SERVE FILES + CODE HIGHLIGHTING
serveFilePretty :: FilePath -> Snap ()
serveFilePretty path =
let
possibleExtensions =
getSubExts (takeExtensions path)
in
case mconcat (map lookupMimeType possibleExtensions) of
Nothing ->
serveCode path
Just mimeType ->
serveFileAs mimeType path
getSubExts :: String -> [String]
getSubExts fullExtension =
if null fullExtension then
[]
else
fullExtension : getSubExts (takeExtensions (drop 1 fullExtension))
serveCode :: String -> Snap ()
serveCode path =
do code <- liftIO (BS.readFile path)
modifyResponse (setContentType "text/html")
writeBuilder $
Help.makeCodeHtml ('~' : '/' : path) (B.byteString code)
-- SERVE ELM
serveElm :: FilePath -> Snap ()
serveElm path =
do guard (takeExtension path == ".elm")
modifyResponse (setContentType "text/html")
result <- liftIO $ compile path
case result of
Right builder ->
writeBuilder builder
Left exit ->
writeBuilder $ Help.makePageHtml "Errors" $ Just $
Exit.toJson $ Exit.reactorToReport exit
compile :: FilePath -> IO (Either Exit.Reactor B.Builder)
compile path =
do maybeRoot <- Stuff.findRoot
case maybeRoot of
Nothing ->
return $ Left $ Exit.ReactorNoOutline
Just root ->
BW.withScope $ \scope -> Stuff.withRootLock root $ Task.run $
do details <- Task.eio Exit.ReactorBadDetails $ Details.load Reporting.silent scope root
artifacts <- Task.eio Exit.ReactorBadBuild $ Build.fromPaths Reporting.silent root details (NE.List path [])
javascript <- Task.mapError Exit.ReactorBadGenerate $ Generate.dev root details artifacts
let (NE.List name _) = Build.getRootNames artifacts
return $ Html.sandwich name javascript
-- SERVE STATIC ASSETS
serveAssets :: Snap ()
serveAssets =
do path <- getSafePath
case StaticFiles.lookup path of
Nothing ->
pass
Just (content, mimeType) ->
do modifyResponse (setContentType (mimeType <> ";charset=utf-8"))
writeBS content
-- MIME TYPES
lookupMimeType :: FilePath -> Maybe BS.ByteString
lookupMimeType ext =
HashMap.lookup ext mimeTypeDict
(==>) :: a -> b -> (a,b)
(==>) a b =
(a, b)
mimeTypeDict :: HashMap.HashMap FilePath BS.ByteString
mimeTypeDict =
HashMap.fromList
[ ".asc" ==> "text/plain"
, ".asf" ==> "video/x-ms-asf"
, ".asx" ==> "video/x-ms-asf"
, ".avi" ==> "video/x-msvideo"
, ".bz2" ==> "application/x-bzip"
, ".css" ==> "text/css"
, ".dtd" ==> "text/xml"
, ".dvi" ==> "application/x-dvi"
, ".gif" ==> "image/gif"
, ".gz" ==> "application/x-gzip"
, ".htm" ==> "text/html"
, ".html" ==> "text/html"
, ".ico" ==> "image/x-icon"
, ".jpeg" ==> "image/jpeg"
, ".jpg" ==> "image/jpeg"
, ".js" ==> "text/javascript"
, ".json" ==> "application/json"
, ".m3u" ==> "audio/x-mpegurl"
, ".mov" ==> "video/quicktime"
, ".mp3" ==> "audio/mpeg"
, ".mp4" ==> "video/mp4"
, ".mpeg" ==> "video/mpeg"
, ".mpg" ==> "video/mpeg"
, ".ogg" ==> "application/ogg"
, ".otf" ==> "font/otf"
, ".pac" ==> "application/x-ns-proxy-autoconfig"
, ".pdf" ==> "application/pdf"
, ".png" ==> "image/png"
, ".qt" ==> "video/quicktime"
, ".sfnt" ==> "font/sfnt"
, ".sig" ==> "application/pgp-signature"
, ".spl" ==> "application/futuresplash"
, ".svg" ==> "image/svg+xml"
, ".swf" ==> "application/x-shockwave-flash"
, ".tar" ==> "application/x-tar"
, ".tar.bz2" ==> "application/x-bzip-compressed-tar"
, ".tar.gz" ==> "application/x-tgz"
, ".tbz" ==> "application/x-bzip-compressed-tar"
, ".text" ==> "text/plain"
, ".tgz" ==> "application/x-tgz"
, ".ttf" ==> "font/ttf"
, ".txt" ==> "text/plain"
, ".wav" ==> "audio/x-wav"
, ".wax" ==> "audio/x-ms-wax"
, ".webm" ==> "video/webm"
, ".webp" ==> "image/webp"
, ".wma" ==> "audio/x-ms-wma"
, ".wmv" ==> "video/x-ms-wmv"
, ".woff" ==> "font/woff"
, ".woff2" ==> "font/woff2"
, ".xbm" ==> "image/x-xbitmap"
, ".xml" ==> "text/xml"
, ".xpm" ==> "image/x-xpixmap"
, ".xwd" ==> "image/x-xwindowdump"
, ".zip" ==> "application/zip"
]