Skip to content

Commit ed24339

Browse files
committedMay 23, 2020
bugzilla: Add support to get bug history
Signed-off-by: Santosh Sivaraj <santosh@fossix.org>
1 parent 38766d2 commit ed24339

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed
 

‎bugzilla.go

+61
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ package itracker
33
import (
44
"encoding/json"
55
"fmt"
6+
"sync"
67
"time"
78
)
89

910
type Bug struct {
1011
*Bugzilla
12+
sync.Mutex
1113
Blocks []int `json:"blocks"`
1214
IsCcAccessible bool `json:"is_cc_accessible"`
1315
Keywords []string `json:"keywords"`
@@ -47,6 +49,7 @@ type Bug struct {
4749
Component string `json:"component"`
4850
TargetMilestone string `json:"target_milestone"`
4951
Product string `json:"product"`
52+
History []*History `json:"history"`
5053
// custom fields
5154
CustomFields interface{}
5255
}
@@ -62,6 +65,20 @@ type Flag struct {
6265
CreationDate time.Time `json:"creation_date"`
6366
}
6467

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+
6582
type Bugzilla struct {
6683
url string
6784
endpoint string
@@ -176,3 +193,47 @@ func (b *Bugzilla) GetUser(id string) (*User, error) {
176193
u.Users[0].Bugzilla = b
177194
return &u.Users[0], nil
178195
}
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

Comments
 (0)
Please sign in to comment.