1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-12 00:34:20 -04:00
gitea/routers/api/v1/user/user.go

75 lines
1.5 KiB
Go
Raw Normal View History

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