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

47 lines
930 B
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 v1
import (
2014-07-26 00:24:27 -04:00
"github.com/Unknwon/com"
2014-11-14 17:11:30 -05:00
api "github.com/gogits/go-gogs-client"
2014-04-30 23:48:01 -04:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/middleware"
)
2014-07-12 00:55:19 -04:00
func SearchUsers(ctx *middleware.Context) {
2014-08-26 06:11:15 -04:00
opt := models.SearchOption{
Keyword: ctx.Query("q"),
Limit: com.StrTo(ctx.Query("limit")).MustInt(),
}
if opt.Limit == 0 {
opt.Limit = 10
2014-04-30 23:48:01 -04:00
}
2014-08-26 06:11:15 -04:00
us, err := models.SearchUserByName(opt)
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
}
2014-11-14 17:11:30 -05:00
results := make([]*api.User, len(us))
2014-04-30 23:48:01 -04:00
for i := range us {
2014-11-14 17:11:30 -05:00
results[i] = &api.User{
UserName: us[i].Name,
AvatarUrl: us[i].AvatarLink(),
2014-08-26 06:11:15 -04:00
}
2014-04-30 23:48:01 -04:00
}
ctx.Render.JSON(200, map[string]interface{}{
"ok": true,
"data": results,
})
}