github-0.30.0.2: src/GitHub/Data/Webhooks/Validate.hs
-- |
-- Verification of incomming webhook payloads, as described at
-- <https://developer.github.com/webhooks/securing/>
module GitHub.Data.Webhooks.Validate (
isValidPayload
) where
import GitHub.Internal.Prelude
import Prelude ()
import Crypto.Hash.SHA1 (hmac)
import Data.ByteString (ByteString)
import qualified Data.ByteString.Base16 as Hex
import qualified Data.Text.Encoding as TE
-- | Validates a given payload against a given HMAC hexdigest using a given
-- secret.
-- Returns 'True' iff the given hash is non-empty and it's a valid signature of
-- the payload.
isValidPayload
:: Text -- ^ the secret
-> Maybe Text -- ^ the hash provided by the remote party
-- in @X-Hub-Signature@ (if any),
-- including the 'sha1=...' prefix
-> ByteString -- ^ the body
-> Bool
isValidPayload secret shaOpt payload = maybe False (sign ==) shaOptBS
where
shaOptBS = TE.encodeUtf8 <$> shaOpt
hexDigest = Hex.encode
hm = hmac (TE.encodeUtf8 secret) payload
sign = "sha1=" <> hexDigest hm