2014-04-30 21:48:01 -06: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 15:16:42 -07:00
|
|
|
package user
|
2014-04-30 21:48:01 -06:00
|
|
|
|
|
|
|
import (
|
2017-02-10 21:00:01 -07:00
|
|
|
"strings"
|
|
|
|
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2017-10-24 23:30:29 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
|
|
|
api "code.gitea.io/sdk/gitea"
|
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
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
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
|
|
|
// description: maximum number of users to return
|
|
|
|
// type: integer
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserList"
|
2016-03-11 13:33:12 -07:00
|
|
|
opts := &models.SearchUserOptions{
|
2017-02-10 21:00:01 -07:00
|
|
|
Keyword: strings.Trim(ctx.Query("q"), " "),
|
2016-11-07 09:53:22 -07:00
|
|
|
Type: models.UserTypeIndividual,
|
2016-03-11 13:33:12 -07:00
|
|
|
PageSize: com.StrTo(ctx.Query("limit")).MustInt(),
|
2014-08-26 04:11:15 -06:00
|
|
|
}
|
2016-03-11 13:33:12 -07:00
|
|
|
if opts.PageSize == 0 {
|
|
|
|
opts.PageSize = 10
|
2014-04-30 21:48:01 -06:00
|
|
|
}
|
|
|
|
|
2017-10-24 11:36:19 -06:00
|
|
|
users, _, err := models.SearchUsers(opts)
|
2014-04-30 21:48:01 -06:00
|
|
|
if err != nil {
|
2014-08-26 04:11:15 -06:00
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
2014-04-30 21:48:01 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-11 13:33:12 -07:00
|
|
|
results := make([]*api.User, len(users))
|
|
|
|
for i := range users {
|
2014-11-14 15:11:30 -07:00
|
|
|
results[i] = &api.User{
|
2016-07-23 11:08:22 -06:00
|
|
|
ID: users[i].ID,
|
2016-03-11 13:33:12 -07:00
|
|
|
UserName: users[i].Name,
|
2016-11-29 01:25:47 -07:00
|
|
|
AvatarURL: users[i].AvatarLink(),
|
2017-10-24 23:26:14 -06:00
|
|
|
FullName: markup.Sanitize(users[i].FullName),
|
2014-08-26 04:11:15 -06:00
|
|
|
}
|
2015-08-18 15:47:45 -06:00
|
|
|
if ctx.IsSigned {
|
2016-03-11 13:33:12 -07:00
|
|
|
results[i].Email = users[i].Email
|
2015-08-18 15:47:45 -06:00
|
|
|
}
|
2014-04-30 21:48:01 -06:00
|
|
|
}
|
|
|
|
|
2015-11-17 00:18:05 -07:00
|
|
|
ctx.JSON(200, map[string]interface{}{
|
2014-04-30 21:48:01 -06:00
|
|
|
"ok": true,
|
|
|
|
"data": results,
|
|
|
|
})
|
|
|
|
}
|
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"
|
2014-11-18 09:07:16 -07:00
|
|
|
u, err := models.GetUserByName(ctx.Params(":username"))
|
|
|
|
if err != nil {
|
2015-08-04 21:14:17 -06:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Status(404)
|
2014-11-18 09:07:16 -07:00
|
|
|
} else {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Error(500, "GetUserByName", err)
|
2014-11-18 09:07:16 -07:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-07-14 09:21:34 -06:00
|
|
|
|
|
|
|
// Hide user e-mail when API caller isn't signed in.
|
|
|
|
if !ctx.IsSigned {
|
|
|
|
u.Email = ""
|
|
|
|
}
|
2016-08-14 05:17:26 -06:00
|
|
|
ctx.JSON(200, u.APIFormat())
|
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"
|
2016-08-14 05:17:26 -06:00
|
|
|
ctx.JSON(200, ctx.User.APIFormat())
|
2014-11-18 09:07:16 -07:00
|
|
|
}
|