2014-01-26 20:37:27 +00:00
|
|
|
{- git-annex-shell fields
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
2014-01-26 20:37:27 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module CmdLine.GitAnnexShell.Fields where
|
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
import Annex.Common
|
2014-01-26 20:37:27 +00:00
|
|
|
import qualified Annex
|
2014-02-08 19:31:03 +00:00
|
|
|
import Git.FilePath
|
2014-01-26 20:37:27 +00:00
|
|
|
|
|
|
|
import Data.Char
|
|
|
|
|
|
|
|
{- A field, stored in Annex state, with a value sanity checker. -}
|
|
|
|
data Field = Field
|
|
|
|
{ fieldName :: String
|
|
|
|
, fieldCheck :: String -> Bool
|
|
|
|
}
|
|
|
|
|
|
|
|
getField :: Field -> Annex (Maybe String)
|
|
|
|
getField = Annex.getField . fieldName
|
|
|
|
|
|
|
|
remoteUUID :: Field
|
|
|
|
remoteUUID = Field "remoteuuid" $
|
|
|
|
-- does it look like a UUID?
|
|
|
|
all (\c -> isAlphaNum c || c == '-')
|
|
|
|
|
|
|
|
associatedFile :: Field
|
|
|
|
associatedFile = Field "associatedfile" $ \f ->
|
|
|
|
-- is the file a safe relative filename?
|
2014-02-08 19:31:03 +00:00
|
|
|
not (absoluteGitPath f) && not ("../" `isPrefixOf` f)
|
2014-01-26 20:37:27 +00:00
|
|
|
|
|
|
|
direct :: Field
|
|
|
|
direct = Field "direct" $ \f -> f == "1"
|
2015-08-05 17:49:54 +00:00
|
|
|
|
2015-12-26 17:59:27 +00:00
|
|
|
unlocked :: Field
|
|
|
|
unlocked = Field "unlocked" $ \f -> f == "1"
|
|
|
|
|
2015-08-05 17:49:54 +00:00
|
|
|
autoInit :: Field
|
|
|
|
autoInit = Field "autoinit" $ \f -> f == "1"
|