2016-02-25 20:11:13 +00:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2018-10-18 19:32:42 +00:00
|
|
|
- Copyright 2016-2018 Joey Hess <id@joeyh.name>
|
2016-02-25 20:11:13 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Adjust where
|
|
|
|
|
|
|
|
import Command
|
|
|
|
import Annex.AdjustedBranch
|
|
|
|
|
|
|
|
cmd :: Command
|
2016-03-29 17:57:48 +00:00
|
|
|
cmd = notBareRepo $ notDirect $ noDaemonRunning $
|
2016-03-29 15:54:18 +00:00
|
|
|
command "adjust" SectionSetup "enter adjusted branch"
|
|
|
|
paramNothing (seek <$$> optParser)
|
2016-02-25 20:11:13 +00:00
|
|
|
|
2016-03-29 15:54:18 +00:00
|
|
|
optParser :: CmdParamsDesc -> Parser Adjustment
|
2018-10-18 19:32:42 +00:00
|
|
|
optParser _ =
|
|
|
|
(LinkAdjustment <$> linkAdjustmentParser)
|
|
|
|
<|> (PresenceAdjustment <$> presenceAdjustmentParser <*> maybeLinkAdjustmentParser)
|
|
|
|
|
|
|
|
linkAdjustmentParser :: Parser LinkAdjustment
|
|
|
|
linkAdjustmentParser =
|
|
|
|
flag' UnlockAdjustment
|
2016-03-29 15:54:18 +00:00
|
|
|
( long "unlock"
|
|
|
|
<> help "unlock annexed files"
|
|
|
|
)
|
2018-10-18 19:32:42 +00:00
|
|
|
<|> flag' FixAdjustment
|
2016-05-16 21:05:42 +00:00
|
|
|
( long "fix"
|
|
|
|
<> help "fix symlinks to annnexed files"
|
|
|
|
)
|
2018-10-18 19:32:42 +00:00
|
|
|
|
|
|
|
maybeLinkAdjustmentParser :: Parser (Maybe LinkAdjustment)
|
|
|
|
maybeLinkAdjustmentParser = Just <$> linkAdjustmentParser <|> pure Nothing
|
|
|
|
|
|
|
|
presenceAdjustmentParser :: Parser PresenceAdjustment
|
|
|
|
presenceAdjustmentParser =
|
|
|
|
flag' HideMissingAdjustment
|
2016-03-29 15:54:18 +00:00
|
|
|
( long "hide-missing"
|
2018-10-18 19:32:42 +00:00
|
|
|
<> help "hide annexed files whose content is not present"
|
2016-03-29 15:54:18 +00:00
|
|
|
)
|
2016-02-25 20:11:13 +00:00
|
|
|
|
2016-03-29 15:54:18 +00:00
|
|
|
seek :: Adjustment -> CommandSeek
|
|
|
|
seek = commandAction . start
|
|
|
|
|
|
|
|
start :: Adjustment -> CommandStart
|
|
|
|
start adj = do
|
2016-04-22 16:29:32 +00:00
|
|
|
checkVersionSupported
|
2017-11-28 18:40:26 +00:00
|
|
|
showStart' "adjust" Nothing
|
2016-05-13 18:04:22 +00:00
|
|
|
next $ next $ enterAdjustedBranch adj
|