73 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
| // 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
 | |
| 
 | |
| import (
 | |
| 	"github.com/Unknwon/com"
 | |
| 
 | |
| 	api "github.com/gogits/go-gogs-client"
 | |
| 
 | |
| 	"github.com/gogits/gogs/models"
 | |
| 	"github.com/gogits/gogs/modules/context"
 | |
| )
 | |
| 
 | |
| // https://github.com/gogits/go-gogs-client/wiki/Users#search-users
 | |
| func Search(ctx *context.APIContext) {
 | |
| 	opts := &models.SearchUserOptions{
 | |
| 		Keyword:  ctx.Query("q"),
 | |
| 		Type:     models.USER_TYPE_INDIVIDUAL,
 | |
| 		PageSize: com.StrTo(ctx.Query("limit")).MustInt(),
 | |
| 	}
 | |
| 	if opts.PageSize == 0 {
 | |
| 		opts.PageSize = 10
 | |
| 	}
 | |
| 
 | |
| 	users, _, err := models.SearchUserByName(opts)
 | |
| 	if err != nil {
 | |
| 		ctx.JSON(500, map[string]interface{}{
 | |
| 			"ok":    false,
 | |
| 			"error": err.Error(),
 | |
| 		})
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	results := make([]*api.User, len(users))
 | |
| 	for i := range users {
 | |
| 		results[i] = &api.User{
 | |
| 			ID:        users[i].ID,
 | |
| 			UserName:  users[i].Name,
 | |
| 			AvatarUrl: users[i].AvatarLink(),
 | |
| 			FullName:  users[i].FullName,
 | |
| 		}
 | |
| 		if ctx.IsSigned {
 | |
| 			results[i].Email = users[i].Email
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	ctx.JSON(200, map[string]interface{}{
 | |
| 		"ok":   true,
 | |
| 		"data": results,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| // https://github.com/gogits/go-gogs-client/wiki/Users#get-a-single-user
 | |
| func GetInfo(ctx *context.APIContext) {
 | |
| 	u, err := models.GetUserByName(ctx.Params(":username"))
 | |
| 	if err != nil {
 | |
| 		if models.IsErrUserNotExist(err) {
 | |
| 			ctx.Status(404)
 | |
| 		} else {
 | |
| 			ctx.Error(500, "GetUserByName", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	// Hide user e-mail when API caller isn't signed in.
 | |
| 	if !ctx.IsSigned {
 | |
| 		u.Email = ""
 | |
| 	}
 | |
| 	ctx.JSON(200, &api.User{u.ID, u.Name, u.FullName, u.Email, u.AvatarLink()})
 | |
| }
 |