2014-04-30 21:48:01 -06:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-24 12:00:29 -07:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2014-04-30 21:48:01 -06:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-04 15:16:42 -07:00
|
|
|
package user
|
2014-04-30 21:48:01 -06:00
|
|
|
|
|
|
|
import (
|
2018-10-22 20:57:42 -06:00
|
|
|
"net/http"
|
2017-02-10 21:00:01 -07:00
|
|
|
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/models"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-09 21:41:51 -07:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2020-01-24 12:00:29 -07:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2014-04-30 21:48:01 -06:00
|
|
|
)
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// Search search users
|
2016-03-13 16:49:16 -06:00
|
|
|
func Search(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation GET /users/search user userSearch
|
|
|
|
// ---
|
|
|
|
// summary: Search for users
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: q
|
|
|
|
// in: query
|
|
|
|
// description: keyword
|
|
|
|
// type: string
|
2018-10-18 02:44:51 -06:00
|
|
|
// - name: uid
|
|
|
|
// in: query
|
|
|
|
// description: ID of the user to search for
|
|
|
|
// type: integer
|
2018-10-20 21:40:42 -06:00
|
|
|
// format: int64
|
2020-01-24 12:00:29 -07:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
2017-11-13 00:02:25 -07:00
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-08 22:57:38 -06:00
|
|
|
// description: page size of results
|
2017-11-13 00:02:25 -07:00
|
|
|
// type: integer
|
|
|
|
// responses:
|
|
|
|
// "200":
|
2018-09-21 02:56:26 -06:00
|
|
|
// description: "SearchResults of a successful search"
|
|
|
|
// schema:
|
|
|
|
// type: object
|
|
|
|
// properties:
|
|
|
|
// ok:
|
|
|
|
// type: boolean
|
|
|
|
// data:
|
|
|
|
// type: array
|
|
|
|
// items:
|
|
|
|
// "$ref": "#/definitions/User"
|
2019-12-20 10:07:12 -07:00
|
|
|
|
2020-06-21 02:22:06 -06:00
|
|
|
listOptions := utils.GetListOptions(ctx)
|
|
|
|
|
2021-11-24 02:49:20 -07:00
|
|
|
users, maxResults, err := user_model.SearchUsers(&user_model.SearchUserOptions{
|
2022-03-22 01:03:22 -06:00
|
|
|
Actor: ctx.Doer,
|
2021-08-11 09:08:52 -06:00
|
|
|
Keyword: ctx.FormTrim("q"),
|
2021-07-28 19:42:15 -06:00
|
|
|
UID: ctx.FormInt64("uid"),
|
2021-11-24 02:49:20 -07:00
|
|
|
Type: user_model.UserTypeIndividual,
|
2020-06-21 02:22:06 -06:00
|
|
|
ListOptions: listOptions,
|
2021-08-30 12:00:59 -06:00
|
|
|
})
|
2014-04-30 21:48:01 -06:00
|
|
|
if err != nil {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
|
2014-08-26 04:11:15 -06:00
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
2014-04-30 21:48:01 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-06-21 02:22:06 -06:00
|
|
|
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
|
2021-08-12 06:43:08 -06:00
|
|
|
ctx.SetTotalCountHeader(maxResults)
|
2020-06-21 02:22:06 -06:00
|
|
|
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.JSON(http.StatusOK, map[string]interface{}{
|
2014-04-30 21:48:01 -06:00
|
|
|
"ok": true,
|
2022-03-22 01:03:22 -06:00
|
|
|
"data": convert.ToUsers(ctx.Doer, users),
|
2014-04-30 21:48:01 -06:00
|
|
|
})
|
|
|
|
}
|
2014-11-18 09:07:16 -07:00
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// GetInfo get user's information
|
2016-03-13 16:49:16 -06:00
|
|
|
func GetInfo(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation GET /users/{username} user userGet
|
|
|
|
// ---
|
|
|
|
// summary: Get a user
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user to get
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/User"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 10:07:12 -07:00
|
|
|
|
2022-05-20 08:08:52 -06:00
|
|
|
if !user_model.IsUserVisibleToViewer(ctx, ctx.ContextUser, ctx.Doer) {
|
2021-06-26 13:53:14 -06:00
|
|
|
// fake ErrUserNotExist error message to not leak information about existence
|
2021-11-24 02:49:20 -07:00
|
|
|
ctx.NotFound("GetUserByName", user_model.ErrUserNotExist{Name: ctx.Params(":username")})
|
2021-06-26 13:53:14 -06:00
|
|
|
return
|
|
|
|
}
|
2022-03-26 03:04:22 -06:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToUser(ctx.ContextUser, ctx.Doer))
|
2016-08-11 16:29:39 -06:00
|
|
|
}
|
|
|
|
|
2017-11-13 00:02:25 -07:00
|
|
|
// GetAuthenticatedUser get current user's information
|
2016-08-11 16:29:39 -06:00
|
|
|
func GetAuthenticatedUser(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation GET /user user userGetCurrent
|
|
|
|
// ---
|
|
|
|
// summary: Get the authenticated user
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/User"
|
2019-12-20 10:07:12 -07:00
|
|
|
|
2022-03-22 01:03:22 -06:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToUser(ctx.Doer, ctx.Doer))
|
2014-11-18 09:07:16 -07:00
|
|
|
}
|
2018-10-22 20:57:42 -06:00
|
|
|
|
|
|
|
// GetUserHeatmapData is the handler to get a users heatmap
|
|
|
|
func GetUserHeatmapData(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /users/{username}/heatmap user userGetHeatmapData
|
|
|
|
// ---
|
|
|
|
// summary: Get a user's heatmap
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user to get
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserHeatmapData"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
2022-03-26 03:04:22 -06:00
|
|
|
heatmap, err := models.GetUserHeatmapDataByUser(ctx.ContextUser, ctx.Doer)
|
2018-10-22 20:57:42 -06:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserHeatmapDataByUser", err)
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.JSON(http.StatusOK, heatmap)
|
2018-10-22 20:57:42 -06:00
|
|
|
}
|