forked from haskell/haskell-ide-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GenChangelogs.hs
executable file
·51 lines (43 loc) · 1.9 KB
/
GenChangelogs.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env cabal
{- cabal:
build-depends: base, process, html-conduit, http-conduit, xml-conduit, text, containers
-}
{-# 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"
, "--reverse"
, "--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 <> ")"