2014-05-01 05:48:01 +02:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-04 23:16:42 +01:00
|
|
|
package user
|
2014-05-01 05:48:01 +02:00
|
|
|
|
|
|
|
import (
|
2018-10-23 04:57:42 +02:00
|
|
|
"net/http"
|
2017-02-11 05:00:01 +01:00
|
|
|
"strings"
|
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-04-15 18:36:59 +02:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2017-10-25 07:30:29 +02:00
|
|
|
api "code.gitea.io/sdk/gitea"
|
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
2014-05-01 05:48:01 +02:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// Search search users
|
2016-03-13 23:49:16 +01:00
|
|
|
func Search(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01: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 10:44:51 +02:00
|
|
|
// - name: uid
|
|
|
|
// in: query
|
|
|
|
// description: ID of the user to search for
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// - name: limit
|
|
|
|
// in: query
|
|
|
|
// description: maximum number of users to return
|
|
|
|
// type: integer
|
|
|
|
// responses:
|
|
|
|
// "200":
|
2018-09-21 10:56:26 +02:00
|
|
|
// description: "SearchResults of a successful search"
|
|
|
|
// schema:
|
|
|
|
// type: object
|
|
|
|
// properties:
|
|
|
|
// ok:
|
|
|
|
// type: boolean
|
|
|
|
// data:
|
|
|
|
// type: array
|
|
|
|
// items:
|
|
|
|
// "$ref": "#/definitions/User"
|
2016-03-11 21:33:12 +01:00
|
|
|
opts := &models.SearchUserOptions{
|
2017-02-11 05:00:01 +01:00
|
|
|
Keyword: strings.Trim(ctx.Query("q"), " "),
|
2018-10-18 10:44:51 +02:00
|
|
|
UID: com.StrTo(ctx.Query("uid")).MustInt64(),
|
2016-11-07 17:53:22 +01:00
|
|
|
Type: models.UserTypeIndividual,
|
2016-03-11 21:33:12 +01:00
|
|
|
PageSize: com.StrTo(ctx.Query("limit")).MustInt(),
|
2014-08-26 12:11:15 +02:00
|
|
|
}
|
2014-05-01 05:48:01 +02:00
|
|
|
|
2017-10-24 19:36:19 +02:00
|
|
|
users, _, err := models.SearchUsers(opts)
|
2014-05-01 05:48:01 +02:00
|
|
|
if err != nil {
|
2014-08-26 12:11:15 +02:00
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
2014-05-01 05:48:01 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-11 21:33:12 +01:00
|
|
|
results := make([]*api.User, len(users))
|
|
|
|
for i := range users {
|
2019-04-15 18:36:59 +02:00
|
|
|
results[i] = convert.ToUser(users[i], ctx.IsSigned, ctx.User.IsAdmin)
|
2014-05-01 05:48:01 +02:00
|
|
|
}
|
|
|
|
|
2015-11-17 08:18:05 +01:00
|
|
|
ctx.JSON(200, map[string]interface{}{
|
2014-05-01 05:48:01 +02:00
|
|
|
"ok": true,
|
|
|
|
"data": results,
|
|
|
|
})
|
|
|
|
}
|
2014-11-18 17:07:16 +01:00
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// GetInfo get user's information
|
2016-03-13 23:49:16 +01:00
|
|
|
func GetInfo(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01: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"
|
2014-11-18 17:07:16 +01:00
|
|
|
u, err := models.GetUserByName(ctx.Params(":username"))
|
|
|
|
if err != nil {
|
2015-08-05 05:14:17 +02:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2014-11-18 17:07:16 +01:00
|
|
|
} else {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetUserByName", err)
|
2014-11-18 17:07:16 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-07-14 17:21:34 +02:00
|
|
|
|
|
|
|
// Hide user e-mail when API caller isn't signed in.
|
|
|
|
if !ctx.IsSigned {
|
|
|
|
u.Email = ""
|
|
|
|
}
|
2016-08-14 13:17:26 +02:00
|
|
|
ctx.JSON(200, u.APIFormat())
|
2016-08-12 00:29:39 +02:00
|
|
|
}
|
|
|
|
|
2017-11-13 08:02:25 +01:00
|
|
|
// GetAuthenticatedUser get current user's information
|
2016-08-12 00:29:39 +02:00
|
|
|
func GetAuthenticatedUser(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /user user userGetCurrent
|
|
|
|
// ---
|
|
|
|
// summary: Get the authenticated user
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/User"
|
2016-08-14 13:17:26 +02:00
|
|
|
ctx.JSON(200, ctx.User.APIFormat())
|
2014-11-18 17:07:16 +01: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"
|
|
|
|
|
|
|
|
// Get the user to throw an error if it does not exist
|
|
|
|
user, err := models.GetUserByName(ctx.Params(":username"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
ctx.Status(http.StatusNotFound)
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserByName", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
heatmap, err := models.GetUserHeatmapDataByUser(user)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserHeatmapDataByUser", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(200, heatmap)
|
|
|
|
}
|