2020-02-07 17:27:45 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
2020-01-09 18:33:22 +01:00
|
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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-11-26 21:17:33 +01:00
|
|
|
|
2018-09-20 19:42:01 +02:00
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
2018-10-31 13:42:38 +01:00
|
|
|
"code.vikunja.io/api/pkg/models"
|
2020-01-26 18:08:06 +01:00
|
|
|
"code.vikunja.io/api/pkg/user"
|
2018-12-01 00:26:56 +01:00
|
|
|
"code.vikunja.io/web/handler"
|
2019-05-07 21:42:24 +02:00
|
|
|
"github.com/labstack/echo/v4"
|
2018-09-20 19:42:01 +02:00
|
|
|
"net/http"
|
2019-07-18 18:38:21 +02:00
|
|
|
"strconv"
|
2018-09-20 19:42:01 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// UserList gets all information about a user
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Get users
|
|
|
|
// @Description Lists all users (without emailadresses). Also possible to search for a specific user.
|
|
|
|
// @tags user
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Param s query string false "Search for a user by its name."
|
2019-01-03 23:22:06 +01:00
|
|
|
// @Security JWTKeyAuth
|
2020-01-27 18:28:17 +01:00
|
|
|
// @Success 200 {array} user.User "All (found) users."
|
2018-12-01 02:59:17 +01:00
|
|
|
// @Failure 400 {object} code.vikunja.io/web.HTTPError "Something's invalid."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Failure 500 {object} models.Message "Internal server error."
|
|
|
|
// @Router /users [get]
|
2018-09-20 19:42:01 +02:00
|
|
|
func UserList(c echo.Context) error {
|
|
|
|
s := c.QueryParam("s")
|
2020-01-26 18:08:06 +01:00
|
|
|
users, err := user.ListUsers(s)
|
2018-09-20 19:42:01 +02:00
|
|
|
if err != nil {
|
2018-12-01 00:26:56 +01:00
|
|
|
return handler.HandleHTTPError(err, c)
|
2018-09-20 19:42:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Obfuscate the mailadresses
|
|
|
|
for in := range users {
|
|
|
|
users[in].Email = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(http.StatusOK, users)
|
|
|
|
}
|
2019-07-18 18:38:21 +02:00
|
|
|
|
|
|
|
// ListUsersForList returns a list with all users who have access to a list, regardless of the method the list was shared with them.
|
|
|
|
// @Summary Get users
|
|
|
|
// @Description Lists all users (without emailadresses). Also possible to search for a specific user.
|
|
|
|
// @tags list
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Param s query string false "Search for a user by its name."
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Param id path int true "List ID"
|
2020-01-27 18:28:17 +01:00
|
|
|
// @Success 200 {array} user.User "All (found) users."
|
2019-07-18 18:38:21 +02:00
|
|
|
// @Failure 400 {object} code.vikunja.io/web.HTTPError "Something's invalid."
|
|
|
|
// @Failure 401 {object} code.vikunja.io/web.HTTPError "The user does not have the right to see the list."
|
|
|
|
// @Failure 500 {object} models.Message "Internal server error."
|
|
|
|
// @Router /lists/{id}/listusers [get]
|
|
|
|
func ListUsersForList(c echo.Context) error {
|
|
|
|
listID, err := strconv.ParseInt(c.Param("list"), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return handler.HandleHTTPError(err, c)
|
|
|
|
}
|
|
|
|
|
|
|
|
list := models.List{ID: listID}
|
2020-05-12 15:51:48 +02:00
|
|
|
auth, err := GetAuthFromClaims(c)
|
2019-07-18 18:38:21 +02:00
|
|
|
if err != nil {
|
|
|
|
return handler.HandleHTTPError(err, c)
|
|
|
|
}
|
2020-05-12 15:51:48 +02:00
|
|
|
|
|
|
|
canRead, err := list.CanRead(auth)
|
2019-07-18 18:38:21 +02:00
|
|
|
if err != nil {
|
|
|
|
return handler.HandleHTTPError(err, c)
|
|
|
|
}
|
|
|
|
if !canRead {
|
|
|
|
return echo.ErrForbidden
|
|
|
|
}
|
|
|
|
|
|
|
|
s := c.QueryParam("s")
|
|
|
|
users, err := models.ListUsersFromList(&list, s)
|
|
|
|
if err != nil {
|
|
|
|
return handler.HandleHTTPError(err, c)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.JSON(http.StatusOK, users)
|
|
|
|
}
|