{-# LANGUAGE CPP #-}
{-
Copyright (C) 2008 John MacFarlane <jgm@berkeley.edu>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-}

{- Functions for maintaining user list and session state.
-}

module Network.Gitit.Cache ( expireCachedFile
                           , lookupCache
                           , cacheContents )
where

import qualified Data.ByteString as B (ByteString, readFile, writeFile)
import System.FilePath
import System.Directory (doesFileExist, removeFile, createDirectoryIfMissing, getModificationTime)
import Data.Time.Clock (UTCTime)
#if MIN_VERSION_directory(1,2,0)
#else
import System.Time (ClockTime(..))
import Data.Time.Clock.POSIX (posixSecondsToUTCTime)
#endif
import Network.Gitit.State
import Network.Gitit.Types
import Control.Monad
import Control.Monad.Trans (liftIO)
import Text.Pandoc.UTF8 (encodePath)

-- | Expire a cached file, identified by its filename in the filestore.
-- Returns () after deleting a file from the cache, fails if no cached file.
expireCachedFile :: String -> GititServerPart ()
expireCachedFile :: String -> GititServerPart ()
expireCachedFile String
file = do
  cfg <- GititServerPart Config
getConfig
  let target = String -> String
encodePath (String -> String) -> String -> String
forall a b. (a -> b) -> a -> b
$ Config -> String
cacheDir Config
cfg String -> String -> String
</> String
file
  exists <- liftIO $ doesFileExist target
  when exists $ liftIO $ liftIO $ removeFile target

lookupCache :: String -> GititServerPart (Maybe (UTCTime, B.ByteString))
lookupCache :: String -> GititServerPart (Maybe (UTCTime, ByteString))
lookupCache String
file = do
  cfg <- GititServerPart Config
getConfig
  let target = String -> String
encodePath (String -> String) -> String -> String
forall a b. (a -> b) -> a -> b
$ Config -> String
cacheDir Config
cfg String -> String -> String
</> String
file
  exists <- liftIO $ doesFileExist target
  if exists
     then liftIO $ do
#if MIN_VERSION_directory(1,2,0)
       modtime <- getModificationTime target
#else
       TOD secs _ <- getModificationTime target
       let modtime = posixSecondsToUTCTime $ fromIntegral secs
#endif
       contents <- B.readFile target
       return $ Just (modtime, contents)
     else return Nothing

cacheContents :: String -> B.ByteString -> GititServerPart ()
cacheContents :: String -> ByteString -> GititServerPart ()
cacheContents String
file ByteString
contents = do
  cfg <- GititServerPart Config
getConfig
  let target = String -> String
encodePath (String -> String) -> String -> String
forall a b. (a -> b) -> a -> b
$ Config -> String
cacheDir Config
cfg String -> String -> String
</> String
file
  let targetDir = String -> String
takeDirectory String
target
  liftIO $ do
    createDirectoryIfMissing True targetDir
    B.writeFile target contents