gitroast/vendor/code.gitea.io/sdk/gitea/user.go

43 lines
1.1 KiB
Go
Raw Normal View History

2016-11-07 13:53:13 +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.
package gitea
import (
2016-12-16 15:26:35 +00:00
"encoding/json"
2016-11-07 13:53:13 +00:00
"fmt"
)
// User represents a user
// swagger:model
2016-11-07 13:53:13 +00:00
type User struct {
// the user's id
2016-11-07 13:53:13 +00:00
ID int64 `json:"id"`
// the user's username
2016-11-29 08:09:17 +00:00
UserName string `json:"login"`
// the user's full name
2016-11-07 13:53:13 +00:00
FullName string `json:"full_name"`
// swagger:strfmt email
2016-11-07 13:53:13 +00:00
Email string `json:"email"`
// URL to the user's avatar
2016-11-29 08:09:17 +00:00
AvatarURL string `json:"avatar_url"`
2016-11-07 13:53:13 +00:00
}
2016-12-16 15:26:35 +00:00
// MarshalJSON implements the json.Marshaler interface for User, adding field(s) for backward compatibility
func (u User) MarshalJSON() ([]byte, error) {
// Re-declaring User to avoid recursion
type shadow User
return json.Marshal(struct {
shadow
CompatUserName string `json:"username"`
}{shadow(u), u.UserName})
}
2016-11-29 08:09:17 +00:00
// GetUserInfo get user info by user's name
2016-11-07 13:53:13 +00:00
func (c *Client) GetUserInfo(user string) (*User, error) {
u := new(User)
err := c.getParsedResponse("GET", fmt.Sprintf("/users/%s", user), nil, nil, u)
return u, err
}