hadolint-1.7.0: src/Hadolint/Formatter/Codeclimate.hs
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE DeriveGeneric #-}
module Hadolint.Formatter.Codeclimate
( printResult
, formatResult
) where
import Data.Aeson hiding (Result)
import qualified Data.ByteString.Lazy as B
import qualified Data.List.NonEmpty as NE
import Data.Monoid ((<>))
import Data.Sequence (Seq)
import qualified Data.Text as Text
import GHC.Generics
import Hadolint.Formatter.Format (Result(..))
import Hadolint.Rules (Metadata(..), RuleCheck(..))
import ShellCheck.Interface
import Text.Megaparsec.Error
(ParseError, ShowErrorComponent, ShowToken, errorPos,
parseErrorTextPretty)
import Text.Megaparsec.Pos
(sourceColumn, sourceLine, sourceName, unPos)
data Issue = Issue
{ checkName :: String
, description :: String
, location :: Location
, impact :: String
}
data Location
= LocLine String
Int
| LocPos String
Pos
instance ToJSON Location where
toJSON (LocLine path l) = object ["path" .= path, "lines" .= object ["begin" .= l, "end" .= l]]
toJSON (LocPos path pos) =
object ["path" .= path, "positions" .= object ["begin" .= pos, "end" .= pos]]
data Pos = Pos
{ line :: Int
, column :: Int
} deriving (Generic)
instance ToJSON Pos
instance ToJSON Issue where
toJSON Issue {..} =
object
[ "type" .= ("issue" :: String)
, "check_name" .= checkName
, "description" .= description
, "categories" .= (["Bug Risk"] :: [String])
, "location" .= location
, "severity" .= impact
]
errorToIssue :: (ShowToken t, Ord t, ShowErrorComponent e) => ParseError t e -> Issue
errorToIssue err =
Issue
{ checkName = "DL1000"
, description = parseErrorTextPretty err
, location = LocPos (sourceName pos) Pos {..}
, impact = severityText ErrorC
}
where
pos = NE.head (errorPos err)
line = unPos (sourceLine pos)
column = unPos (sourceColumn pos)
checkToIssue :: RuleCheck -> Issue
checkToIssue RuleCheck {..} =
Issue
{ checkName = Text.unpack (code metadata)
, description = Text.unpack (message metadata)
, location = LocLine (Text.unpack filename) linenumber
, impact = severityText (severity metadata)
}
severityText :: Severity -> String
severityText severity =
case severity of
ErrorC -> "blocker"
WarningC -> "major"
InfoC -> "info"
StyleC -> "minor"
formatResult :: (ShowToken t, Ord t, ShowErrorComponent e) => Result t e -> Seq Issue
formatResult (Result errors checks) = allIssues
where
allIssues = errorMessages <> checkMessages
errorMessages = fmap errorToIssue errors
checkMessages = fmap checkToIssue checks
printResult :: (ShowToken t, Ord t, ShowErrorComponent e) => Result t e -> IO ()
printResult result = mapM_ output (formatResult result)
where
output value = do
B.putStr (encode value)
B.putStr (B.singleton 0x00)