module Hadolint.Rule.DL3036 (rule) where

import Hadolint.Rule
import qualified Hadolint.Shell as Shell
import Language.Docker.Syntax


rule :: Rule Shell.ParsedShell
rule :: Rule ParsedShell
rule = Rule ParsedShell
dl3036 forall a. Semigroup a => a -> a -> a
<> forall args. Rule args -> Rule args
onbuild Rule ParsedShell
dl3036
{-# INLINEABLE rule #-}

dl3036 :: Rule Shell.ParsedShell
dl3036 :: Rule ParsedShell
dl3036 = forall args.
RuleCode
-> DLSeverity -> Text -> (Instruction args -> Bool) -> Rule args
simpleRule RuleCode
code DLSeverity
severity Text
message Instruction ParsedShell -> Bool
check
  where
    code :: RuleCode
code = RuleCode
"DL3036"
    severity :: DLSeverity
severity = DLSeverity
DLWarningC
    message :: Text
message = Text
"`zypper clean` missing after zypper use."

    check :: Instruction ParsedShell -> Bool
check (Run (RunArgs Arguments ParsedShell
args RunFlags
_)) =
      forall a b. (a -> b) -> Arguments a -> b
foldArguments ((Command -> Bool) -> ParsedShell -> Bool
Shell.noCommands Command -> Bool
zypperInstall) Arguments ParsedShell
args
        Bool -> Bool -> Bool
|| ( forall a b. (a -> b) -> Arguments a -> b
foldArguments ((Command -> Bool) -> ParsedShell -> Bool
Shell.anyCommands Command -> Bool
zypperInstall) Arguments ParsedShell
args
               Bool -> Bool -> Bool
&& forall a b. (a -> b) -> Arguments a -> b
foldArguments ((Command -> Bool) -> ParsedShell -> Bool
Shell.anyCommands Command -> Bool
zypperClean) Arguments ParsedShell
args
           )
    check Instruction ParsedShell
_ = Bool
True

    zypperInstall :: Command -> Bool
zypperInstall = Text -> [Text] -> Command -> Bool
Shell.cmdHasArgs Text
"zypper" [Text
"install", Text
"in"]
    zypperClean :: Command -> Bool
zypperClean = Text -> [Text] -> Command -> Bool
Shell.cmdHasArgs Text
"zypper" [Text
"clean", Text
"cc"]
{-# INLINEABLE dl3036 #-}