propellor/src/Propellor/Property/File.hs

108 lines
4.0 KiB
Haskell
Raw Normal View History

2014-03-31 03:37:54 +00:00
module Propellor.Property.File where
2014-03-30 17:12:33 +00:00
2014-03-31 03:55:59 +00:00
import Propellor
2014-04-13 15:58:22 +00:00
import Utility.FileMode
2014-03-30 19:14:36 +00:00
2014-04-04 04:08:30 +00:00
import System.Posix.Files
2014-04-13 15:58:22 +00:00
import System.PosixCompat.Types
2014-04-04 04:08:30 +00:00
2014-03-30 19:31:57 +00:00
type Line = String
2014-03-30 17:12:33 +00:00
2014-03-31 04:43:28 +00:00
-- | Replaces all the content of a file.
hasContent :: FilePath -> [Line] -> Property NoInfo
2014-03-30 19:31:57 +00:00
f `hasContent` newcontent = fileProperty ("replace " ++ f)
(\_oldcontent -> newcontent) f
2014-03-30 17:12:33 +00:00
2014-04-08 20:58:11 +00:00
-- | Ensures a file has contents that comes from PrivData.
2014-04-13 15:58:22 +00:00
--
-- The file's permissions are preserved if the file already existed.
-- Otherwise, they're set to 600.
hasPrivContent :: IsContext c => FilePath -> c -> Property HasInfo
2015-01-03 23:07:59 +00:00
hasPrivContent f = hasPrivContentFrom (PrivDataSourceFile (PrivFile f) f) f
-- | Like hasPrivContent, but allows specifying a source
2015-01-29 05:04:59 +00:00
-- for PrivData, rather than using PrivDataSourceFile .
hasPrivContentFrom :: (IsContext c, IsPrivDataSource s) => s -> FilePath -> c -> Property HasInfo
2015-01-03 23:07:59 +00:00
hasPrivContentFrom = hasPrivContent' writeFileProtected
2014-04-08 20:58:11 +00:00
-- | Leaves the file at its default or current mode,
-- allowing "private" data to be read.
--
-- Use with caution!
hasPrivContentExposed :: IsContext c => FilePath -> c -> Property HasInfo
2015-01-03 23:07:59 +00:00
hasPrivContentExposed f = hasPrivContentExposedFrom (PrivDataSourceFile (PrivFile f) f) f
hasPrivContentExposedFrom :: (IsContext c, IsPrivDataSource s) => s -> FilePath -> c -> Property HasInfo
2015-01-03 23:07:59 +00:00
hasPrivContentExposedFrom = hasPrivContent' writeFile
hasPrivContent' :: (IsContext c, IsPrivDataSource s) => (FilePath -> String -> IO ()) -> s -> FilePath -> c -> Property HasInfo
2015-01-03 23:07:59 +00:00
hasPrivContent' writer source f context =
withPrivData source context $ \getcontent ->
property desc $ getcontent $ \privcontent ->
ensureProperty $ fileProperty' writer desc
(\_oldcontent -> lines privcontent) f
where
desc = "privcontent " ++ f
2014-04-13 16:21:43 +00:00
2014-03-31 04:43:28 +00:00
-- | Ensures that a line is present in a file, adding it to the end if not.
containsLine :: FilePath -> Line -> Property NoInfo
2014-04-13 18:01:30 +00:00
f `containsLine` l = f `containsLines` [l]
containsLines :: FilePath -> [Line] -> Property NoInfo
f `containsLines` ls = fileProperty (f ++ " contains:" ++ show ls) go f
2014-03-30 17:12:33 +00:00
where
go content = content ++ filter (`notElem` content) ls
2014-03-30 17:12:33 +00:00
2014-03-31 04:43:28 +00:00
-- | Ensures that a line is not present in a file.
-- Note that the file is ensured to exist, so if it doesn't, an empty
2014-04-03 06:27:17 +00:00
-- file will be written.
lacksLine :: FilePath -> Line -> Property NoInfo
2014-03-30 19:31:57 +00:00
f `lacksLine` l = fileProperty (f ++ " remove: " ++ l) (filter (/= l)) f
2014-03-30 19:14:36 +00:00
2014-03-31 04:43:28 +00:00
-- | Removes a file. Does not remove symlinks or non-plain-files.
notPresent :: FilePath -> Property NoInfo
notPresent f = check (doesFileExist f) $ property (f ++ " not present") $
2014-03-30 19:14:36 +00:00
makeChange $ nukeFile f
2014-03-30 19:31:57 +00:00
fileProperty :: Desc -> ([Line] -> [Line]) -> FilePath -> Property NoInfo
2014-04-13 15:58:22 +00:00
fileProperty = fileProperty' writeFile
fileProperty' :: (FilePath -> String -> IO ()) -> Desc -> ([Line] -> [Line]) -> FilePath -> Property NoInfo
fileProperty' writer desc a f = property desc $ go =<< liftIO (doesFileExist f)
2014-03-30 19:31:57 +00:00
where
go True = do
old <- liftIO $ readFile f
let new = unlines (a (lines old))
if old == new
2014-03-30 19:31:57 +00:00
then noChange
else makeChange $ viaTmp updatefile f new
2014-04-13 15:58:22 +00:00
go False = makeChange $ writer f (unlines $ a [])
2014-04-04 04:08:30 +00:00
-- viaTmp makes the temp file mode 600.
2014-04-13 15:58:22 +00:00
-- Replicate the original file's owner and mode.
2014-04-04 04:08:30 +00:00
updatefile f' content = do
2014-04-13 15:58:22 +00:00
writer f' content
s <- getFileStatus f
setFileMode f' (fileMode s)
setOwnerAndGroup f' (fileOwner s) (fileGroup s)
2014-04-04 04:08:30 +00:00
-- | Ensures a directory exists.
dirExists :: FilePath -> Property NoInfo
dirExists d = check (not <$> doesDirectoryExist d) $ property (d ++ " exists") $
makeChange $ createDirectoryIfMissing True d
2014-04-10 07:06:35 +00:00
-- | Ensures that a file/dir has the specified owner and group.
ownerGroup :: FilePath -> User -> Group -> Property NoInfo
ownerGroup f (User owner) (Group group) = property (f ++ " owner " ++ og) $ do
2014-04-10 07:06:35 +00:00
r <- ensureProperty $ cmdProperty "chown" [og, f]
if r == FailedChange
then return r
else noChange
where
og = owner ++ ":" ++ group
2014-04-13 15:58:22 +00:00
-- | Ensures that a file/dir has the specfied mode.
mode :: FilePath -> FileMode -> Property NoInfo
mode f v = property (f ++ " mode " ++ show v) $ do
2014-04-13 15:58:22 +00:00
liftIO $ modifyFileMode f (\_old -> v)
noChange