Files
Atay-Makhzan/routers/api/v1/user/user.go
T

159 lines
3.8 KiB
Go
Raw Normal View History

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