Skip to content

Commit 2c3b565

Browse files
committed
get-merges
1 parent 8ff7727 commit 2c3b565

File tree

1 file changed

+83
-55
lines changed

1 file changed

+83
-55
lines changed

Modules/Scripts/Get-Merges.ps1

+83-55
Original file line numberDiff line numberDiff line change
@@ -64,30 +64,94 @@ Begin
6464
$a = Get-Content .\.git\FETCH_HEAD | Select-String -Pattern '((?:https|ssh)://.+?/)'
6565
if ($a.Matches.Success)
6666
{
67-
$url = $a.Matches.Groups[1].Value + 'jira/browse/'
68-
return $url
69-
70-
<#
71-
$request = [System.Net.WebRequest]::Create($url)
72-
$request.Timeout = 2000
73-
try {
74-
$response = $request.getResponse()
75-
$response
76-
if ($response.StatusCode -eq "200")
77-
{
78-
return $url
79-
}
80-
} catch {
81-
$Error
82-
}
83-
#>
67+
return $a.Matches.Groups[1].Value + 'jira/rest/api/2/issue/'
8468
}
8569
}
8670

8771
Write-Verbose 'could not determine remote URL'
8872
return $null
8973
}
9074

75+
function ReportRaw
76+
{
77+
git log --merges --first-parent $Branch --after $Since `
78+
--pretty=format:"%h %<(12,trunc)%aN %C(white)%<(15)%ar%Creset %s %Cred%<(15)%D%Creset"
79+
}
80+
81+
function ReportPretty
82+
{
83+
$lines = git log --merges --first-parent $Branch --after $Since --date=format-local:'%b %d %H:%M:%S' `--pretty=format:"%h~%<(15,trunc)%aN~%ad~%s"
84+
foreach ($line in $lines)
85+
{
86+
Write-Verbose $line
87+
88+
$parts = $line.Split('~')
89+
90+
$a = $parts[3] | Select-String `
91+
-Pattern "Merge pull request (#[0-9]+) in .+ from (?:(?:\w+/)?([A-Z]+-[0-9]+)[-_ ]?(.+)? to $Branch)"
92+
93+
if ($a.Matches.Success)
94+
{
95+
$ago = $parts[2]
96+
if ($ago.Length -lt 12) { $ago = $ago.PadRight(12) }
97+
98+
$groups = $a.Matches.Groups
99+
$ticket = ''
100+
if ($a.Matches.Groups[2].Value)
101+
{
102+
$key = $a.Matches.Groups[2].Value
103+
if ($remote.StartsWith('http'))
104+
{
105+
$response = curl -s "$($remote)$key" | ConvertFrom-Json
106+
$status = $response.fields.status.name.PadRight(8)
107+
108+
$key = $key.PadRight(12)
109+
$ticket = " $key $status"
110+
111+
if ($response.fields.issueType.name -eq "Story")
112+
{
113+
Write-Host -NoNewLine $parts[1]
114+
Write-Host -NoNewLine ' '
115+
Write-Host -NoNewLine $ago
116+
Write-Host -NoNewLine ' '
117+
Write-Host -NoNewLine $key.PadRight(12)
118+
Write-Host -NoNewline ' '
119+
120+
switch ($status)
121+
{
122+
"Verified" { Write-Host -NoNewline $status.PadRight(8) -ForegroundColor Green }
123+
"Passed" { Write-Host -NoNewline $status.PadRight(8) -ForegroundColor Yellow }
124+
default { Write-Host -NoNewline $status.PadRight(8) -ForegroundColor Cyan }
125+
}
126+
127+
Write-Host " PR $($groups[1].Value) $($groups[3].Value)"
128+
}
129+
else
130+
{
131+
Write-Host "$($parts[1]) $($ago)$ticket PR $($groups[1].Value) $($groups[3].Value)" -ForegroundColor DarkGray
132+
}
133+
}
134+
else
135+
{
136+
$ticket = " $key"
137+
Write-Host "$($parts[1]) $($ago)$ticket PR $($groups[1].Value) $($groups[3].Value)"
138+
}
139+
}
140+
else
141+
{
142+
Write-Host "$($parts[1]) $($ago) PR $($groups[1].Value) $($groups[3].Value)"
143+
}
144+
}
145+
else
146+
{
147+
# should execute on first $line
148+
Write-Verbose "fallback: $line"
149+
ReportRaw
150+
break
151+
}
152+
}
153+
}
154+
91155
function Report
92156
{
93157
param (
@@ -116,7 +180,7 @@ Begin
116180
}
117181

118182
Write-Host
119-
Write-Host "Merges in $Project to $Branch since $Since" -ForegroundColor Green
183+
Write-Host "Merges in $Project to $Branch since $Since" -ForegroundColor Blue
120184
Write-Host
121185

122186
$remote = ReadRemote
@@ -127,47 +191,11 @@ Begin
127191
}
128192
else
129193
{
130-
$lines = git log --merges --first-parent $Branch --after $Since --date=format-local:'%b %d %H:%M:%S' `--pretty=format:"%h~%<(15,trunc)%aN~%ad~%s"
131-
foreach ($line in $lines)
132-
{
133-
Write-Verbose $line
134-
135-
$parts = $line.Split('~')
136-
137-
$a = $parts[3] | Select-String `
138-
-Pattern "Merge pull request (#[0-9]+) in .+ from (?:(?:\w+/)?([A-Z]+-[0-9]+)[-_ ]?(.+)? to $Branch)"
139-
140-
if ($a.Matches.Success)
141-
{
142-
$ago = $parts[2]
143-
if ($ago.Length -lt 12) { $ago = $ago.PadRight(12) }
144-
145-
$groups = $a.Matches.Groups
146-
$uri = ''
147-
if ($a.Matches.Groups[2].Value)
148-
{
149-
if ($remote.StartsWith('http')) { $uri = " $remote$($a.Matches.Groups[2].Value)" }
150-
else { $uri = " $($a.Matches.Groups[2].Value)" }
151-
}
152-
153-
Write-Host "$($parts[1]) $($ago)$uri PR $($groups[1].Value) $($groups[3].Value) "
154-
}
155-
else {
156-
Write-Verbose "fallback: $line"
157-
ReportRaw
158-
break
159-
}
160-
}
194+
ReportPretty
161195
}
162196

163197
Pop-Location
164198
}
165-
166-
function ReportRaw
167-
{
168-
git log --merges --first-parent $Branch --after $Since `
169-
--pretty=format:"%h %<(12,trunc)%aN %C(white)%<(15)%ar%Creset %s %Cred%<(15)%D%Creset"
170-
}
171199
}
172200
Process
173201
{

0 commit comments

Comments
 (0)