Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1423 from bubba/changelog-script
Browse files Browse the repository at this point in the history
Hack awful script for generating changelog
  • Loading branch information
alanz authored Dec 2, 2019
2 parents ae935f4 + 774b2c8 commit 1179e83
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions GenChangelogs.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/usr/bin/env cabal
{- cabal:
build-depends: base, process, html-conduit, http-conduit, xml-conduit, text
-}

{-# LANGUAGE OverloadedStrings #-}

import Control.Monad
import Data.Char
import Data.List
import qualified Data.Map.Lazy as M
import Network.HTTP.Simple
import System.Process
import qualified Data.Text as T
import qualified Data.Text.IO as T
import Text.HTML.DOM
import Text.XML.Cursor
import Text.XML (Element(..))

main = do
callCommand "git fetch --tags"
tags <- filter (isPrefixOf "0.") . lines <$>
readProcess "git" ["tag", "--list", "--sort=v:refname"] ""
messages <- lines <$> readProcess "git" [ "log",
, last tags <> "..HEAD"
, "--merges"
, "--revers",
, "--pretty=format:\"%s\""
] ""

let -- try to get "1334" out of "merge PR #1334"
prNums = map (filter isDigit) $
map head $
filter (not . null) $
map (filter (isPrefixOf "#") . words) messages
prUrls = map ("https://github.com/haskell/haskell-ide-engine/pull/" <>) prNums

(flip mapM_) prUrls $ \url -> do
body <- getResponseBody <$> httpLBS (parseRequest_ url)
let cursor = fromDocument (parseLBS body)

titles = (descendant >=> attributeIs "class" "js-issue-title" >=> child >=> content) cursor
title = T.unpack $ T.strip $ head titles

checkAuthor :: Element -> Bool
checkAuthor e = maybe False (T.isInfixOf "author") (M.lookup "class" (elementAttributes e))
authors = (descendant >=> checkElement checkAuthor >=> child >=> content) cursor
author = T.unpack $ T.strip $ authors !! 2 -- second author is the pr author

-- generate markdown
putStrLn $ "- [" <> title <> "](" <> url <> ") (@" <> author <> ")"

0 comments on commit 1179e83

Please sign in to comment.