2018-11-26 21:17:33 +01:00
|
|
|
// Vikunja is a todo-list application to facilitate your life.
|
|
|
|
// Copyright 2018 Vikunja and contributors. All rights reserved.
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2018-08-30 08:58:09 +02:00
|
|
|
package models
|
|
|
|
|
2018-12-01 00:26:56 +01:00
|
|
|
import "code.vikunja.io/web"
|
|
|
|
|
2018-08-30 08:58:09 +02:00
|
|
|
// ReadAll gets all users who have access to a list
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Get users on a list
|
|
|
|
// @Description Returns a list with all users which have access on a given list.
|
|
|
|
// @tags sharing
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Param id path int true "List ID"
|
|
|
|
// @Param p query int false "The page number. Used for pagination. If not provided, the first page of results is returned."
|
|
|
|
// @Param s query string false "Search users by its name."
|
2019-01-03 23:22:06 +01:00
|
|
|
// @Security JWTKeyAuth
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Success 200 {array} models.UserWithRight "The users with the right they have."
|
2018-12-01 02:59:17 +01:00
|
|
|
// @Failure 403 {object} code.vikunja.io/web.HTTPError "No right to see the list."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /lists/{id}/users [get]
|
2019-03-08 22:31:37 +01:00
|
|
|
func (lu *ListUser) ReadAll(search string, a web.Auth, page int) (interface{}, error) {
|
2018-12-01 00:26:56 +01:00
|
|
|
u, err := getUserWithError(a)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-08-30 08:58:09 +02:00
|
|
|
// Check if the user has access to the list
|
2019-03-08 22:31:37 +01:00
|
|
|
l := &List{ID: lu.ListID}
|
2019-03-24 13:35:50 +01:00
|
|
|
canRead, err := l.CanRead(u)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !canRead {
|
2019-03-08 22:31:37 +01:00
|
|
|
return nil, ErrNeedToHaveListReadAccess{UserID: u.ID, ListID: lu.ListID}
|
2018-08-30 08:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get all users
|
2018-11-12 16:46:35 +01:00
|
|
|
all := []*UserWithRight{}
|
2018-12-01 00:26:56 +01:00
|
|
|
err = x.
|
2018-08-30 08:58:09 +02:00
|
|
|
Join("INNER", "users_list", "user_id = users.id").
|
2019-03-08 22:31:37 +01:00
|
|
|
Where("users_list.list_id = ?", lu.ListID).
|
2018-11-09 11:30:17 +01:00
|
|
|
Limit(getLimitFromPageIndex(page)).
|
2018-11-09 18:33:06 +01:00
|
|
|
Where("users.username LIKE ?", "%"+search+"%").
|
2018-08-30 08:58:09 +02:00
|
|
|
Find(&all)
|
|
|
|
|
|
|
|
return all, err
|
|
|
|
}
|