@@ -3,11 +3,13 @@ package itracker
3
3
import (
4
4
"encoding/json"
5
5
"fmt"
6
+ "sync"
6
7
"time"
7
8
)
8
9
9
10
type Bug struct {
10
11
* Bugzilla
12
+ sync.Mutex
11
13
Blocks []int `json:"blocks"`
12
14
IsCcAccessible bool `json:"is_cc_accessible"`
13
15
Keywords []string `json:"keywords"`
@@ -47,6 +49,7 @@ type Bug struct {
47
49
Component string `json:"component"`
48
50
TargetMilestone string `json:"target_milestone"`
49
51
Product string `json:"product"`
52
+ History []* History `json:"history"`
50
53
// custom fields
51
54
CustomFields interface {}
52
55
}
@@ -62,6 +65,20 @@ type Flag struct {
62
65
CreationDate time.Time `json:"creation_date"`
63
66
}
64
67
68
+ type History struct {
69
+ When time.Time `json:"when"`
70
+ Who string `json:"who"`
71
+ Changes []struct {
72
+ Added string `json:"added"`
73
+ FieldName string `json:"field_name"`
74
+ Removed string `json:"removed"`
75
+ } `json:"changes"`
76
+ }
77
+
78
+ type HistoryList struct {
79
+ History []History `json:"history"`
80
+ }
81
+
65
82
type Bugzilla struct {
66
83
url string
67
84
endpoint string
@@ -176,3 +193,47 @@ func (b *Bugzilla) GetUser(id string) (*User, error) {
176
193
u .Users [0 ].Bugzilla = b
177
194
return & u .Users [0 ], nil
178
195
}
196
+
197
+ func (bug * Bug ) GetHistory () error {
198
+ bug .Lock ()
199
+ defer bug .Unlock ()
200
+
201
+ // don't fetch if already available
202
+ if len (bug .History ) > 0 {
203
+ return nil
204
+ }
205
+
206
+ endpoint := fmt .Sprintf ("bug/%d/history" , bug .ID )
207
+ body , err := bug .get (endpoint , nil )
208
+ if err != nil {
209
+ return err
210
+ }
211
+
212
+ type _bugs struct {
213
+ Bugs []struct {
214
+ History []* History `json:"history"`
215
+ } `json:"bugs"`
216
+ Alias string `json:"alias"`
217
+ ID int `json:"id"`
218
+ }
219
+
220
+ var bugs _bugs
221
+
222
+ if err := json .Unmarshal (body , & bugs ); err != nil {
223
+ return err
224
+ }
225
+
226
+ if len (bugs .Bugs ) == 0 {
227
+ return fmt .Errorf ("Cannot find history for bug" )
228
+ }
229
+ if len (bugs .Bugs ) > 1 {
230
+ return fmt .Errorf ("Unexpected output, expected 1, got %d" , len (bugs .Bugs ))
231
+ }
232
+
233
+ t := bugs .Bugs [0 ]
234
+ for _ , h := range t .History {
235
+ bug .History = append (bug .History , h )
236
+ }
237
+
238
+ return nil
239
+ }
0 commit comments