Implement HasServer instead of using Raw
This commit is contained in:
parent
85bbc8516a
commit
f2a136d27c
44
app/Main.hs
44
app/Main.hs
@ -20,22 +20,19 @@ import Data.Text (Text)
|
|||||||
import Data.Time (Day, LocalTime (..), TimeOfDay (..), ZonedTime (..), addDays, toGregorian)
|
import Data.Time (Day, LocalTime (..), TimeOfDay (..), ZonedTime (..), addDays, toGregorian)
|
||||||
import GHC.Generics (Generic)
|
import GHC.Generics (Generic)
|
||||||
import Network.HTTP.Media ((//), (/:))
|
import Network.HTTP.Media ((//), (/:))
|
||||||
import Network.HTTP.Types (Status (..), mkStatus, status200)
|
import Network.HTTP.Types (Status (..))
|
||||||
import Network.Wai (Application, Request (..), Response, responseFile, responseLBS)
|
import Network.Wai (Request (..))
|
||||||
import Servant
|
import Servant
|
||||||
( Accept (..)
|
( Accept (..)
|
||||||
, Capture
|
, Capture
|
||||||
, Get
|
, Get
|
||||||
, Handler
|
, Handler
|
||||||
, MimeRender (..)
|
, MimeRender (..)
|
||||||
, Raw
|
|
||||||
, ServerError (..)
|
, ServerError (..)
|
||||||
, ServerT
|
, ServerT
|
||||||
, Tagged (..)
|
|
||||||
, err404
|
, err404
|
||||||
, err500
|
, err500
|
||||||
, hoistServer
|
, hoistServer
|
||||||
, runHandler
|
|
||||||
, serve
|
, serve
|
||||||
, (:<|>) (..)
|
, (:<|>) (..)
|
||||||
, (:>)
|
, (:>)
|
||||||
@ -62,18 +59,13 @@ import Yore.Download (downloadInto)
|
|||||||
import Yore.Error (Error (..))
|
import Yore.Error (Error (..))
|
||||||
import Yore.Schedule (schedule)
|
import Yore.Schedule (schedule)
|
||||||
import Yore.Scrape (Issue (..), getIssuesByDay)
|
import Yore.Scrape (Issue (..), getIssuesByDay)
|
||||||
|
import Yore.Servant (GetSendfile, Sendfile (..))
|
||||||
import Yore.Time (addYears, getCurrentDay, getSecondsUntilMidnight)
|
import Yore.Time (addYears, getCurrentDay, getSecondsUntilMidnight)
|
||||||
|
|
||||||
import qualified Envy
|
import qualified Envy
|
||||||
import qualified Yore.DB as DB
|
import qualified Yore.DB as DB
|
||||||
import qualified Yore.Log as Log
|
import qualified Yore.Log as Log
|
||||||
|
|
||||||
newtype ConnectionString = ConnectionString String
|
|
||||||
deriving (Show)
|
|
||||||
|
|
||||||
instance Envy.ReadEnvVar ConnectionString where
|
|
||||||
readEnvVar = fmap ConnectionString . Envy.readEnvVar
|
|
||||||
|
|
||||||
data ConfigT f = Config
|
data ConfigT f = Config
|
||||||
{ yorePort :: f =@@ Int ? 3000
|
{ yorePort :: f =@@ Int ? 3000
|
||||||
, yoreDownloadDir :: f =@@ FilePath ? "./download"
|
, yoreDownloadDir :: f =@@ FilePath ? "./download"
|
||||||
@ -161,11 +153,6 @@ nt action = MkHandler $ do
|
|||||||
Right x ->
|
Right x ->
|
||||||
pure $ Right x
|
pure $ Right x
|
||||||
|
|
||||||
type API =
|
|
||||||
Get '[HTML] RootModel
|
|
||||||
:<|> "today" :> "issue" :> Capture "issue" Int :> Get '[HTML] RootModel
|
|
||||||
:<|> "api" :> "today" :> "issue" :> Capture "issue" Int :> "fz.pdf" :> Raw
|
|
||||||
|
|
||||||
toServerError :: Error -> ServerError
|
toServerError :: Error -> ServerError
|
||||||
toServerError = \case
|
toServerError = \case
|
||||||
ConnectionError msg ->
|
ConnectionError msg ->
|
||||||
@ -180,14 +167,10 @@ toServerError = \case
|
|||||||
encodeUtf8LBS :: String -> LBS.ByteString
|
encodeUtf8LBS :: String -> LBS.ByteString
|
||||||
encodeUtf8LBS = LBS.fromStrict . Encoding.encodeUtf8 . Text.pack
|
encodeUtf8LBS = LBS.fromStrict . Encoding.encodeUtf8 . Text.pack
|
||||||
|
|
||||||
handlerToRaw :: ExceptT Error IO Response -> Tagged t Application
|
type API =
|
||||||
handlerToRaw handler = Tagged $ \_ respond -> do
|
Get '[HTML] RootModel
|
||||||
r <- runHandler $ nt handler
|
:<|> "today" :> "issue" :> Capture "issue" Int :> Get '[HTML] RootModel
|
||||||
case r of
|
:<|> "api" :> "today" :> "issue" :> Capture "issue" Int :> "fz.pdf" :> GetSendfile
|
||||||
Left e ->
|
|
||||||
respond $ responseLBS (mkStatus e.errHTTPCode $ BS8.pack e.errReasonPhrase) e.errHeaders e.errBody
|
|
||||||
Right response ->
|
|
||||||
respond response
|
|
||||||
|
|
||||||
server :: Config -> DB -> ServerT API (ExceptT Error IO)
|
server :: Config -> DB -> ServerT API (ExceptT Error IO)
|
||||||
server cfg db = rootR :<|> todayR :<|> apiTodayR
|
server cfg db = rootR :<|> todayR :<|> apiTodayR
|
||||||
@ -200,19 +183,20 @@ server cfg db = rootR :<|> todayR :<|> apiTodayR
|
|||||||
dayFile <- DB.withConn db $ DB.getDayFileByIssue dateThen issue
|
dayFile <- DB.withConn db $ DB.getDayFileByIssue dateThen issue
|
||||||
pure $ RootModel dateThen dayFile issue count
|
pure $ RootModel dateThen dayFile issue count
|
||||||
|
|
||||||
apiTodayR issue = handlerToRaw $ do
|
apiTodayR issue = do
|
||||||
dateThen <- ExceptT get100YearsAgo
|
dateThen <- ExceptT get100YearsAgo
|
||||||
dayFile <- DB.withConn db $ DB.getDayFileByIssue dateThen issue
|
dayFile <- DB.withConn db $ DB.getDayFileByIssue dateThen issue
|
||||||
let fullPath = cfg.yoreDownloadDir </> dayFile.relative_path
|
let fullPath = cfg.yoreDownloadDir </> dayFile.relative_path
|
||||||
secondsUntilMidnight <- liftIO getSecondsUntilMidnight
|
secondsUntilMidnight <- liftIO getSecondsUntilMidnight
|
||||||
pure $
|
pure
|
||||||
responseFile
|
Sendfile
|
||||||
status200
|
{ headers =
|
||||||
[ ("content-type", "application/pdf")
|
[ ("content-type", "application/pdf")
|
||||||
, ("cache-control", BS8.pack $ printf "public, max-age=%d" secondsUntilMidnight)
|
, ("cache-control", BS8.pack $ printf "public, max-age=%d" secondsUntilMidnight)
|
||||||
]
|
]
|
||||||
|
, path =
|
||||||
fullPath
|
fullPath
|
||||||
Nothing
|
}
|
||||||
|
|
||||||
data RootModel = RootModel Day DB.DayFile Int Int
|
data RootModel = RootModel Day DB.DayFile Int Int
|
||||||
|
|
||||||
@ -277,7 +261,7 @@ indexDay cfg dayThen conn = do
|
|||||||
issues <- liftIO $ getIssuesByDay dayThen
|
issues <- liftIO $ getIssuesByDay dayThen
|
||||||
paths <- forM issues $ \issue -> do
|
paths <- forM issues $ \issue -> do
|
||||||
Log.info $ printf "downloading %s" issue.url
|
Log.info $ printf "downloading %s" issue.url
|
||||||
path <- liftIO $ downloadInto cfg.yoreDownloadDir issue.url
|
path <- downloadInto cfg.yoreDownloadDir issue.url
|
||||||
pure (issue.label, path)
|
pure (issue.label, path)
|
||||||
Log.info "creating DB entries"
|
Log.info "creating DB entries"
|
||||||
dayIndex <- DB.createDayIndex dayThen conn
|
dayIndex <- DB.createDayIndex dayThen conn
|
||||||
|
|||||||
@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
module Yore.Download (downloadInto) where
|
module Yore.Download (downloadInto) where
|
||||||
|
|
||||||
import Control.Monad (guard)
|
import Control.Exception (Exception, IOException, catch)
|
||||||
|
import Control.Monad.Trans.Except (ExceptT (..))
|
||||||
import Data.Maybe (fromJust)
|
import Data.Maybe (fromJust)
|
||||||
import Data.Text (Text)
|
import Data.Text (Text)
|
||||||
import Network.HTTP.Req hiding (queryParam)
|
import Network.HTTP.Req hiding (queryParam)
|
||||||
@ -14,6 +15,8 @@ import qualified Data.Text as Text
|
|||||||
import qualified Data.UUID.V4 as UUID
|
import qualified Data.UUID.V4 as UUID
|
||||||
import qualified Text.URI as URI
|
import qualified Text.URI as URI
|
||||||
|
|
||||||
|
import Yore.Error (Error (..))
|
||||||
|
|
||||||
-- | Download a URL and save it to a directory.
|
-- | Download a URL and save it to a directory.
|
||||||
-- Returns the path of the downloaded file relative to the directory.
|
-- Returns the path of the downloaded file relative to the directory.
|
||||||
downloadInto
|
downloadInto
|
||||||
@ -21,22 +24,30 @@ downloadInto
|
|||||||
-- ^ Directory where to store the file.
|
-- ^ Directory where to store the file.
|
||||||
-> Text
|
-> Text
|
||||||
-- ^ The URL to download.
|
-- ^ The URL to download.
|
||||||
-> IO FilePath
|
-> ExceptT Error IO FilePath
|
||||||
downloadInto downloadDir textUrl = download >>= save
|
downloadInto downloadDir textUrl =
|
||||||
|
download >>= save
|
||||||
where
|
where
|
||||||
download :: IO LBS.ByteString
|
download :: ExceptT Error IO LBS.ByteString
|
||||||
download = do
|
download = toExceptT (handle @HttpException) $ do
|
||||||
uri <- URI.mkURI textUrl
|
uri <- URI.mkURI textUrl
|
||||||
let (url, opts) = fromJust $ useHttpsURI uri
|
let (url, opts) = fromJust $ useHttpsURI uri
|
||||||
res <- runReq defaultHttpConfig $ req GET url NoReqBody lbsResponse opts
|
res <- runReq defaultHttpConfig $ req GET url NoReqBody lbsResponse opts
|
||||||
guard $ responseStatusCode res == 200
|
|
||||||
pure $ responseBody res
|
pure $ responseBody res
|
||||||
|
|
||||||
save :: LBS.ByteString -> IO FilePath
|
save :: LBS.ByteString -> ExceptT Error IO FilePath
|
||||||
save contents = do
|
save contents = toExceptT (handle @IOException) $ do
|
||||||
let suffix = takeExtension $ Text.unpack textUrl
|
let suffix = takeExtension $ Text.unpack textUrl
|
||||||
uuid <- UUID.nextRandom
|
uuid <- UUID.nextRandom
|
||||||
let fullPath = downloadDir </> show uuid <.> suffix
|
let fullPath = downloadDir </> show uuid <.> suffix
|
||||||
createDirectoryIfMissing True downloadDir
|
createDirectoryIfMissing True downloadDir
|
||||||
LBS.writeFile fullPath contents
|
LBS.writeFile fullPath contents
|
||||||
pure $ makeRelative downloadDir fullPath
|
pure $ makeRelative downloadDir fullPath
|
||||||
|
|
||||||
|
toExceptT :: (Exception e) => (e -> Error) -> IO a -> ExceptT Error IO a
|
||||||
|
toExceptT showException f =
|
||||||
|
ExceptT $ (Right <$> f) `catch` (pure . Left . showException)
|
||||||
|
|
||||||
|
handle :: (Show e) => e -> Error
|
||||||
|
handle =
|
||||||
|
GenericError . Text.pack . show
|
||||||
|
|||||||
31
src/Yore/Servant.hs
Normal file
31
src/Yore/Servant.hs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{-# LANGUAGE OverloadedRecordDot #-}
|
||||||
|
{-# LANGUAGE TypeFamilies #-}
|
||||||
|
|
||||||
|
module Yore.Servant (GetSendfile, Sendfile (..)) where
|
||||||
|
|
||||||
|
import Network.HTTP.Types (ResponseHeaders, status200)
|
||||||
|
import Network.Wai (responseFile)
|
||||||
|
import Servant (HasServer (..))
|
||||||
|
import Servant.Server.Internal.Delayed (runAction)
|
||||||
|
import Servant.Server.Internal.RouteResult (RouteResult (..))
|
||||||
|
import Servant.Server.Internal.Router (Router' (..))
|
||||||
|
|
||||||
|
-- | Servant route type that responds with a file using @sendfile@.
|
||||||
|
data GetSendfile
|
||||||
|
|
||||||
|
data Sendfile = Sendfile
|
||||||
|
{ headers :: ResponseHeaders
|
||||||
|
-- ^ The headers to send along with the file, e.g. @content-type@ or cache information.
|
||||||
|
, path :: FilePath
|
||||||
|
-- ^ The file to respond with.
|
||||||
|
}
|
||||||
|
deriving (Show)
|
||||||
|
|
||||||
|
instance HasServer GetSendfile context where
|
||||||
|
type ServerT GetSendfile m = m Sendfile
|
||||||
|
|
||||||
|
hoistServerWithContext _ _ nt = nt
|
||||||
|
|
||||||
|
route _ _ action = RawRouter $ \env request respond ->
|
||||||
|
runAction action env request respond $ \sendfile ->
|
||||||
|
Route $ responseFile status200 sendfile.headers sendfile.path Nothing
|
||||||
@ -41,6 +41,7 @@ library
|
|||||||
, Yore.Schedule
|
, Yore.Schedule
|
||||||
, Yore.Scrape
|
, Yore.Scrape
|
||||||
, Yore.Time
|
, Yore.Time
|
||||||
|
, Yore.Servant
|
||||||
hs-source-dirs:
|
hs-source-dirs:
|
||||||
src
|
src
|
||||||
build-depends:
|
build-depends:
|
||||||
@ -49,16 +50,19 @@ library
|
|||||||
, directory
|
, directory
|
||||||
, filepath
|
, filepath
|
||||||
, html-parse
|
, html-parse
|
||||||
|
, http-types
|
||||||
, lens
|
, lens
|
||||||
, modern-uri
|
, modern-uri
|
||||||
, mtl
|
, mtl
|
||||||
, opium
|
, opium
|
||||||
, req
|
, req
|
||||||
, resource-pool
|
, resource-pool
|
||||||
|
, servant-server
|
||||||
, text
|
, text
|
||||||
, time
|
, time
|
||||||
, transformers
|
, transformers
|
||||||
, uuid
|
, uuid
|
||||||
|
, wai
|
||||||
|
|
||||||
executable yore
|
executable yore
|
||||||
import: shared-options
|
import: shared-options
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user