bench-forgejo/routers/api/v1/user/user.go

78 lines
1.6 KiB
Go
Raw Normal View History

2014-05-01 09:18:01 +05:30
// 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.
package user
2014-05-01 09:18:01 +05:30
import (
2014-07-26 09:54:27 +05:30
"github.com/Unknwon/com"
api "code.gitea.io/sdk/gitea"
2014-11-15 03:41:30 +05:30
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
2014-05-01 09:18:01 +05:30
)
2016-11-24 12:34:31 +05:30
// Search search users
func Search(ctx *context.APIContext) {
opts := &models.SearchUserOptions{
Keyword: ctx.Query("q"),
2016-11-07 22:23:22 +05:30
Type: models.UserTypeIndividual,
PageSize: com.StrTo(ctx.Query("limit")).MustInt(),
2014-08-26 15:41:15 +05:30
}
if opts.PageSize == 0 {
opts.PageSize = 10
2014-05-01 09:18:01 +05:30
}
users, _, err := models.SearchUserByName(opts)
2014-05-01 09:18:01 +05:30
if err != nil {
2014-08-26 15:41:15 +05:30
ctx.JSON(500, map[string]interface{}{
"ok": false,
"error": err.Error(),
})
2014-05-01 09:18:01 +05:30
return
}
results := make([]*api.User, len(users))
for i := range users {
2014-11-15 03:41:30 +05:30
results[i] = &api.User{
2016-07-23 22:38:22 +05:30
ID: users[i].ID,
UserName: users[i].Name,
2016-11-29 13:55:47 +05:30
AvatarURL: users[i].AvatarLink(),
FullName: users[i].FullName,
2014-08-26 15:41:15 +05:30
}
2015-08-19 03:17:45 +05:30
if ctx.IsSigned {
results[i].Email = users[i].Email
2015-08-19 03:17:45 +05:30
}
2014-05-01 09:18:01 +05:30
}
2015-11-17 12:48:05 +05:30
ctx.JSON(200, map[string]interface{}{
2014-05-01 09:18:01 +05:30
"ok": true,
"data": results,
})
}
2014-11-18 21:37:16 +05:30
2016-11-24 12:34:31 +05:30
// GetInfo get user's information
func GetInfo(ctx *context.APIContext) {
2014-11-18 21:37:16 +05:30
u, err := models.GetUserByName(ctx.Params(":username"))
if err != nil {
2015-08-05 08:44:17 +05:30
if models.IsErrUserNotExist(err) {
ctx.Status(404)
2014-11-18 21:37:16 +05:30
} else {
ctx.Error(500, "GetUserByName", err)
2014-11-18 21:37:16 +05:30
}
return
}
// Hide user e-mail when API caller isn't signed in.
if !ctx.IsSigned {
u.Email = ""
}
ctx.JSON(200, u.APIFormat())
2016-08-12 03:59:39 +05:30
}
2016-11-24 12:34:31 +05:30
// GetAuthenticatedUser get curent user's information
2016-08-12 03:59:39 +05:30
func GetAuthenticatedUser(ctx *context.APIContext) {
ctx.JSON(200, ctx.User.APIFormat())
2014-11-18 21:37:16 +05:30
}