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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
package core
import (
"fmt"
"github.com/MichaelMure/git-bug/entity"
)
type ImportEvent int
const (
_ ImportEvent = iota
// Bug has been created
ImportEventBug
// Comment has been created
ImportEventComment
// Comment has been edited
ImportEventCommentEdition
// Bug's status has changed
ImportEventStatusChange
// Bug's title has changed
ImportEventTitleEdition
// Bug's labels changed
ImportEventLabelChange
// Nothing happened on a Bug
ImportEventNothing
// Identity has been created
ImportEventIdentity
// Error happened during import
ImportEventError
)
// ImportResult is an event that is emitted during the import process, to
// allow calling code to report on what is happening, collect metrics or
// display meaningful errors if something went wrong.
type ImportResult struct {
Err error
Event ImportEvent
ID entity.Id
Reason string
}
func (er ImportResult) String() string {
switch er.Event {
case ImportEventBug:
return fmt.Sprintf("new issue: %s", er.ID)
case ImportEventComment:
return fmt.Sprintf("new comment: %s", er.ID)
case ImportEventCommentEdition:
return fmt.Sprintf("updated comment: %s", er.ID)
case ImportEventStatusChange:
return fmt.Sprintf("changed status: %s", er.ID)
case ImportEventTitleEdition:
return fmt.Sprintf("changed title: %s", er.ID)
case ImportEventLabelChange:
return fmt.Sprintf("changed label: %s", er.ID)
case ImportEventIdentity:
return fmt.Sprintf("new identity: %s", er.ID)
case ImportEventNothing:
if er.ID != "" {
return fmt.Sprintf("no action taken for event %s: %s", er.ID, er.Reason)
}
return fmt.Sprintf("no action taken: %s", er.Reason)
case ImportEventError:
if er.ID != "" {
return fmt.Sprintf("import error at id %s: %s", er.ID, er.Err.Error())
}
return fmt.Sprintf("import error: %s", er.Err.Error())
default:
panic("unknown import result")
}
}
func NewImportError(err error, id entity.Id) ImportResult {
return ImportResult{
Err: err,
ID: id,
Event: ImportEventError,
}
}
func NewImportNothing(id entity.Id, reason string) ImportResult {
return ImportResult{
ID: id,
Reason: reason,
Event: ImportEventNothing,
}
}
func NewImportBug(id entity.Id) ImportResult {
return ImportResult{
ID: id,
Event: ImportEventBug,
}
}
func NewImportComment(id entity.Id) ImportResult {
return ImportResult{
ID: id,
Event: ImportEventComment,
}
}
func NewImportCommentEdition(id entity.Id) ImportResult {
return ImportResult{
ID: id,
Event: ImportEventCommentEdition,
}
}
func NewImportStatusChange(id entity.Id) ImportResult {
return ImportResult{
ID: id,
Event: ImportEventStatusChange,
}
}
func NewImportLabelChange(id entity.Id) ImportResult {
return ImportResult{
ID: id,
Event: ImportEventLabelChange,
}
}
func NewImportTitleEdition(id entity.Id) ImportResult {
return ImportResult{
ID: id,
Event: ImportEventTitleEdition,
}
}
func NewImportIdentity(id entity.Id) ImportResult {
return ImportResult{
ID: id,
Event: ImportEventIdentity,
}
}
|