2012-02-22 22:03:31 +01:00
|
|
|
module Main where
|
|
|
|
|
2013-04-28 14:30:00 +02:00
|
|
|
import Control.Applicative (optional, pure, (<$>), (<*>))
|
|
|
|
import Control.Exception (bracket)
|
2013-04-28 14:44:14 +02:00
|
|
|
import Control.Monad (liftM, msum, mzero, unless, when)
|
2013-04-28 14:30:00 +02:00
|
|
|
import Control.Monad.IO.Class (liftIO)
|
|
|
|
import Control.Monad.Reader (ask)
|
|
|
|
import Control.Monad.State (get, put)
|
|
|
|
import qualified Crypto.Hash.SHA512 as SHA
|
2012-03-07 17:31:42 +01:00
|
|
|
import Data.Acid
|
|
|
|
import Data.Acid.Advanced
|
|
|
|
import Data.Acid.Local
|
2013-04-28 14:30:00 +02:00
|
|
|
import qualified Data.ByteString.Base64 as B64 (encode)
|
|
|
|
import Data.ByteString.Char8 (ByteString, pack, unpack)
|
|
|
|
import Data.Data (Data, Typeable)
|
|
|
|
import Data.Maybe (fromJust)
|
|
|
|
import Data.Monoid (mempty)
|
|
|
|
import Data.SafeCopy (base, deriveSafeCopy)
|
|
|
|
import Data.Text (Text)
|
|
|
|
import qualified Data.Text as T
|
2012-02-23 03:30:14 +01:00
|
|
|
import Data.Time
|
2013-04-28 14:30:00 +02:00
|
|
|
import Happstack.Server hiding (Session)
|
2012-03-20 18:01:36 +01:00
|
|
|
import Happstack.Server.Compression
|
2012-03-25 19:29:38 +02:00
|
|
|
import Options
|
2013-04-28 14:30:00 +02:00
|
|
|
import System.Locale (defaultTimeLocale)
|
2012-02-22 22:03:31 +01:00
|
|
|
|
2012-02-23 03:30:14 +01:00
|
|
|
import Blog
|
2013-04-28 14:30:00 +02:00
|
|
|
import BlogDB hiding (addComment, deleteComment,
|
|
|
|
updateEntry)
|
2012-02-24 16:06:33 +01:00
|
|
|
import Locales
|
2012-03-24 00:32:38 +01:00
|
|
|
import RSS
|
2012-02-22 22:03:31 +01:00
|
|
|
|
2012-03-09 17:57:53 +01:00
|
|
|
{- Server -}
|
|
|
|
|
2014-03-11 18:12:51 +01:00
|
|
|
data MainOptions = MainOptions {
|
|
|
|
optState :: String,
|
2014-03-11 18:22:59 +01:00
|
|
|
optPort :: Int,
|
|
|
|
optRes :: String
|
2014-03-11 18:12:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
instance Options MainOptions where
|
|
|
|
defineOptions = pure MainOptions
|
|
|
|
<*> simpleOption "statedir" "/var/tazblog/"
|
|
|
|
"Directory in which the BlogState is located."
|
|
|
|
<*> simpleOption "port" 8000
|
|
|
|
"Port to run on. Default is 8000."
|
2014-03-11 18:22:59 +01:00
|
|
|
<*> simpleOption "res" "/usr/share/tazblog/res"
|
|
|
|
"Resources folder location."
|
|
|
|
|
2012-03-09 17:57:53 +01:00
|
|
|
tmpPolicy :: BodyPolicy
|
2013-04-28 14:44:14 +02:00
|
|
|
tmpPolicy = defaultBodyPolicy "./tmp/" 0 200000 1000
|
2012-03-09 17:57:53 +01:00
|
|
|
|
|
|
|
main :: IO()
|
|
|
|
main = do
|
|
|
|
putStrLn ("TazBlog " ++ version ++ " in Haskell starting")
|
2012-03-25 19:29:38 +02:00
|
|
|
runCommand $ \opts args ->
|
|
|
|
bracket (openLocalStateFrom (optState opts ++ "BlogState") initialBlogState)
|
2013-04-28 14:44:14 +02:00
|
|
|
createCheckpointAndClose
|
2014-03-11 18:22:59 +01:00
|
|
|
(\acid -> simpleHTTP nullConf {port = optPort opts} $ tazBlog acid (optRes opts))
|
2012-03-09 17:57:53 +01:00
|
|
|
|
2014-03-11 18:22:59 +01:00
|
|
|
tazBlog :: AcidState Blog -> String -> ServerPart Response
|
|
|
|
tazBlog acid resDir = do
|
2012-03-20 18:01:36 +01:00
|
|
|
compr <- compressedResponseFilter
|
2013-10-14 08:34:50 +02:00
|
|
|
msum [ path $ \(lang :: BlogLang) -> blogHandler acid lang
|
2013-04-27 22:17:54 +02:00
|
|
|
, nullDir >> showIndex acid EN
|
2012-03-24 00:32:38 +01:00
|
|
|
, dir " " $ nullDir >>
|
|
|
|
seeOther ("https://plus.google.com/115916629925754851590" :: Text) (toResponse ())
|
2012-03-07 13:40:47 +01:00
|
|
|
, path $ \(year :: Int) -> path $ \(month :: Int) -> path $ \(id_ :: String) -> formatOldLink year month id_
|
2012-02-23 03:30:14 +01:00
|
|
|
, dir "res" $ serveDirectory DisableBrowsing [] "../res"
|
2012-03-06 23:34:04 +01:00
|
|
|
, dir "notice" $ ok $ toResponse showSiteNotice
|
2012-03-15 18:32:01 +01:00
|
|
|
{- :Admin handlers -}
|
2013-04-28 14:44:14 +02:00
|
|
|
, do dirs "admin/postentry" nullDir
|
2012-03-14 01:36:57 +01:00
|
|
|
guardSession acid
|
|
|
|
postEntry acid
|
2013-04-28 14:44:14 +02:00
|
|
|
, do dirs "admin/entrylist" $ dir (show DE) nullDir
|
2012-03-15 18:32:01 +01:00
|
|
|
guardSession acid
|
|
|
|
entryList acid DE
|
2013-04-28 14:44:14 +02:00
|
|
|
, do dirs "admin/entrylist" $ dir (show EN) nullDir
|
2012-03-15 18:32:01 +01:00
|
|
|
guardSession acid
|
|
|
|
entryList acid EN
|
|
|
|
, do guardSession acid
|
|
|
|
dirs "admin/edit" $ path $ \(eId :: Integer) -> editEntry acid eId
|
2012-04-04 04:10:26 +02:00
|
|
|
, do guardSession acid
|
|
|
|
dirs "admin/updateentry" $ nullDir >> updateEntry acid
|
|
|
|
, do guardSession acid
|
|
|
|
dirs "admin/cdelete" $ path $ \(eId :: Integer) -> path $ \(cId :: String) ->
|
|
|
|
deleteComment acid (EntryId eId) cId
|
2013-04-28 14:44:14 +02:00
|
|
|
, do dir "admin" nullDir
|
2012-03-14 01:36:57 +01:00
|
|
|
guardSession acid
|
|
|
|
ok $ toResponse $ adminIndex ("tazjin" :: Text)
|
2013-04-28 14:44:14 +02:00
|
|
|
, dir "admin" $ ok $ toResponse adminLogin
|
2012-03-09 17:57:53 +01:00
|
|
|
, dir "dologin" $ processLogin acid
|
2013-05-05 21:06:49 +02:00
|
|
|
, do dirs "static/blogv40.css" nullDir
|
2012-04-25 23:45:47 +02:00
|
|
|
setHeaderM "content-type" "text/css"
|
2013-04-24 14:35:25 +02:00
|
|
|
setHeaderM "cache-control" "max-age=630720000"
|
|
|
|
setHeaderM "expires" "Tue, 20 Jan 2037 04:20:42 GMT"
|
2013-04-28 14:44:14 +02:00
|
|
|
ok $ toResponse blogStyle
|
2012-03-22 14:34:04 +01:00
|
|
|
, do setHeaderM "cache-control" "max-age=630720000"
|
|
|
|
setHeaderM "expires" "Tue, 20 Jan 2037 04:20:42 GMT"
|
2014-03-11 18:22:59 +01:00
|
|
|
dir "static" $ serveDirectory DisableBrowsing [] resDir
|
|
|
|
, serveDirectory DisableBrowsing [] resDir
|
2012-03-18 23:49:50 +01:00
|
|
|
, notFound $ toResponse $ showError NotFound DE
|
2012-02-23 03:30:14 +01:00
|
|
|
]
|
2012-02-22 22:03:31 +01:00
|
|
|
|
2013-10-14 08:34:50 +02:00
|
|
|
blogHandler :: AcidState Blog -> BlogLang -> ServerPart Response
|
|
|
|
blogHandler acid lang =
|
2012-03-13 05:31:13 +01:00
|
|
|
msum [ path $ \(eId :: Integer) -> showEntry acid lang $ EntryId eId
|
2012-03-24 00:32:38 +01:00
|
|
|
, nullDir >> showIndex acid lang
|
|
|
|
, dir "rss" $ nullDir >> showRSS acid lang
|
2012-03-25 20:56:19 +02:00
|
|
|
, dir "rss.xml" $ nullDir >> showRSS acid lang
|
2012-03-18 23:49:50 +01:00
|
|
|
, notFound $ toResponse $ showError NotFound lang
|
2012-02-23 03:30:14 +01:00
|
|
|
]
|
2012-02-22 22:03:31 +01:00
|
|
|
|
2012-03-07 13:40:47 +01:00
|
|
|
formatOldLink :: Int -> Int -> String -> ServerPart Response
|
2013-04-28 14:30:00 +02:00
|
|
|
formatOldLink y m id_ =
|
|
|
|
flip seeOther (toResponse ()) $
|
2012-03-07 13:40:47 +01:00
|
|
|
concat $ intersperse' "/" ["de", show y, show m, replace '.' '/' id_]
|
|
|
|
|
2012-03-13 05:31:13 +01:00
|
|
|
showEntry :: AcidState Blog -> BlogLang -> EntryId -> ServerPart Response
|
|
|
|
showEntry acid lang eId = do
|
|
|
|
entry <- query' acid (GetEntry eId)
|
2012-03-18 23:49:50 +01:00
|
|
|
tryEntry entry lang
|
2012-02-23 13:20:29 +01:00
|
|
|
|
2012-03-18 23:49:50 +01:00
|
|
|
tryEntry :: Maybe Entry -> BlogLang -> ServerPart Response
|
|
|
|
tryEntry Nothing lang = notFound $ toResponse $ showError NotFound lang
|
|
|
|
tryEntry (Just entry) _ = ok $ toResponse $ blogTemplate eLang eTitle $ renderEntry entry
|
2012-02-23 13:20:29 +01:00
|
|
|
where
|
2012-03-13 05:31:13 +01:00
|
|
|
eTitle = T.append ": " (title entry)
|
2012-02-23 13:20:29 +01:00
|
|
|
eLang = lang entry
|
2012-02-22 22:03:31 +01:00
|
|
|
|
2012-03-13 05:31:13 +01:00
|
|
|
showIndex :: AcidState Blog -> BlogLang -> ServerPart Response
|
|
|
|
showIndex acid lang = do
|
|
|
|
entries <- query' acid (LatestEntries lang)
|
2012-03-03 16:39:15 +01:00
|
|
|
(page :: Maybe Int) <- optional $ lookRead "page"
|
2013-04-28 14:30:00 +02:00
|
|
|
ok $ toResponse $ blogTemplate lang "" $
|
2012-03-03 16:39:15 +01:00
|
|
|
renderEntries False (eDrop page entries) (topText lang) (Just $ showLinks page lang)
|
|
|
|
where
|
|
|
|
eDrop :: Maybe Int -> [a] -> [a]
|
|
|
|
eDrop (Just i) = drop ((i-1) * 6)
|
2013-04-28 14:30:00 +02:00
|
|
|
eDrop Nothing = drop 0
|
2012-02-24 17:01:36 +01:00
|
|
|
|
2012-03-24 00:32:38 +01:00
|
|
|
showRSS :: AcidState Blog -> BlogLang -> ServerPart Response
|
|
|
|
showRSS acid lang = do
|
|
|
|
entries <- query' acid (LatestEntries lang)
|
|
|
|
feed <- liftIO $ renderFeed lang $ take 6 entries
|
|
|
|
setHeaderM "content-type" "text/xml"
|
|
|
|
ok $ toResponse feed
|
|
|
|
|
2013-04-28 14:30:00 +02:00
|
|
|
{- ADMIN stuff -}
|
2012-03-14 00:37:00 +01:00
|
|
|
|
|
|
|
postEntry :: AcidState Blog -> ServerPart Response
|
|
|
|
postEntry acid = do
|
2012-03-14 01:36:57 +01:00
|
|
|
decodeBody tmpPolicy
|
2013-04-28 14:44:14 +02:00
|
|
|
now <- liftIO getCurrentTime
|
2012-03-14 00:37:00 +01:00
|
|
|
let eId = timeToId now
|
2012-03-15 18:32:01 +01:00
|
|
|
lang <- look "lang"
|
|
|
|
nBtext <- lookText' "btext"
|
|
|
|
nMtext <- lookText' "mtext"
|
2012-03-14 00:37:00 +01:00
|
|
|
nEntry <- Entry <$> pure eId
|
|
|
|
<*> getLang lang
|
2012-03-20 00:26:50 +01:00
|
|
|
<*> readCookieValue "sUser"
|
2012-03-14 00:37:00 +01:00
|
|
|
<*> lookText' "title"
|
2012-04-06 20:32:25 +02:00
|
|
|
<*> pure nBtext
|
|
|
|
<*> pure nMtext
|
2012-03-14 00:37:00 +01:00
|
|
|
<*> pure now
|
|
|
|
<*> pure [] -- NYI
|
|
|
|
<*> pure []
|
|
|
|
update' acid (InsertEntry nEntry)
|
2012-03-15 18:32:01 +01:00
|
|
|
seeOther ("/" ++ lang ++ "/" ++ show eId) (toResponse())
|
2012-03-14 00:37:00 +01:00
|
|
|
where
|
|
|
|
timeToId :: UTCTime -> EntryId
|
|
|
|
timeToId t = EntryId . read $ formatTime defaultTimeLocale "%s" t
|
2012-03-15 18:32:01 +01:00
|
|
|
getLang :: String -> ServerPart BlogLang
|
2012-03-14 00:37:00 +01:00
|
|
|
getLang "de" = return DE
|
|
|
|
getLang "en" = return EN
|
|
|
|
|
2012-03-15 18:32:01 +01:00
|
|
|
entryList :: AcidState Blog -> BlogLang -> ServerPart Response
|
|
|
|
entryList acid lang = do
|
|
|
|
entries <- query' acid (LatestEntries lang)
|
|
|
|
ok $ toResponse $ adminEntryList entries
|
2012-03-14 00:37:00 +01:00
|
|
|
|
2012-03-15 18:32:01 +01:00
|
|
|
editEntry :: AcidState Blog -> Integer -> ServerPart Response
|
|
|
|
editEntry acid i = do
|
|
|
|
(Just entry) <- query' acid (GetEntry eId)
|
|
|
|
ok $ toResponse $ editPage entry
|
2012-03-14 00:37:00 +01:00
|
|
|
where
|
|
|
|
eId = EntryId i
|
|
|
|
|
2012-04-06 20:32:25 +02:00
|
|
|
updateEntry :: AcidState Blog -> ServerPart Response -- TODO: Clean this up
|
2012-03-15 18:32:01 +01:00
|
|
|
updateEntry acid = do
|
|
|
|
decodeBody tmpPolicy
|
|
|
|
(eId :: Integer) <- lookRead "eid"
|
|
|
|
(Just entry) <- query' acid (GetEntry $ EntryId eId)
|
|
|
|
nTitle <- lookText' "title"
|
|
|
|
nBtext <- lookText' "btext"
|
|
|
|
nMtext <- lookText' "mtext"
|
|
|
|
let nEntry = entry { title = nTitle
|
2012-04-06 20:32:25 +02:00
|
|
|
, btext = nBtext
|
|
|
|
, mtext = nMtext}
|
2012-03-15 18:32:01 +01:00
|
|
|
update' acid (UpdateEntry nEntry)
|
|
|
|
seeOther (concat $ intersperse' "/" [show $ lang entry, show eId])
|
|
|
|
(toResponse ())
|
|
|
|
|
2012-04-04 04:10:26 +02:00
|
|
|
deleteComment :: AcidState Blog -> EntryId -> String -> ServerPart Response
|
|
|
|
deleteComment acid eId cId = do
|
|
|
|
nEntry <- update' acid (DeleteComment eId cDate)
|
|
|
|
ok $ toResponse $ commentDeleted eId
|
|
|
|
where
|
|
|
|
(cDate :: UTCTime) = fromJust $ parseTime defaultTimeLocale "%s%Q" cId
|
2012-03-15 18:32:01 +01:00
|
|
|
|
2012-03-14 00:37:00 +01:00
|
|
|
guardSession :: AcidState Blog -> ServerPartT IO ()
|
|
|
|
guardSession acid = do
|
|
|
|
(sId :: Text) <- readCookieValue "session"
|
|
|
|
(uName :: Text) <- readCookieValue "sUser"
|
2013-04-28 14:44:14 +02:00
|
|
|
now <- liftIO getCurrentTime
|
2012-03-14 00:37:00 +01:00
|
|
|
mS <- query' acid (GetSession $ SessionID sId)
|
|
|
|
case mS of
|
|
|
|
Nothing -> mzero
|
2013-04-28 14:44:14 +02:00
|
|
|
(Just Session{..}) -> unless ((uName == username user) && sessionTimeDiff now sdate)
|
|
|
|
mzero
|
2012-03-14 00:37:00 +01:00
|
|
|
where
|
|
|
|
sessionTimeDiff :: UTCTime -> UTCTime -> Bool
|
2013-04-28 14:44:14 +02:00
|
|
|
sessionTimeDiff now sdate = diffUTCTime now sdate < 43200
|
2012-03-14 00:37:00 +01:00
|
|
|
|
2012-03-06 00:50:53 +01:00
|
|
|
|
2012-03-13 05:31:13 +01:00
|
|
|
processLogin :: AcidState Blog -> ServerPart Response
|
2012-03-09 17:57:53 +01:00
|
|
|
processLogin acid = do
|
|
|
|
decodeBody tmpPolicy
|
2012-03-13 05:31:13 +01:00
|
|
|
account <- lookText' "account"
|
2012-03-09 17:57:53 +01:00
|
|
|
password <- look "password"
|
2012-03-13 05:31:13 +01:00
|
|
|
login <- query' acid (CheckUser (Username account) password)
|
2013-04-28 14:44:14 +02:00
|
|
|
if login
|
|
|
|
then createSession account
|
|
|
|
else ok $ toResponse adminLogin
|
2012-03-03 03:35:20 +01:00
|
|
|
where
|
2012-03-13 06:35:56 +01:00
|
|
|
createSession account = do
|
|
|
|
now <- liftIO getCurrentTime
|
|
|
|
let sId = hashString $ show now
|
|
|
|
addCookie (MaxAge 43200) (mkCookie "session" $ unpack sId)
|
|
|
|
addCookie (MaxAge 43200) (mkCookie "sUser" $ T.unpack account)
|
|
|
|
(Just user) <- query' acid (GetUser $ Username account)
|
|
|
|
let nSession = Session (T.pack $ unpack sId) user now
|
|
|
|
update' acid (AddSession nSession)
|
|
|
|
seeOther ("/admin?do=login" :: Text) (toResponse())
|
|
|
|
|