2018-06-10 14:14:10 +02:00
|
|
|
package models
|
|
|
|
|
2018-06-10 14:22:37 +02:00
|
|
|
// List represents a list of items
|
2018-06-10 14:14:10 +02:00
|
|
|
type List struct {
|
|
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
|
|
|
|
Title string `xorm:"varchar(250)" json:"title"`
|
|
|
|
Description string `xorm:"varchar(1000)" json:"description"`
|
2018-06-13 12:18:55 +02:00
|
|
|
OwnerID int64 `xorm:"int(11)" json:"-"`
|
2018-07-03 08:26:28 +02:00
|
|
|
NamespaceID int64 `xorm:"int(11)" json:"-"`
|
2018-06-10 15:55:56 +02:00
|
|
|
|
2018-07-03 08:48:28 +02:00
|
|
|
Owner User `xorm:"-" json:"owner"`
|
2018-06-10 19:49:40 +02:00
|
|
|
Items []*ListItem `xorm:"-" json:"items"`
|
2018-07-04 08:15:47 +02:00
|
|
|
|
2018-07-04 19:21:04 +02:00
|
|
|
Created int64 `xorm:"created" json:"created"`
|
|
|
|
Updated int64 `xorm:"updated" json:"updated"`
|
2018-07-08 22:50:01 +02:00
|
|
|
|
|
|
|
CRUDable `xorm:"-" json:"-"`
|
2018-07-10 14:02:23 +02:00
|
|
|
Rights `xorm:"-" json:"-"`
|
2018-06-10 14:14:10 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 19:49:27 +02:00
|
|
|
// Lists is a multiple of list
|
|
|
|
type Lists []List
|
|
|
|
|
|
|
|
// AfterLoad loads the owner and list items
|
2018-07-07 14:19:34 +02:00
|
|
|
func (l *List) AfterLoad() {
|
|
|
|
|
|
|
|
// Get the owner
|
|
|
|
l.Owner, _, _ = GetUserByID(l.OwnerID)
|
|
|
|
|
|
|
|
// Get the list items
|
|
|
|
l.Items, _ = GetItemsByListID(l.ID)
|
|
|
|
}
|
|
|
|
|
2018-06-10 14:22:37 +02:00
|
|
|
// GetListByID returns a list by its ID
|
2018-07-04 08:15:47 +02:00
|
|
|
func GetListByID(id int64) (list List, err error) {
|
2018-07-09 19:49:27 +02:00
|
|
|
exists, err := x.ID(id).Get(&list)
|
2018-06-10 14:14:10 +02:00
|
|
|
if err != nil {
|
2018-07-06 08:40:35 +02:00
|
|
|
return list, err
|
2018-06-10 14:14:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if !exists {
|
2018-07-06 08:40:35 +02:00
|
|
|
return list, ErrListDoesNotExist{ID: id}
|
2018-06-10 14:14:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return list, nil
|
|
|
|
}
|
|
|
|
|
2018-07-10 14:02:23 +02:00
|
|
|
// GetListsByNamespaceID gets all lists in a namespace
|
2018-07-03 08:26:28 +02:00
|
|
|
func GetListsByNamespaceID(nID int64) (lists []*List, err error) {
|
2018-07-04 08:56:52 +02:00
|
|
|
err = x.Where("namespace_id = ?", nID).Find(&lists)
|
|
|
|
return lists, err
|
2018-07-03 08:48:28 +02:00
|
|
|
}
|
2018-07-08 22:50:01 +02:00
|
|
|
|
2018-07-11 13:00:00 +02:00
|
|
|
// ReadAll gets all lists a user has access to
|
2018-07-10 14:02:23 +02:00
|
|
|
func (l *List) ReadAll(user *User) (interface{}, error) {
|
2018-07-08 22:50:01 +02:00
|
|
|
lists := Lists{}
|
|
|
|
fullUser, _, err := GetUserByID(user.ID)
|
|
|
|
if err != nil {
|
2018-07-09 19:49:27 +02:00
|
|
|
return lists, err
|
2018-07-08 22:50:01 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 19:49:27 +02:00
|
|
|
// TODO: namespaces...
|
2018-07-08 22:50:01 +02:00
|
|
|
err = x.Select("list.*").
|
|
|
|
Join("LEFT", "team_list", "list.id = team_list.list_id").
|
|
|
|
Join("LEFT", "team_members", "team_members.team_id = team_list.team_id").
|
|
|
|
Where("team_members.user_id = ?", fullUser.ID).
|
|
|
|
Or("list.owner_id = ?", fullUser.ID).
|
2018-07-09 19:49:27 +02:00
|
|
|
Find(&lists)
|
2018-07-08 22:50:01 +02:00
|
|
|
|
2018-07-09 19:49:27 +02:00
|
|
|
return lists, err
|
2018-07-08 22:50:01 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 19:49:27 +02:00
|
|
|
// ReadOne gets one list by its ID
|
2018-07-08 22:50:01 +02:00
|
|
|
func (l *List) ReadOne(id int64) (err error) {
|
|
|
|
*l, err = GetListByID(id)
|
|
|
|
return
|
|
|
|
}
|
2018-07-09 23:17:19 +02:00
|
|
|
|
2018-07-10 14:02:23 +02:00
|
|
|
// IsAdmin returns whether the user has admin rights on the list or not
|
2018-07-09 23:17:19 +02:00
|
|
|
func (l *List) IsAdmin(user *User) bool {
|
|
|
|
// Owners are always admins
|
|
|
|
if l.Owner.ID == user.ID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check Team rights
|
|
|
|
// aka "is the user in a team which has admin rights?"
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
// Check Namespace rights
|
|
|
|
// TODO
|
|
|
|
|
2018-07-11 02:13:53 +02:00
|
|
|
// Check individual rights
|
|
|
|
// TODO
|
|
|
|
|
2018-07-09 23:17:19 +02:00
|
|
|
return false
|
2018-07-10 14:02:23 +02:00
|
|
|
}
|
2018-07-11 02:13:53 +02:00
|
|
|
|
|
|
|
// CanWrite return whether the user can write on that list or not
|
|
|
|
func (l *List) CanWrite(user *User) bool {
|
|
|
|
// Admins always have write access
|
|
|
|
if l.IsAdmin(user) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Owners always have write access
|
|
|
|
if l.Owner.ID == user.ID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check Namespace rights
|
|
|
|
// TODO
|
|
|
|
// TODO find a way to prioritize: what happens if a user has namespace write access but is not in that list?
|
|
|
|
|
|
|
|
// Check Team rights
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
// Check individual rights
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
return false
|
2018-07-11 02:40:29 +02:00
|
|
|
}
|