2016-11-07 14:53:13 +01: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 16:26:35 +01:00
|
|
|
"encoding/json"
|
2016-11-07 14:53:13 +01:00
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2017-11-13 08:02:25 +01:00
|
|
|
// User represents a user
|
|
|
|
// swagger:model
|
2016-11-07 14:53:13 +01:00
|
|
|
type User struct {
|
2017-11-13 08:02:25 +01:00
|
|
|
// the user's id
|
2018-03-06 02:22:16 +01:00
|
|
|
ID int64 `json:"id"`
|
2017-11-13 08:02:25 +01:00
|
|
|
// the user's username
|
2018-03-06 02:22:16 +01:00
|
|
|
UserName string `json:"login"`
|
2017-11-13 08:02:25 +01:00
|
|
|
// the user's full name
|
2018-03-06 02:22:16 +01:00
|
|
|
FullName string `json:"full_name"`
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:strfmt email
|
2018-03-06 02:22:16 +01:00
|
|
|
Email string `json:"email"`
|
2017-11-13 08:02:25 +01:00
|
|
|
// URL to the user's avatar
|
2016-11-29 09:09:17 +01:00
|
|
|
AvatarURL string `json:"avatar_url"`
|
2018-05-05 02:28:30 +02:00
|
|
|
// User locale
|
|
|
|
Language string `json:"language"`
|
2016-11-07 14:53:13 +01:00
|
|
|
}
|
|
|
|
|
2016-12-16 16:26:35 +01: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 09:09:17 +01:00
|
|
|
// GetUserInfo get user info by user's name
|
2016-11-07 14:53:13 +01: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
|
|
|
|
}
|