-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
235 lines (177 loc) · 4.97 KB
/
errors.go
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
package libwekan
import (
"fmt"
)
type UserAlreadyExistsError struct {
user User
}
func (e UserAlreadyExistsError) Error() string {
return fmt.Sprintf("l'utilisateur existe déjà (UserID: %s, Username: %s)", e.user.ID, e.user.Username)
}
type UserNotFoundError struct {
key string
err error
}
func (e UserNotFoundError) Error() string {
return fmt.Sprintf("l'utilisateur n'est pas connu (%s)", e.key)
}
func (e UserNotFoundError) Unwrap() error {
return e.err
}
type BoardNotFoundError struct {
msg string
err error
}
func boardNotFoundWithSlug(slug BoardSlug) error {
return BoardNotFoundError{msg: fmt.Sprintf("le slug : '%s'", slug)}
}
func boardNotFoundWithId(boardID BoardID) error {
return BoardNotFoundError{msg: fmt.Sprintf("le boardID : '%s'", boardID)}
}
func boardNotFoundWithTitle(boardTitle BoardTitle) error {
return BoardNotFoundError{msg: fmt.Sprintf("le titre : '%s'", boardTitle)}
}
func (e BoardNotFoundError) Error() string {
return fmt.Sprintf("aucun tableau n'a été trouvé avec %s", e.msg)
}
func (e BoardNotFoundError) Unwrap() error {
return e.err
}
type NotPrivilegedError struct {
id UserID
err error
}
func (e NotPrivilegedError) Unwrap() error {
return e.err
}
func (e NotPrivilegedError) Error() string {
return fmt.Sprint("l'utilisateur n'est pas admin: id = "+e.id, e.err)
}
type ProtectedUserError struct {
id UserID
}
func (e ProtectedUserError) Error() string {
return fmt.Sprintf("cet action est interdite sur cet utilisateur (%s)", e.id)
}
type InsertEmptyRuleError struct {
}
func (e InsertEmptyRuleError) Error() string {
return "l'insertion d'un objet Rule vide est impossible"
}
type BoardLabelAlreadyExistsError struct {
boardLabel BoardLabel
board Board
}
func (e BoardLabelAlreadyExistsError) Error() string {
return fmt.Sprintf("un objet BoardLabel existe déjà dans la board (%s) avec le même nom (%s)", e.board.ID, e.boardLabel.Name)
}
type BoardLabelNotFoundError struct {
boardLabelID BoardLabelID
board Board
}
func (e BoardLabelNotFoundError) Error() string {
return fmt.Sprintf("l'objet BoardLabel (id=%s) n'a pas été trouvé dans la board (%s)", e.boardLabelID, e.board.ID)
}
type UnexpectedMongoError struct {
err error
}
func (e UnexpectedMongoError) Error() string {
return fmt.Sprint("erreur survenue lors de l'exécution de la requête : ", e.err)
}
func (e UnexpectedMongoError) Unwrap() error {
return e.err
}
type UnexpectedMongoDecodeError struct {
err error
}
func (e UnexpectedMongoDecodeError) Error() string {
return fmt.Sprint("erreur survenue lors du décodage du résultat de la requête : ", e.err)
}
func (e UnexpectedMongoDecodeError) Unwrap() error {
return e.err
}
type AlreadySetActivityError struct {
activityType string
}
func (e AlreadySetActivityError) Error() string {
return fmt.Sprintf("l'activité est déjà définie: activityType = %s", e.activityType)
}
type UnreachableMongoError struct {
err error
}
func (e UnreachableMongoError) Error() string {
return fmt.Sprint("la connexion a échoué : ", e.err)
}
func (e UnreachableMongoError) Unwrap() error {
return e.err
}
type InvalidMongoConfigurationError struct {
err error
}
func (e InvalidMongoConfigurationError) Error() string {
return fmt.Sprint("les paramètres de connexion sont invalides : ", e.err)
}
func (e InvalidMongoConfigurationError) Unwrap() error {
return e.err
}
type ForbiddenOperationError struct {
err error
}
func (e ForbiddenOperationError) Error() string {
return fmt.Sprint("operation interdite : ", e.err)
}
func (e ForbiddenOperationError) Unwrap() error {
return e.err
}
type NotImplemented struct {
method string
}
func (e NotImplemented) Error() string {
return "not implemented : " + e.method
}
type ListNotFoundError struct {
listID ListID
}
func (e ListNotFoundError) Error() string {
return fmt.Sprintf("la liste n'existe pas (ID: %s)", e.listID)
}
type CardNotFoundError struct {
cardID CardID
}
func (e CardNotFoundError) Error() string {
return fmt.Sprintf("la carte n'existe pas (ID: %s)", e.cardID)
}
type RuleNotFoundError struct {
ruleID RuleID
}
func (e RuleNotFoundError) Error() string {
return fmt.Sprintf("la règle n'existe pas (ID: %s)", e.ruleID)
}
type ActionNotFoundError struct {
actionId ActionID
}
func (e ActionNotFoundError) Error() string {
return fmt.Sprintf("l'action n'existe pas (ID: %s)", e.actionId)
}
type TriggerNotFoundError struct {
triggerId TriggerID
}
func (e TriggerNotFoundError) Error() string {
return fmt.Sprintf("le trigger n'existe pas (ID: %s)", e.triggerId)
}
type NothingDoneError struct{}
func (e NothingDoneError) Error() string {
return "le traitement n'a eu aucun effet"
}
type ActivityNotFoundError struct {
key string
}
func (e ActivityNotFoundError) Error() string {
return fmt.Sprintf("l'activité n'existe pas (ID: %s)", e.key)
}
type UserIsNotMemberError struct {
userID UserID
}
func (e UserIsNotMemberError) Error() string {
return fmt.Sprintf("cette action nécessite que l'utilisateur soit membre (id=%s)", e.userID)
}