2020-02-07 17:27:45 +01:00
// Vikunja is a to-do list application to facilitate your life.
2021-02-02 20:19:13 +01:00
// Copyright 2018-2021 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
2020-12-23 16:41:52 +01:00
// it under the terms of the GNU Affero General Public Licensee as published by
2019-12-04 20:39:56 +01:00
// 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
2020-12-23 16:41:52 +01:00
// GNU Affero General Public Licensee for more details.
2018-11-26 21:17:33 +01:00
//
2020-12-23 16:41:52 +01:00
// You should have received a copy of the GNU Affero General Public Licensee
2019-12-04 20:39:56 +01:00
// 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 (
2020-10-11 22:10:03 +02:00
"net/http"
"strconv"
2020-12-23 16:32:28 +01:00
"code.vikunja.io/api/pkg/db"
2018-10-31 13:42:38 +01:00
"code.vikunja.io/api/pkg/models"
2020-11-21 17:38:58 +01:00
auth2 "code.vikunja.io/api/pkg/modules/auth"
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
)
// UserList gets all information about a user
2018-11-12 16:46:35 +01:00
// @Summary Get users
2021-04-07 18:28:58 +02:00
// @Description Search for a user by its username, name or full email. Name (not username) or email require that the user has enabled this in their settings.
2018-11-12 16:46:35 +01:00
// @tags user
// @Accept json
// @Produce json
2021-04-07 18:28:58 +02:00
// @Param s query string false "The search criteria."
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."
2020-06-28 16:25:46 +02:00
// @Failure 400 {object} 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 {
2020-12-23 16:32:28 +01:00
search := c . QueryParam ( "s" )
s := db . NewSession ( )
defer s . Close ( )
users , err := user . ListUsers ( s , search )
2018-09-20 19:42:01 +02:00
if err != nil {
2020-12-23 16:32:28 +01:00
_ = s . Rollback ( )
return handler . HandleHTTPError ( err , c )
}
if err := s . Commit ( ) ; err != nil {
_ = s . Rollback ( )
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."
2020-06-28 16:25:46 +02:00
// @Failure 400 {object} web.HTTPError "Something's invalid."
// @Failure 401 {object} web.HTTPError "The user does not have the right to see the list."
2019-07-18 18:38:21 +02:00
// @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-11-21 17:38:58 +01:00
auth , err := auth2 . 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
2020-12-23 16:32:28 +01:00
s := db . NewSession ( )
defer s . Close ( )
canRead , _ , err := list . CanRead ( s , auth )
2019-07-18 18:38:21 +02:00
if err != nil {
2020-12-23 16:32:28 +01:00
_ = s . Rollback ( )
2019-07-18 18:38:21 +02:00
return handler . HandleHTTPError ( err , c )
}
if ! canRead {
return echo . ErrForbidden
}
2020-12-23 16:32:28 +01:00
search := c . QueryParam ( "s" )
users , err := models . ListUsersFromList ( s , & list , search )
2019-07-18 18:38:21 +02:00
if err != nil {
2020-12-23 16:32:28 +01:00
_ = s . Rollback ( )
return handler . HandleHTTPError ( err , c )
}
if err := s . Commit ( ) ; err != nil {
_ = s . Rollback ( )
2019-07-18 18:38:21 +02:00
return handler . HandleHTTPError ( err , c )
}
return c . JSON ( http . StatusOK , users )
}