FeedMonad/FeedMonad/src/FeedMonad.hs

38 lines
972 B
Haskell
Raw Normal View History

2021-11-11 20:55:29 +02:00
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE DeriveFunctor #-}
2021-11-11 19:04:48 +02:00
module FeedMonad where
import Data.Text (Text)
import Data.Entry (URL)
import Middleware (Middleware)
import Numeric.Natural (Natural)
import Data.Category (Category)
2021-11-11 19:04:48 +02:00
newtype Minutes = Minutes Natural
data FeedMonad = FeedMonad
{ feeds :: [Category URL]
2021-11-11 19:04:48 +02:00
-- ^ The forest of urls for the feeds. It's a forest because of the categories
, filters :: Middleware
-- ^ The middleware. Modifies the scoring, tags and content
, refreshTime :: Minutes
-- ^ How often to refresh the feeds
, secretToken :: Text
-- ^ Used for authenticating the UI. This is a single user app
-- served over http, so we can get around with hardcoded
-- authentication token
}
2021-11-11 20:55:29 +02:00
defaultConfig :: FeedMonad
defaultConfig = FeedMonad
{ feeds = []
, filters = id
, refreshTime = Minutes 30
, secretToken = "i am a secret"
}
2021-11-11 19:04:48 +02:00
defaultMain :: FeedMonad -> IO ()
2021-11-11 20:55:29 +02:00
defaultMain f =
print $ feeds f