diff options
Diffstat (limited to 'routers/api/v1/user.go')
-rw-r--r-- | routers/api/v1/user.go | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/routers/api/v1/user.go b/routers/api/v1/user.go new file mode 100644 index 0000000000..2b41adaeac --- /dev/null +++ b/routers/api/v1/user.go @@ -0,0 +1,61 @@ +// 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 ( + "github.com/Unknwon/com" + + api "github.com/gogits/go-gogs-client" + + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/middleware" +) + +func SearchUsers(ctx *middleware.Context) { + opt := models.SearchOption{ + Keyword: ctx.Query("q"), + Limit: com.StrTo(ctx.Query("limit")).MustInt(), + } + if opt.Limit == 0 { + opt.Limit = 10 + } + + us, err := models.SearchUserByName(opt) + if err != nil { + ctx.JSON(500, map[string]interface{}{ + "ok": false, + "error": err.Error(), + }) + return + } + + results := make([]*api.User, len(us)) + for i := range us { + results[i] = &api.User{ + UserName: us[i].Name, + AvatarUrl: us[i].AvatarLink(), + } + } + + ctx.Render.JSON(200, map[string]interface{}{ + "ok": true, + "data": results, + }) +} + +// GET /users/:username +func GetUserInfo(ctx *middleware.Context) { + u, err := models.GetUserByName(ctx.Params(":username")) + if err != nil { + if err == models.ErrUserNotExist { + ctx.Error(404) + } else { + ctx.JSON(500, &base.ApiJsonErr{"GetUserByName: " + err.Error(), base.DOC_URL}) + } + return + } + ctx.JSON(200, &api.User{u.Id, u.Name, u.FullName, u.Email, u.AvatarLink()}) +} |