{-# LANGUAGE OverloadedStrings #-} -- | Renders forms to an HTML menu, for the sake of highly-constrained browser engines. -- Like those dealing with TV remotes. module Text.HTML.Form.WebApp (renderPage, Form(..), Query) where import Data.ByteString as BS import Data.ByteString.Char8 as B8 import Data.Text as Txt import Data.Text.Encoding as Txt import Data.List as L import Data.Maybe (fromMaybe) import Text.Read (readMaybe) import Network.URI (unEscapeString) import System.IO (readFile') import System.FilePath ((), normalise) import System.Directory (XdgDirectory(..), getXdgDirectory, doesFileExist, doesDirectoryExist, listDirectory, getHomeDirectory) import Text.HTML.Form (Form(..), Input(..)) import Text.HTML.Form.WebApp.Ginger (template, template', resolveSource, list') import Text.HTML.Form.Query (renderQueryString, renderQuery', applyQuery') import Text.HTML.Form.Validate (isFormValid') import Text.HTML.Form.WebApp.Ginger.Hourglass (timeData, modifyTime', timeParseOrNow, gSeqTo, gPad2) import Text.HTML.Form.WebApp.Ginger.TZ (tzdata, continents) import Text.Ginger.GVal as V (GVal(..), ToGVal(..), orderedDict, (~>), fromFunction, list) import Text.Ginger.Html (html) import Data.Hourglass (Elapsed(..), Seconds(..), timeGetElapsed, localTimeToGlobal) import Text.HTML.Form.Colours (tailwindColours) -- | The query string manipulated by this serverside webapp. type Query = [(ByteString, Maybe ByteString)] -- | Converts URI path & query to rendered hyper-linked HTML representing menus -- for selecting values to upload to the server as prescribed by the given form. -- These values are returned to caller on the Left-branch. renderPage :: Form -> [Text] -> Query -> IO (Maybe (Either Query Text)) renderPage form (n:path) query | Just ix <- readMaybe $ Txt.unpack n, ix < Prelude.length (inputs form) = renderInput form ix (inputs form !! ix) path query renderPage form [] _ = return $ Just $ Right $ Txt.concat [ "Start!"] renderPage _ _ _ = return Nothing -- | Is this input type amongst the date-time family? isCalType :: Text -> Bool isCalType = flip L.elem ["date", "datetime-local", "datetime", "month", "time", "week"] -- | Render an input to the corresponding HTML, or form data to submit. renderInput :: Form -> Int -> Input -> [Text] -> [(ByteString, Maybe ByteString)] -> IO (Maybe (Either Query Text)) renderInput form ix input [""] qs = renderInput form ix input [] qs renderInput form ix input@Input { inputType = ty, inputName = name } ["year", p] qs | isCalType ty, Just t <- modifyTime' (Txt.pack $ "year/" ++ Txt.unpack p) $ get name qs = do t' <- timeParseOrNow t template' "cal/year-numpad.html" form ix input (set name (Txt.pack t) qs) $ \prop -> case prop of "T" -> timeData t' _ -> toGVal () renderInput form ix input@Input { inputType = ty, inputName = name } ["zone", p] qs | isCalType ty = do t <- timeParseOrNow $ get name qs let Elapsed (Seconds t') = timeGetElapsed $ localTimeToGlobal t template' "cal/timezone.html" form ix input qs $ \prop -> case prop of "T" -> timeData t "zones" -> tzdata t' $ unEscapeString $ Txt.unpack p "continents" -> continents _ -> toGVal () renderInput form ix input@Input { multiple = True } [p] qs | '=':v' <- Txt.unpack p, (utf8 $ inputName input, Just $ utf8' v') `Prelude.elem` qs = renderInput form ix input [] $ unset (inputName input) (Txt.pack $ unEscapeString v') qs | '=':v' <- Txt.unpack p = renderInput form ix input [] $ (utf8 $ inputName input, Just $ utf8' $ unEscapeString v'):qs renderInput form ix input [p] qs | '=':v' <- Txt.unpack p = renderInput form ix input [] $ set (inputName input) (Txt.pack $ unEscapeString v') qs | ':':v' <- Txt.unpack p = renderInput form ix input [] $ set (inputName input) (Txt.pack (get (inputName input) qs ++ v')) qs | "-" <- Txt.unpack p, v'@(_:_) <- get (inputName input) qs = renderInput form ix input [] $ set (inputName input) (Txt.pack $ Prelude.init v') qs | "-" <- Txt.unpack p = renderInput form ix input [] qs | '+':x' <- Txt.unpack p, Just x <- readMaybe x' :: Maybe Double, Just y <- readMaybe $ get (inputName input) qs = renderInput form ix input [] $ set (inputName input) (Txt.pack $ show $ x + y) qs | '+':x' <- Txt.unpack p, Just _ <- readMaybe x' :: Maybe Double = renderInput form ix input [] $ set (inputName input) (Txt.pack x') qs renderInput form ix input [x, p] qs | '=':v' <- Txt.unpack p = renderInput form ix input [x] $ set (inputName input) (Txt.pack $ unEscapeString v') qs | ':':v' <- Txt.unpack p = renderInput form ix input [x] $ set (inputName input) (Txt.pack (get (inputName input) qs ++ v')) qs | "-" <- Txt.unpack p, v'@(_:_) <- get (inputName input) qs = renderInput form ix input [x] $ set (inputName input) (Txt.pack $ Prelude.init v') qs | "-" <- Txt.unpack p = renderInput form ix input [x] qs | '+':z' <- Txt.unpack p, Just z <- readMaybe z' :: Maybe Double, Just y <- readMaybe $ get (inputName input) qs = renderInput form ix input [x] $ set (inputName input) (Txt.pack $ show $ z + y) qs | '+':x' <- Txt.unpack p, Just _ <- readMaybe x' :: Maybe Double = renderInput form ix input [x] $ set (inputName input) (Txt.pack x') qs renderInput form ix input@Input {inputType="checkbox", inputName=k', value=v'} [] qs | (utf8 k', Just $ utf8 v') `Prelude.elem` qs = template "checkbox.html" form ix input $ unset k' v' qs | v' == "", (utf8 k', Nothing) `Prelude.elem` qs = template "checkbox.html" form ix input [ q | q@(k, v) <- qs, not (k == utf8 k' && v == Nothing)] | otherwise = template "checkbox.html" form ix input $ (utf8 k', Just $ utf8 v'):qs renderInput form ix input@Input {inputType="radio", inputName=k', value=v'} [] qs = template "checkbox.html" form ix input $ set k' v' qs renderInput form ix input@Input { inputType="