aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/core/export.go
blob: 5114943025b9b674e756988348b3956af386d083 (plain) (blame)
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
package core

import "fmt"

type EventStatus int

const (
	_ EventStatus = iota
	EventStatusBug
	EventStatusComment
	EventStatusCommentEdition
	EventStatusStatusChange
	EventStatusTitleEdition
	EventStatusLabelChange
	EventStatusNothing
)

type ExportResult struct {
	Err    error
	Event  EventStatus
	ID     string
	Reason string
}

func (er ExportResult) String() string {
	switch er.Event {
	case EventStatusBug:
		return "new issue"
	case EventStatusComment:
		return "new comment"
	case EventStatusCommentEdition:
		return "updated comment"
	case EventStatusStatusChange:
		return "changed status"
	case EventStatusTitleEdition:
		return "changed title"
	case EventStatusLabelChange:
		return "changed label"
	case EventStatusNothing:
		return fmt.Sprintf("no event: %v", er.Reason)
	default:
		panic("unknown export result")
	}
}

func NewExportError(err error, reason string) ExportResult {
	return ExportResult{
		Err:    err,
		Reason: reason,
	}
}

func NewExportNothing(id string, reason string) ExportResult {
	return ExportResult{
		ID:     id,
		Reason: reason,
		Event:  EventStatusNothing,
	}
}

func NewExportBug(id string) ExportResult {
	return ExportResult{
		ID:    id,
		Event: EventStatusBug,
	}
}

func NewExportComment(id string) ExportResult {
	return ExportResult{
		ID:    id,
		Event: EventStatusComment,
	}
}

func NewExportCommentEdition(id string) ExportResult {
	return ExportResult{
		ID:    id,
		Event: EventStatusCommentEdition,
	}
}

func NewExportStatusChange(id string) ExportResult {
	return ExportResult{
		ID:    id,
		Event: EventStatusStatusChange,
	}
}

func NewExportLabelChange(id string) ExportResult {
	return ExportResult{
		ID:    id,
		Event: EventStatusLabelChange,
	}
}

func NewExportTitleEdition(id string) ExportResult {
	return ExportResult{
		ID:    id,
		Event: EventStatusTitleEdition,
	}
}