Created
June 11, 2010 19:27
-
-
Save duairc/434923 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DeriveDataTypeable #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
module Server(templateServer,server,AppConfig(..),emptyServerConfig) where | |
import Control.Applicative | |
import Control.Concurrent | |
import Control.Exception (SomeException) | |
import Control.Monad.CatchIO | |
import Data.ByteString.Char8 (ByteString) | |
import qualified Data.ByteString.Char8 as B | |
import qualified Data.Text as T | |
import Prelude hiding (catch) | |
import Snap.Http.Server | |
import Snap.Types | |
import Snap.Util.GZip | |
import System | |
import System.Posix.Env | |
import qualified Text.XHtmlCombinators.Escape as XH | |
import Templates | |
data AppConfig = AppConfig | |
{ locale :: String | |
, interface :: ByteString | |
, port :: Int | |
, hostname :: ByteString | |
, accessLog :: Maybe FilePath | |
, errorLog :: Maybe FilePath | |
, compression :: Bool | |
, error500Handler :: SomeException -> Snap () | |
} | |
emptyServerConfig :: AppConfig | |
emptyServerConfig = AppConfig | |
{ locale = "en_US" | |
, interface = "*" | |
, port = 8000 | |
, hostname = "myserver" | |
, accessLog = Just "access.log" | |
, errorLog = Just "error.log" | |
, compression = True | |
, error500Handler = \e -> do | |
let t = T.pack $ show e | |
r = setContentType "text/html; charset=utf-8" $ | |
setResponseStatus 500 "Internal Server Error" emptyResponse | |
putResponse r | |
writeBS "<html><head><title>Internal Server Error</title></head>" | |
writeBS "<body><h1>Internal Server Error</h1>" | |
writeBS "<p>A web handler threw an exception. Details:</p>" | |
writeBS "<pre>\n" | |
writeText $ XH.escape t | |
writeBS "\n</pre></body></html>" | |
} | |
server :: AppConfig -> Snap () -> IO () | |
server config handler = do | |
putStrLn $ "Listening on " ++ (B.unpack $ interface config) | |
++ ":" ++ show (port config) | |
setUTF8Locale (locale config) | |
try $ httpServe | |
(interface config) | |
(port config) | |
(hostname config) | |
(accessLog config) | |
(errorLog config) | |
(catch500 $ compress $ handler) | |
:: IO (Either SomeException ()) | |
threadDelay 1000000 | |
putStrLn "Shutting down" | |
where | |
catch500 = (`catch` (error500Handler config)) | |
compress = if compression config then withCompression else id | |
templateServer :: FilePath | |
-> Splices Snap | |
-> AppConfig | |
-> ((ByteString -> Snap ()) -> Snap ()) | |
-> IO () | |
templateServer dir' splices config f = do | |
e <- withTemplates dir' splices $ \render reload -> | |
mkTemplateReloader reload <|> (f $ mkTemplateRenderer render) | |
handler <- fromRight e | |
server config handler | |
where | |
fromRight e = either (\s -> putStrLn s >> exitFailure) return e | |
mkTemplateRenderer :: (ByteString -> Snap (Maybe ByteString)) | |
-> ByteString | |
-> Snap () | |
mkTemplateRenderer render template = do | |
bytes <- render template | |
flip (maybe pass) bytes $ \x -> do | |
modifyResponse $ setContentType "text/html; charset=utf-8" | |
writeBS x | |
mkTemplateReloader :: Snap (Either String ()) -> Snap () | |
mkTemplateReloader reload = path "admin/reload" $ do | |
e <- reload | |
modifyResponse $ setContentType "text/plain; charset=utf-8" | |
writeBS . B.pack $ either (++ "Keeping old templates") | |
(const "Templates loaded successfully.") e | |
setUTF8Locale :: String -> IO () | |
setUTF8Locale locale' = do | |
mapM_ (\k -> setEnv k (locale' ++ ".UTF-8") True) | |
[ "LANG" | |
, "LC_CTYPE" | |
, "LC_NUMERIC" | |
, "LC_TIME" | |
, "LC_COLLATE" | |
, "LC_MONETARY" | |
, "LC_MESSAGES" | |
, "LC_PAPER" | |
, "LC_NAME" | |
, "LC_ADDRESS" | |
, "LC_TELEPHONE" | |
, "LC_MEASUREMENT" | |
, "LC_IDENTIFICATION" | |
, "LC_ALL" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment