hledger-web-1.30/Hledger/0000755000000000000000000000000014302753720013365 5ustar0000000000000000hledger-web-1.30/Hledger/Web/0000755000000000000000000000000014434445206014105 5ustar0000000000000000hledger-web-1.30/Hledger/Web/Handler/0000755000000000000000000000000014434445206015462 5ustar0000000000000000hledger-web-1.30/Hledger/Web/Settings/0000755000000000000000000000000014302753720015702 5ustar0000000000000000hledger-web-1.30/Hledger/Web/Widget/0000755000000000000000000000000014434445206015330 5ustar0000000000000000hledger-web-1.30/app/0000755000000000000000000000000014434445206012576 5ustar0000000000000000hledger-web-1.30/config/0000755000000000000000000000000014434445206013263 5ustar0000000000000000hledger-web-1.30/static/0000755000000000000000000000000014434445206013305 5ustar0000000000000000hledger-web-1.30/static/css/0000755000000000000000000000000014112603266014070 5ustar0000000000000000hledger-web-1.30/static/fonts/0000755000000000000000000000000014112603266014431 5ustar0000000000000000hledger-web-1.30/static/js/0000755000000000000000000000000014434445206013721 5ustar0000000000000000hledger-web-1.30/templates/0000755000000000000000000000000014434445206014014 5ustar0000000000000000hledger-web-1.30/test/0000755000000000000000000000000014434445206012775 5ustar0000000000000000hledger-web-1.30/Hledger/Web.hs0000644000000000000000000000031414302753720014434 0ustar0000000000000000{-| Re-export the modules of the hledger-web program. -} module Hledger.Web ( module Hledger.Web.WebOptions , module Hledger.Web.Main ) where import Hledger.Web.WebOptions import Hledger.Web.Main hledger-web-1.30/Hledger/Web/Application.hs0000644000000000000000000000433114434445206016705 0ustar0000000000000000{-# OPTIONS_GHC -fno-warn-orphans #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE ViewPatterns #-} module Hledger.Web.Application ( makeApplication , makeFoundation , makeFoundationWith ) where import Data.IORef (newIORef, writeIORef) import Network.Wai.Middleware.RequestLogger (logStdoutDev, logStdout) import Network.HTTP.Client (defaultManagerSettings) import Network.HTTP.Conduit (newManager) import Yesod.Default.Config import Hledger.Data (Journal, nulljournal) import Hledger.Web.Handler.AddR import Hledger.Web.Handler.MiscR import Hledger.Web.Handler.EditR import Hledger.Web.Handler.UploadR import Hledger.Web.Handler.JournalR import Hledger.Web.Handler.RegisterR import Hledger.Web.Import import Hledger.Web.WebOptions (WebOpts(serve_,serve_api_), corsPolicy) -- This line actually creates our YesodDispatch instance. It is the second half -- of the call to mkYesodData which occurs in Foundation.hs. Please see the -- comments there for more details. mkYesodDispatch "App" resourcesApp -- This function allocates resources (such as a database connection pool), -- performs initialization and creates a WAI application. This is also the -- place to put your migrate statements to have automatic database -- migrations handled by Yesod. makeApplication :: WebOpts -> Journal -> AppConfig DefaultEnv Extra -> IO Application makeApplication opts' j' conf' = do foundation <- makeFoundation conf' opts' writeIORef (appJournal foundation) j' (logWare . (corsPolicy opts')) <$> toWaiApp foundation where logWare | development = logStdoutDev | serve_ opts' || serve_api_ opts' = logStdout | otherwise = id makeFoundation :: AppConfig DefaultEnv Extra -> WebOpts -> IO App makeFoundation conf opts' = do manager <- newManager defaultManagerSettings s <- staticSite jref <- newIORef nulljournal return $ App conf s manager opts' jref -- Make a Foundation with the given Journal as its state. makeFoundationWith :: Journal -> AppConfig DefaultEnv Extra -> WebOpts -> IO App makeFoundationWith j' conf opts' = do manager <- newManager defaultManagerSettings s <- staticSite jref <- newIORef j' return $ App conf s manager opts' jref hledger-web-1.30/Hledger/Web/Foundation.hs0000644000000000000000000002744114434445206016557 0ustar0000000000000000{-# OPTIONS_GHC -fno-warn-orphans #-} {-# LANGUAGE CPP #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE QuasiQuotes #-} {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE ViewPatterns #-} -- | Define the web application's foundation, in the usual Yesod style. -- See a default Yesod app's comments for more details of each part. module Hledger.Web.Foundation where import Control.Applicative ((<|>)) import Control.Monad (join, when) -- import Control.Monad.Except (runExceptT) -- now re-exported by Hledger import qualified Data.ByteString.Char8 as BC import Data.Traversable (for) import Data.IORef (IORef, readIORef, writeIORef) import Data.Maybe (fromMaybe) import Data.Text (Text) import qualified Data.Text as T import Data.Time.Calendar (Day) import Network.HTTP.Conduit (Manager) import Network.HTTP.Types (status403) import Network.Wai (requestHeaders) import System.Directory (XdgDirectory (..), createDirectoryIfMissing, getXdgDirectory) import System.FilePath (takeFileName, ()) import Text.Blaze (Markup) import Text.Hamlet (hamletFile) import Yesod import Yesod.Static import Yesod.Default.Config #ifndef DEVELOPMENT import Hledger.Web.Settings (staticDir) import Text.Jasmine (minifym) import Yesod.Default.Util (addStaticContentExternal) #endif import Hledger import Hledger.Cli (CliOpts(..), journalReloadIfChanged) import Hledger.Web.Settings (Extra(..), widgetFile) import Hledger.Web.Settings.StaticFiles import Hledger.Web.WebOptions import Hledger.Web.Widget.Common (balanceReportAsHtml) -- | The site argument for your application. This can be a good place to -- keep settings and values requiring initialization before your application -- starts running, such as database connections. Every handler will have -- access to the data present here. data App = App { settings :: AppConfig DefaultEnv Extra , getStatic :: Static -- ^ Settings for static file serving. , httpManager :: Manager -- , appOpts :: WebOpts , appJournal :: IORef Journal -- ^ the current journal, filtered by the initial command line query -- but ignoring any depth limit. } -- This is where we define all of the routes in our application. For a full -- explanation of the syntax, please see: -- http://www.yesodweb.com/book/handler -- -- This function does three things: -- -- * Creates the route datatype AppRoute. Every valid URL in your -- application can be represented as a value of this type. -- * Creates the associated type: -- type instance Route App = AppRoute -- * Creates the value resourcesApp which contains information on the -- resources declared below. This is used in Handler.hs by the call to -- mkYesodDispatch -- -- What this function does *not* do is create a YesodSite instance for -- App. Creating that instance requires all of the handler functions -- for our application to be in scope. However, the handler functions -- usually require access to the AppRoute datatype. Therefore, we -- split these actions into two functions and place them in separate files. mkYesodData "App" $(parseRoutesFile "config/routes") -- ^ defines things like: -- type Handler = HandlerFor App -- HandlerT App IO, https://www.yesodweb.com/book/routing-and-handlers#routing-and-handlers_handler_monad -- type Widget = WidgetFor App () -- WidgetT App IO (), https://www.yesodweb.com/book/widgets type AppRoute = Route App type Form a = Html -> MForm Handler (FormResult a, Widget) -- Please see the documentation for the Yesod typeclass. There are a number -- of settings which can be configured by overriding methods here. instance Yesod App where approot = ApprootMaster $ appRoot . settings makeSessionBackend _ = do hledgerdata <- getXdgDirectory XdgCache "hledger" createDirectoryIfMissing True hledgerdata let sessionexpirysecs = 120 Just <$> defaultClientSessionBackend sessionexpirysecs (hledgerdata "hledger-web_client_session_key.aes") -- defaultLayout :: WidgetFor site () -> HandlerFor site Html defaultLayout widget = do -- Don't run if server-side UI is disabled. -- This single check probably covers all the HTML-returning handlers, -- but for now they do the check as well. checkServerSideUiEnabled master <- getYesod here <- fromMaybe RootR <$> getCurrentRoute VD{opts, j, qparam, q, qopts, caps} <- getViewData msg <- getMessage showSidebar <- shouldShowSidebar let rspec = reportspec_ (cliopts_ opts) ropts = _rsReportOpts rspec ropts' = (_rsReportOpts rspec) {accountlistmode_ = ALTree -- force tree mode for sidebar ,empty_ = True -- show zero items by default } rspec' = rspec{_rsQuery=q,_rsReportOpts=ropts'} hideEmptyAccts <- if empty_ ropts then return True else (== Just "1") . lookup "hideemptyaccts" . reqCookies <$> getRequest let accounts = balanceReportAsHtml (JournalR, RegisterR) here hideEmptyAccts j qparam qopts $ balanceReport rspec' j topShowmd = if showSidebar then "col-md-4" else "col-any-0" :: Text topShowsm = if showSidebar then "col-sm-4" else "" :: Text sideShowmd = if showSidebar then "col-md-4" else "col-any-0" :: Text sideShowsm = if showSidebar then "col-sm-4" else "" :: Text mainShowmd = if showSidebar then "col-md-8" else "col-md-12" :: Text mainShowsm = if showSidebar then "col-sm-8" else "col-sm-12" :: Text -- We break up the default layout into two components: -- default-layout is the contents of the body tag, and -- default-layout-wrapper is the entire page. Since the final -- value passed to hamletToRepHtml cannot be a widget, this allows -- you to use normal widget features in default-layout. pc <- widgetToPageContent $ do addStylesheet $ StaticR css_bootstrap_min_css addStylesheet $ StaticR css_bootstrap_datepicker_standalone_min_css -- load these things early, in HEAD: toWidgetHead [hamlet|