@@ -64,30 +64,94 @@ Begin
64
64
$a = Get-Content .\.git\FETCH_HEAD | Select-String - Pattern ' ((?:https|ssh)://.+?/)'
65
65
if ($a.Matches.Success )
66
66
{
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/'
84
68
}
85
69
}
86
70
87
71
Write-Verbose ' could not determine remote URL'
88
72
return $null
89
73
}
90
74
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
+
91
155
function Report
92
156
{
93
157
param (
@@ -116,7 +180,7 @@ Begin
116
180
}
117
181
118
182
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
120
184
Write-Host
121
185
122
186
$remote = ReadRemote
@@ -127,47 +191,11 @@ Begin
127
191
}
128
192
else
129
193
{
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
161
195
}
162
196
163
197
Pop-Location
164
198
}
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
- }
171
199
}
172
200
Process
173
201
{
0 commit comments