2014-05-01 03:48:01 +00: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 22:16:42 +00:00
|
|
|
package user
|
2014-05-01 03:48:01 +00:00
|
|
|
|
|
|
|
import (
|
2014-07-26 04:24:27 +00:00
|
|
|
"github.com/Unknwon/com"
|
|
|
|
|
2014-11-14 22:11:30 +00:00
|
|
|
api "github.com/gogits/go-gogs-client"
|
|
|
|
|
2014-05-01 03:48:01 +00:00
|
|
|
"github.com/gogits/gogs/models"
|
2016-03-11 16:56:52 +00:00
|
|
|
"github.com/gogits/gogs/modules/context"
|
2014-05-01 03:48:01 +00:00
|
|
|
)
|
|
|
|
|
2015-12-03 05:24:37 +00:00
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Users#search-users
|
2016-03-13 22:49:16 +00:00
|
|
|
func Search(ctx *context.APIContext) {
|
2016-03-11 20:33:12 +00:00
|
|
|
opts := &models.SearchUserOptions{
|
|
|
|
Keyword: ctx.Query("q"),
|
|
|
|
Type: models.USER_TYPE_INDIVIDUAL,
|
|
|
|
PageSize: com.StrTo(ctx.Query("limit")).MustInt(),
|
2014-08-26 10:11:15 +00:00
|
|
|
}
|
2016-03-11 20:33:12 +00:00
|
|
|
if opts.PageSize == 0 {
|
|
|
|
opts.PageSize = 10
|
2014-05-01 03:48:01 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 20:33:12 +00:00
|
|
|
users, _, err := models.SearchUserByName(opts)
|
2014-05-01 03:48:01 +00:00
|
|
|
if err != nil {
|
2014-08-26 10:11:15 +00:00
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
2014-05-01 03:48:01 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-11 20:33:12 +00:00
|
|
|
results := make([]*api.User, len(users))
|
|
|
|
for i := range users {
|
2014-11-14 22:11:30 +00:00
|
|
|
results[i] = &api.User{
|
2016-07-23 17:08:22 +00:00
|
|
|
ID: users[i].ID,
|
2016-03-11 20:33:12 +00:00
|
|
|
UserName: users[i].Name,
|
|
|
|
AvatarUrl: users[i].AvatarLink(),
|
|
|
|
FullName: users[i].FullName,
|
2014-08-26 10:11:15 +00:00
|
|
|
}
|
2015-08-18 21:47:45 +00:00
|
|
|
if ctx.IsSigned {
|
2016-03-11 20:33:12 +00:00
|
|
|
results[i].Email = users[i].Email
|
2015-08-18 21:47:45 +00:00
|
|
|
}
|
2014-05-01 03:48:01 +00:00
|
|
|
}
|
|
|
|
|
2015-11-17 07:18:05 +00:00
|
|
|
ctx.JSON(200, map[string]interface{}{
|
2014-05-01 03:48:01 +00:00
|
|
|
"ok": true,
|
|
|
|
"data": results,
|
|
|
|
})
|
|
|
|
}
|
2014-11-18 16:07:16 +00:00
|
|
|
|
2015-12-03 05:24:37 +00:00
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Users#get-a-single-user
|
2016-03-13 22:49:16 +00:00
|
|
|
func GetInfo(ctx *context.APIContext) {
|
2014-11-18 16:07:16 +00:00
|
|
|
u, err := models.GetUserByName(ctx.Params(":username"))
|
|
|
|
if err != nil {
|
2015-08-05 03:14:17 +00:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-03-13 22:49:16 +00:00
|
|
|
ctx.Status(404)
|
2014-11-18 16:07:16 +00:00
|
|
|
} else {
|
2016-03-13 22:49:16 +00:00
|
|
|
ctx.Error(500, "GetUserByName", err)
|
2014-11-18 16:07:16 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-07-14 15:21:34 +00:00
|
|
|
|
|
|
|
// Hide user e-mail when API caller isn't signed in.
|
|
|
|
if !ctx.IsSigned {
|
|
|
|
u.Email = ""
|
|
|
|
}
|
2016-07-23 17:08:22 +00:00
|
|
|
ctx.JSON(200, &api.User{u.ID, u.Name, u.FullName, u.Email, u.AvatarLink()})
|
2014-11-18 16:07:16 +00:00
|
|
|
}
|