2012-11-15 21:48:48 +04:00
|
|
|
{-
|
|
|
|
|
|
|
|
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 Foundation where
|
|
|
|
|
|
|
|
import Prelude
|
2013-04-09 20:33:19 +04:00
|
|
|
import Data.IORef
|
2012-11-15 21:48:48 +04:00
|
|
|
import Yesod
|
|
|
|
import Yesod.Static
|
|
|
|
import Yesod.Default.Config
|
|
|
|
#ifndef DEVELOPMENT
|
|
|
|
import Yesod.Default.Util (addStaticContentExternal)
|
|
|
|
#endif
|
|
|
|
import Network.HTTP.Conduit (Manager)
|
|
|
|
-- import qualified Settings
|
|
|
|
import Settings.Development (development)
|
|
|
|
import Settings.StaticFiles
|
2012-11-28 03:52:08 +04:00
|
|
|
import Settings (widgetFile, Extra (..))
|
2012-11-15 21:48:48 +04:00
|
|
|
#ifndef DEVELOPMENT
|
2012-11-16 21:08:27 +04:00
|
|
|
import Settings (staticDir)
|
2012-11-15 21:48:48 +04:00
|
|
|
import Text.Jasmine (minifym)
|
|
|
|
#endif
|
2012-11-28 03:52:08 +04:00
|
|
|
import Text.Hamlet (hamletFile)
|
2012-11-15 21:48:48 +04:00
|
|
|
|
|
|
|
import Hledger.Web.Options
|
2013-04-09 20:33:19 +04:00
|
|
|
import Hledger.Data.Types
|
2012-11-15 21:48:48 +04:00
|
|
|
-- import Hledger.Web.Settings
|
|
|
|
-- import Hledger.Web.Settings.StaticFiles
|
|
|
|
|
|
|
|
|
|
|
|
-- | 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
|
2013-04-09 20:33:19 +04:00
|
|
|
, appJournal :: IORef Journal
|
2012-11-15 21:48:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
-- Set up i18n messages. See the message folder.
|
|
|
|
mkMessage "App" "messages" "en"
|
|
|
|
|
|
|
|
-- 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")
|
|
|
|
|
|
|
|
-- | A convenience alias.
|
|
|
|
type AppRoute = Route App
|
|
|
|
|
2013-05-15 02:36:44 +04:00
|
|
|
type Form x = Html -> MForm (HandlerT App IO) (FormResult x, Widget)
|
2012-11-15 21:48:48 +04:00
|
|
|
|
|
|
|
-- 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
|
|
|
|
|
|
|
|
-- Store session data on the client in encrypted cookies,
|
|
|
|
-- default session idle timeout is 120 minutes
|
2013-05-15 02:36:44 +04:00
|
|
|
makeSessionBackend _ = fmap Just $ defaultClientSessionBackend
|
|
|
|
(120 * 60)
|
|
|
|
".hledger-web_client_session_key.aes"
|
2012-11-15 21:48:48 +04:00
|
|
|
|
2012-11-28 03:52:08 +04:00
|
|
|
defaultLayout widget = do
|
|
|
|
master <- getYesod
|
|
|
|
mmsg <- getMessage
|
2012-11-15 21:48:48 +04:00
|
|
|
|
2012-11-28 03:52:08 +04:00
|
|
|
-- 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.
|
2012-11-15 21:48:48 +04:00
|
|
|
|
|
|
|
-- pc <- widgetToPageContent $ do
|
|
|
|
-- $(widgetFile "normalize")
|
|
|
|
-- addStylesheet $ StaticR css_bootstrap_css
|
|
|
|
-- $(widgetFile "default-layout")
|
|
|
|
-- hamletToRepHtml $(hamletFile "templates/default-layout-wrapper.hamlet")
|
|
|
|
|
|
|
|
pc <- widgetToPageContent $ do
|
2012-11-28 03:52:08 +04:00
|
|
|
$(widgetFile "normalize")
|
|
|
|
addStylesheet $ StaticR css_bootstrap_css
|
|
|
|
-- load jquery early:
|
2013-01-11 17:54:49 +04:00
|
|
|
toWidgetHead [hamlet| <script type="text/javascript" src="@{StaticR jquery_js}"></script> |]
|
2012-11-28 03:52:08 +04:00
|
|
|
addScript $ StaticR jquery_url_js
|
|
|
|
addScript $ StaticR jquery_flot_js
|
2013-01-11 17:54:49 +04:00
|
|
|
toWidget [hamlet| \<!--[if lte IE 8]> <script type="text/javascript" src="@{StaticR excanvas_min_js}"></script> <![endif]--> |]
|
2013-04-22 18:34:33 +04:00
|
|
|
addScript $ StaticR select2_min_js
|
|
|
|
addStylesheet $ StaticR select2_css
|
2012-11-28 03:52:08 +04:00
|
|
|
addStylesheet $ StaticR style_css
|
|
|
|
addScript $ StaticR hledger_js
|
|
|
|
$(widgetFile "default-layout")
|
|
|
|
|
|
|
|
hamletToRepHtml $(hamletFile "templates/default-layout-wrapper.hamlet")
|
2012-11-15 21:48:48 +04:00
|
|
|
|
|
|
|
-- -- This is done to provide an optimization for serving static files from
|
|
|
|
-- -- a separate domain. Please see the staticRoot setting in Settings.hs
|
|
|
|
-- urlRenderOverride y (StaticR s) =
|
|
|
|
-- Just $ uncurry (joinPath y (Settings.staticRoot $ settings y)) $ renderRoute s
|
|
|
|
-- urlRenderOverride _ _ = Nothing
|
|
|
|
|
|
|
|
#ifndef DEVELOPMENT
|
|
|
|
-- This function creates static content files in the static folder
|
|
|
|
-- and names them based on a hash of their content. This allows
|
|
|
|
-- expiration dates to be set far in the future without worry of
|
|
|
|
-- users receiving stale content.
|
|
|
|
addStaticContent = addStaticContentExternal minifym base64md5 Settings.staticDir (StaticR . flip StaticRoute [])
|
|
|
|
#endif
|
|
|
|
|
|
|
|
-- Place Javascript at bottom of the body tag so the rest of the page loads first
|
|
|
|
jsLoader _ = BottomOfBody
|
|
|
|
|
|
|
|
-- What messages should be logged. The following includes all messages when
|
|
|
|
-- in development, and warnings and errors in production.
|
|
|
|
shouldLog _ _source level =
|
|
|
|
development || level == LevelWarn || level == LevelError
|
|
|
|
|
|
|
|
-- This instance is required to use forms. You can modify renderMessage to
|
|
|
|
-- achieve customized and internationalized form validation messages.
|
|
|
|
instance RenderMessage App FormMessage where
|
|
|
|
renderMessage _ _ = defaultFormMessage
|
|
|
|
|
|
|
|
-- | Get the 'Extra' value, used to hold data from the settings.yml file.
|
|
|
|
getExtra :: Handler Extra
|
|
|
|
getExtra = fmap (appExtra . settings) getYesod
|
|
|
|
|
|
|
|
-- Note: previous versions of the scaffolding included a deliver function to
|
|
|
|
-- send emails. Unfortunately, there are too many different options for us to
|
|
|
|
-- give a reasonable default. Instead, the information is available on the
|
|
|
|
-- wiki:
|
|
|
|
--
|
|
|
|
-- https://github.com/yesodweb/yesod/wiki/Sending-email
|