-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
111 lines (93 loc) · 2.59 KB
/
models.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
package modwithfriends
import (
"errors"
"fmt"
"time"
)
var (
ErrEntityNotFound = errors.New("Entity does not exist")
ErrDuplicateEntityFound = errors.New("Entity already exist")
)
type ChatID int
type ModuleCode string
type Model struct {
CreatedAt time.Time `json:"createdAt" db:"created_at"`
UpdatedAt time.Time `json:"updatedAt" db:"updated_at"`
}
type Group struct {
ID string `json:"groupId" db:"id"`
ModuleCode ModuleCode `json:"moduleCode" db:"module_id"`
InviteLink *string `json:"inviteLink" db:"invite_link"`
Members []ChatID `json:"members"`
Model
}
type NumericComparator string
var (
LessThan = NumericComparator("LESS_THAN")
LessThanOrEqual = NumericComparator("LESS_THAN_OR_EQUAL")
Equal = NumericComparator("EQUAL")
MoreThanOrEqual = NumericComparator("MORE_THAN_OR_EQUAL")
MoreThan = NumericComparator("MORE_THAN")
)
type MemberCriteriaQuery struct {
Condition NumericComparator
Count int
}
func (mcq MemberCriteriaQuery) String() (string, error) {
const baseQuery = "%s %d"
switch mcq.Condition {
case LessThan:
return fmt.Sprintf(baseQuery, "<", mcq.Count), nil
case LessThanOrEqual:
return fmt.Sprintf(baseQuery, "<=", mcq.Count), nil
case Equal:
return fmt.Sprintf(baseQuery, "=", mcq.Count), nil
case MoreThanOrEqual:
return fmt.Sprintf(baseQuery, ">=", mcq.Count), nil
case MoreThan:
return fmt.Sprintf(baseQuery, ">", mcq.Count), nil
default:
return "", errors.New("Member criteria query's condition is invalid")
}
}
type GroupQuery struct {
*ModuleCode
*MemberCriteriaQuery
Invited bool
}
type UserService interface {
Users() ([]ChatID, error)
CreateUser(chatID ChatID) error
Groups(chatID ChatID) ([]Group, error)
DeleteUser(chatID ChatID) error
}
type ModuleService interface {
Modules() ([]ModuleCode, error)
Exist(code ModuleCode) (bool, error)
CreateModule(code ModuleCode) error
DeleteModule(code ModuleCode) error
}
type GroupService interface {
Groups() ([]Group, error)
Group(groupID string) (Group, error)
GroupsBy(query GroupQuery) ([]Group, error)
CreateGroup(g Group) (string, error)
UpdateGroup(groupID string, updatedGroup Group) error
DeleteGroup(groupID string) error
}
type BroadcastFailure struct {
User ChatID `json:"user"`
Reason error `json:"-"`
ReasonString string `json:"reason"`
}
type BroadcastRate struct {
Rate int
Delay time.Duration
}
type Bot interface {
Start()
Broadcast(chatIDs []ChatID, msg string, opts *BroadcastRate) []BroadcastFailure
}
type EmailService interface {
Send(subject string, recipients []string, message string) error
}