forked from documize/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
group.go
67 lines (57 loc) · 1.72 KB
/
group.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
// Copyright 2018 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
package group
import "github.com/documize/community/model"
// Group defines a user group.
type Group struct {
model.BaseEntity
OrgID string `json:"orgId"`
Name string `json:"name"`
Purpose string `json:"purpose"`
Members int `json:"members"` // read-only info
}
// Member defines user membership of a user group.
type Member struct {
ID uint64 `json:"id"`
OrgID string `json:"orgId"`
GroupID string `json:"groupId"`
UserID string `json:"userId"`
Firstname string `json:"firstname"` //read-only info
Lastname string `json:"lastname"` //read-only info
}
// Record details user membership of a user group.
type Record struct {
ID uint64 `json:"id"`
OrgID string `json:"orgId"`
GroupID string `json:"groupId"`
UserID string `json:"userId"`
Name string `json:"name"`
Purpose string `json:"purpose"`
}
// UserHasGroupMembership returns true if user belongs to specified group.
func UserHasGroupMembership(r []Record, groupID, userID string) bool {
for i := range r {
if r[i].GroupID == groupID && r[i].UserID == userID {
return true
}
}
return false
}
// FilterGroupRecords returns only those records matching group ID.
func FilterGroupRecords(r []Record, groupID string) (m []Record) {
m = []Record{}
for i := range r {
if r[i].GroupID == groupID {
m = append(m, r[i])
}
}
return
}