-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.go
61 lines (49 loc) · 1.26 KB
/
notes.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
package notes
import (
"fmt"
)
const (
validationError = "%s did not provide required value(s)"
)
type NotesList struct {
Id int `json:"id" db:"id"`
Title string `json:"title" db:"title" binding:"required"`
Description string `json:"description" db:"description"`
}
type UsersList struct {
Id int
UserId int
ListId int
}
type NotesItem struct {
Id int `json:"id" db:"id"`
Title string `json:"title" db:"title" binding:"required"`
Description string `json:"description" db:"description"`
Archived bool `json:"archived" db:"archived"`
}
type ListsItem struct {
Id int
ListId int
ItemId int
}
type UpdateListInput struct {
Title *string `json:"title"`
Description *string `json:"description"`
}
func (inp UpdateListInput) Validate() (err error) {
if inp.Title == nil && inp.Description == nil {
err = fmt.Errorf(validationError, "update list input")
}
return
}
type UpdateItemInput struct {
Title *string `json:"title"`
Description *string `json:"description"`
Archived *bool `json:"archived"`
}
func (inp UpdateItemInput) Validate() (err error) {
if inp.Title == nil && inp.Description == nil && inp.Archived == nil {
err = fmt.Errorf(validationError, "update item input")
}
return
}