You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.5 KiB
72 lines
1.5 KiB
11 years ago
|
// 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.
|
||
|
|
||
9 years ago
|
package user
|
||
11 years ago
|
|
||
|
import (
|
||
10 years ago
|
"github.com/Unknwon/com"
|
||
|
|
||
10 years ago
|
api "github.com/gogits/go-gogs-client"
|
||
|
|
||
11 years ago
|
"github.com/gogits/gogs/models"
|
||
|
"github.com/gogits/gogs/modules/middleware"
|
||
|
)
|
||
|
|
||
9 years ago
|
// https://github.com/gogits/go-gogs-client/wiki/Users#search-users
|
||
9 years ago
|
func Search(ctx *middleware.Context) {
|
||
10 years ago
|
opt := models.SearchOption{
|
||
|
Keyword: ctx.Query("q"),
|
||
|
Limit: com.StrTo(ctx.Query("limit")).MustInt(),
|
||
|
}
|
||
|
if opt.Limit == 0 {
|
||
|
opt.Limit = 10
|
||
11 years ago
|
}
|
||
|
|
||
10 years ago
|
us, err := models.SearchUserByName(opt)
|
||
11 years ago
|
if err != nil {
|
||
10 years ago
|
ctx.JSON(500, map[string]interface{}{
|
||
|
"ok": false,
|
||
|
"error": err.Error(),
|
||
|
})
|
||
11 years ago
|
return
|
||
|
}
|
||
|
|
||
10 years ago
|
results := make([]*api.User, len(us))
|
||
11 years ago
|
for i := range us {
|
||
10 years ago
|
results[i] = &api.User{
|
||
9 years ago
|
ID: us[i].Id,
|
||
10 years ago
|
UserName: us[i].Name,
|
||
|
AvatarUrl: us[i].AvatarLink(),
|
||
10 years ago
|
FullName: us[i].FullName,
|
||
10 years ago
|
}
|
||
9 years ago
|
if ctx.IsSigned {
|
||
|
results[i].Email = us[i].Email
|
||
|
}
|
||
11 years ago
|
}
|
||
|
|
||
9 years ago
|
ctx.JSON(200, map[string]interface{}{
|
||
11 years ago
|
"ok": true,
|
||
|
"data": results,
|
||
|
})
|
||
|
}
|
||
10 years ago
|
|
||
9 years ago
|
// https://github.com/gogits/go-gogs-client/wiki/Users#get-a-single-user
|
||
9 years ago
|
func GetInfo(ctx *middleware.Context) {
|
||
10 years ago
|
u, err := models.GetUserByName(ctx.Params(":username"))
|
||
|
if err != nil {
|
||
9 years ago
|
if models.IsErrUserNotExist(err) {
|
||
10 years ago
|
ctx.Error(404)
|
||
|
} else {
|
||
9 years ago
|
ctx.APIError(500, "GetUserByName", err)
|
||
10 years ago
|
}
|
||
|
return
|
||
|
}
|
||
9 years ago
|
|
||
|
// Hide user e-mail when API caller isn't signed in.
|
||
|
if !ctx.IsSigned {
|
||
|
u.Email = ""
|
||
|
}
|
||
10 years ago
|
ctx.JSON(200, &api.User{u.Id, u.Name, u.FullName, u.Email, u.AvatarLink()})
|
||
|
}
|